Skip to content

Commit

Permalink
mm: move get_order_from_str() to internal.h
Browse files Browse the repository at this point in the history
In order to implement a kernel parameter similar to ``thp_anon=`` for
shmem, we'll need the function ``get_order_from_str()``.

Instead of duplicating the function, move the function to a shared
header, in which both mm/shmem.c and mm/huge_memory.c will be able to
use it.

Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Maíra Canal <[email protected]>
Reviewed-by: Baolin Wang <[email protected]>
Cc: Barry Song <[email protected]>
Cc: David Hildenbrand <[email protected]>
Cc: Hugh Dickins <[email protected]>
Cc: Jonathan Corbet <[email protected]>
Cc: Lance Yang <[email protected]>
Cc: Ryan Roberts <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
  • Loading branch information
mairacanal authored and akpm00 committed Nov 11, 2024
1 parent 9490428 commit 1c8d484
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 23 deletions.
38 changes: 15 additions & 23 deletions mm/huge_memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -958,26 +958,6 @@ static int __init setup_transparent_hugepage(char *str)
}
__setup("transparent_hugepage=", setup_transparent_hugepage);

static inline int get_order_from_str(const char *size_str)
{
unsigned long size;
char *endptr;
int order;

size = memparse(size_str, &endptr);

if (!is_power_of_2(size))
goto err;
order = get_order(size);
if (BIT(order) & ~THP_ORDERS_ALL_ANON)
goto err;

return order;
err:
pr_err("invalid size %s in thp_anon boot parameter\n", size_str);
return -EINVAL;
}

static char str_dup[PAGE_SIZE] __initdata;
static int __init setup_thp_anon(char *str)
{
Expand Down Expand Up @@ -1007,10 +987,22 @@ static int __init setup_thp_anon(char *str)
start_size = strsep(&subtoken, "-");
end_size = subtoken;

start = get_order_from_str(start_size);
end = get_order_from_str(end_size);
start = get_order_from_str(start_size, THP_ORDERS_ALL_ANON);
end = get_order_from_str(end_size, THP_ORDERS_ALL_ANON);
} else {
start = end = get_order_from_str(subtoken);
start_size = end_size = subtoken;
start = end = get_order_from_str(subtoken,
THP_ORDERS_ALL_ANON);
}

if (start == -EINVAL) {
pr_err("invalid size %s in thp_anon boot parameter\n", start_size);
goto err;
}

if (end == -EINVAL) {
pr_err("invalid size %s in thp_anon boot parameter\n", end_size);
goto err;
}

if (start < 0 || end < 0 || start > end)
Expand Down
22 changes: 22 additions & 0 deletions mm/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -1291,6 +1291,28 @@ static inline bool alloc_zeroed(void)
&init_on_alloc);
}

/*
* Parses a string with mem suffixes into its order. Useful to parse kernel
* parameters.
*/
static inline int get_order_from_str(const char *size_str,
unsigned long valid_orders)
{
unsigned long size;
char *endptr;
int order;

size = memparse(size_str, &endptr);

if (!is_power_of_2(size))
return -EINVAL;
order = get_order(size);
if (BIT(order) & ~valid_orders)
return -EINVAL;

return order;
}

enum {
/* mark page accessed */
FOLL_TOUCH = 1 << 16,
Expand Down

0 comments on commit 1c8d484

Please sign in to comment.