Skip to content
/ linux Public
forked from torvalds/linux

Commit

Permalink
mm/balloon_compaction: make balloon page compaction callbacks static
Browse files Browse the repository at this point in the history
Since commit b1123ea ("mm: balloon: use general non-lru movable page
feature"), these functions are called via balloon_aops callbacks. They're
not called directly outside this file. So make them static and clean up
the relevant code.

Signed-off-by: Miaohe Lin <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Michael S. Tsirkin <[email protected]>
Reviewed-by: Muchun Song <[email protected]>
  • Loading branch information
MiaoheLin authored and mstsirkin committed Mar 28, 2022
1 parent 6f84622 commit 504c1ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 25 deletions.
22 changes: 0 additions & 22 deletions include/linux/balloon_compaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ static inline void balloon_devinfo_init(struct balloon_dev_info *balloon)

#ifdef CONFIG_BALLOON_COMPACTION
extern const struct address_space_operations balloon_aops;
extern bool balloon_page_isolate(struct page *page,
isolate_mode_t mode);
extern void balloon_page_putback(struct page *page);
extern int balloon_page_migrate(struct address_space *mapping,
struct page *newpage,
struct page *page, enum migrate_mode mode);

/*
* balloon_page_insert - insert a page into the balloon's page list and make
Expand Down Expand Up @@ -155,22 +149,6 @@ static inline void balloon_page_delete(struct page *page)
list_del(&page->lru);
}

static inline bool balloon_page_isolate(struct page *page)
{
return false;
}

static inline void balloon_page_putback(struct page *page)
{
return;
}

static inline int balloon_page_migrate(struct page *newpage,
struct page *page, enum migrate_mode mode)
{
return 0;
}

static inline gfp_t balloon_mapping_gfp_mask(void)
{
return GFP_HIGHUSER;
Expand Down
6 changes: 3 additions & 3 deletions mm/balloon_compaction.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ EXPORT_SYMBOL_GPL(balloon_page_dequeue);

#ifdef CONFIG_BALLOON_COMPACTION

bool balloon_page_isolate(struct page *page, isolate_mode_t mode)
static bool balloon_page_isolate(struct page *page, isolate_mode_t mode)

{
struct balloon_dev_info *b_dev_info = balloon_page_device(page);
Expand All @@ -217,7 +217,7 @@ bool balloon_page_isolate(struct page *page, isolate_mode_t mode)
return true;
}

void balloon_page_putback(struct page *page)
static void balloon_page_putback(struct page *page)
{
struct balloon_dev_info *b_dev_info = balloon_page_device(page);
unsigned long flags;
Expand All @@ -230,7 +230,7 @@ void balloon_page_putback(struct page *page)


/* move_to_new_page() counterpart for a ballooned page */
int balloon_page_migrate(struct address_space *mapping,
static int balloon_page_migrate(struct address_space *mapping,
struct page *newpage, struct page *page,
enum migrate_mode mode)
{
Expand Down

0 comments on commit 504c1ca

Please sign in to comment.