]> www.infradead.org Git - users/willy/xarray.git/commit
mm/slab: fix 'variable obj_exts set but not used' warning
authorSuren Baghdasaryan <surenb@google.com>
Fri, 14 Jun 2024 22:59:51 +0000 (15:59 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Tue, 25 Jun 2024 03:52:09 +0000 (20:52 -0700)
commitb4601d096aac8ed26afa88ef8b249975b0530ca1
tree4a3c9039331027d3a505308b0e5538e9a7c5a12e
parent399ab86ea55039f9d0a5f621a68cb4631f796f37
mm/slab: fix 'variable obj_exts set but not used' warning

slab_post_alloc_hook() uses prepare_slab_obj_exts_hook() to obtain
slabobj_ext object.  Currently the only user of slabobj_ext object in this
path is memory allocation profiling, therefore when it's not enabled this
object is not needed.  This also generates a warning when compiling with
CONFIG_MEM_ALLOC_PROFILING=n.  Move the code under this configuration to
fix the warning.  If more slabobj_ext users appear in the future, the code
will have to be changed back to call prepare_slab_obj_exts_hook().

Link: https://lkml.kernel.org/r/20240614225951.3845577-1-surenb@google.com
Fixes: 4b8736964640 ("mm/slab: add allocation accounting into slab allocation and free paths")
Signed-off-by: Suren Baghdasaryan <surenb@google.com>
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202406150444.F6neSaiy-lkp@intel.com/
Cc: Kent Overstreet <kent.overstreet@linux.dev>
Cc: Kees Cook <keescook@chromium.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/slub.c