Skip to content

Commit

Permalink
mm: cma: fix the name of CMA areas
Browse files Browse the repository at this point in the history
Patch series "mm: fix the names of general cma and hugetlb cma", v2.

The current code of CMA can only work when users pass a const string as
name parameter.  we need to fix the way to handle names in CMA.  On the
other hand, to avoid name conflicts after enabling CMA_DEBUGFS, each
hugetlb should get a different CMA name.

This patch (of 2):

If users give a name saved in stack, the current code will generate magic
pointer.  if users don't give a name(NULL), kasprintf() will always return
NULL as we are at the early stage.  that means cma_init_reserved_mem()
will return -ENOMEM if users set name parameter as NULL.

[[email protected]: return cma->name directly in cma_get_name]
  Link: ClangBuiltLinux#1063
  Link: http://lkml.kernel.org/r/[email protected]

Signed-off-by: Barry Song <[email protected]>
Signed-off-by: Nathan Chancellor <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Reviewed-by: Mike Kravetz <[email protected]>
Acked-by: Roman Gushchin <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Barry Song authored and torvalds committed Aug 12, 2020
1 parent 835832b commit 18e98e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
15 changes: 7 additions & 8 deletions mm/cma.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ unsigned long cma_get_size(const struct cma *cma)

const char *cma_get_name(const struct cma *cma)
{
return cma->name ? cma->name : "(undefined)";
return cma->name;
}

static unsigned long cma_bitmap_aligned_mask(const struct cma *cma,
Expand Down Expand Up @@ -202,13 +202,12 @@ int __init cma_init_reserved_mem(phys_addr_t base, phys_addr_t size,
* subsystems (like slab allocator) are available.
*/
cma = &cma_areas[cma_area_count];
if (name) {
cma->name = name;
} else {
cma->name = kasprintf(GFP_KERNEL, "cma%d\n", cma_area_count);
if (!cma->name)
return -ENOMEM;
}

if (name)
snprintf(cma->name, CMA_MAX_NAME, name);
else
snprintf(cma->name, CMA_MAX_NAME, "cma%d\n", cma_area_count);

cma->base_pfn = PFN_DOWN(base);
cma->count = size >> PAGE_SHIFT;
cma->order_per_bit = order_per_bit;
Expand Down
4 changes: 3 additions & 1 deletion mm/cma.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

#include <linux/debugfs.h>

#define CMA_MAX_NAME 64

struct cma {
unsigned long base_pfn;
unsigned long count;
Expand All @@ -15,7 +17,7 @@ struct cma {
spinlock_t mem_head_lock;
struct debugfs_u32_array dfs_bitmap;
#endif
const char *name;
char name[CMA_MAX_NAME];
};

extern struct cma cma_areas[MAX_CMA_AREAS];
Expand Down

0 comments on commit 18e98e5

Please sign in to comment.