Message ID | 20220221105336.522086-3-42.hyeyoo@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | slab cleanups | expand |
On Mon, Feb 21, 2022 at 10:53:33AM +0000, Hyeonggon Yoo wrote:
> Do not export __ksize(). Only kasan calls __ksize() directly.
We should probably delete (most of) the kernel-doc comment on __ksize,
leaving only the note that it's uninstrumented and only called by
kasan. Also, we should probably move the declaration of __ksize from
include/linux/slab.h to mm/slab.h since we don't want to grow new callers.
On Mon, Feb 21, 2022 at 03:46:01PM +0000, Matthew Wilcox wrote: > On Mon, Feb 21, 2022 at 10:53:33AM +0000, Hyeonggon Yoo wrote: > > Do not export __ksize(). Only kasan calls __ksize() directly. > > We should probably delete (most of) the kernel-doc comment on __ksize, > leaving only the note that it's uninstrumented and only called by > kasan. Also, we should probably move the declaration of __ksize from > include/linux/slab.h to mm/slab.h since we don't want to grow new callers. Seems reasonable. I'll update it in next version! Thanks. -- Hyeonggon
On 2/21/22 16:46, Matthew Wilcox wrote: > On Mon, Feb 21, 2022 at 10:53:33AM +0000, Hyeonggon Yoo wrote: >> Do not export __ksize(). Only kasan calls __ksize() directly. > > We should probably delete (most of) the kernel-doc comment on __ksize, > leaving only the note that it's uninstrumented and only called by > kasan. Also, we should probably move the declaration of __ksize from > include/linux/slab.h to mm/slab.h since we don't want to grow new callers. Agreed, thanks.
diff --git a/mm/slab_common.c b/mm/slab_common.c index 488997db0d97..f2c021b57579 100644 --- a/mm/slab_common.c +++ b/mm/slab_common.c @@ -1271,7 +1271,6 @@ size_t __ksize(const void *object) return slab_ksize(folio_slab(folio)->slab_cache); } -EXPORT_SYMBOL(__ksize); #endif /** diff --git a/mm/slob.c b/mm/slob.c index 60c5842215f1..d8af6c54f133 100644 --- a/mm/slob.c +++ b/mm/slob.c @@ -588,7 +588,6 @@ size_t __ksize(const void *block) m = (unsigned int *)(block - align); return SLOB_UNITS(*m) * SLOB_UNIT; } -EXPORT_SYMBOL(__ksize); int __kmem_cache_create(struct kmem_cache *c, slab_flags_t flags) {
Do not export __ksize(). Only kasan calls __ksize() directly. Signed-off-by: Hyeonggon Yoo <42.hyeyoo@gmail.com> --- mm/slab_common.c | 1 - mm/slob.c | 1 - 2 files changed, 2 deletions(-)