diff options
author | 2024-09-05 22:21:06 -0600 | |
---|---|---|
committer | 2024-09-09 16:39:18 -0700 | |
commit | eebc0f48468e68b93393d11f75ad17385a9acca8 (patch) | |
tree | ab39810c99e8f496d3c3e05ed2aa86a193aa67f8 /include/linux/alloc_tag.h | |
parent | mm/vmalloc.c: use "high-order" in description non 0-order pages (diff) | |
download | wireguard-linux-eebc0f48468e68b93393d11f75ad17385a9acca8.tar.xz wireguard-linux-eebc0f48468e68b93393d11f75ad17385a9acca8.zip |
mm/codetag: fix a typo
Link: https://lkml.kernel.org/r/20240906042108.1150526-1-yuzhao@google.com
Fixes: 22d407b164ff ("lib: add allocation tagging support for memory allocation profiling")
Signed-off-by: Yu Zhao <yuzhao@google.com>
Acked-by: Suren Baghdasaryan <surenb@google.com>
Acked-by: Muchun Song <muchun.song@linux.dev>
Cc: Kent Overstreet <kent.overstreet@linux.dev>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/linux/alloc_tag.h')
-rw-r--r-- | include/linux/alloc_tag.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/alloc_tag.h b/include/linux/alloc_tag.h index 8c61ccd161ba..896491d9ebe8 100644 --- a/include/linux/alloc_tag.h +++ b/include/linux/alloc_tag.h @@ -70,7 +70,7 @@ static inline struct alloc_tag *ct_to_alloc_tag(struct codetag *ct) /* * When percpu variables are required to be defined as weak, static percpu * variables can't be used inside a function (see comments for DECLARE_PER_CPU_SECTION). - * Instead we will accound all module allocations to a single counter. + * Instead we will account all module allocations to a single counter. */ DECLARE_PER_CPU(struct alloc_tag_counters, _shared_alloc_tag); |