The patch titled Subject: lib/stackdepot: allow optional init and stack_table allocation by kvmalloc() - fixup4 has been added to the -mm tree. Its filename is lib-stackdepot-allow-optional-init-and-stack_table-allocation-by-kvmalloc-fixup4.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/lib-stackdepot-allow-optional-init-and-stack_table-allocation-by-kvmalloc-fixup4.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/lib-stackdepot-allow-optional-init-and-stack_table-allocation-by-kvmalloc-fixup4.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Vlastimil Babka <vbabka@xxxxxxx> Subject: lib/stackdepot: allow optional init and stack_table allocation by kvmalloc() - fixup4 Due to 4e66934eaadc ("lib: add reference counting tracking infrastructure") landing recently to net-next adding a new stack depot user in lib/ref_tracker.c we need to add an appropriate call to stack_depot_init() there as well. Link: https://lkml.kernel.org/r/45c1b738-1a2f-5b5f-2f6d-86fab206d01c@xxxxxxx Signed-off-by: Vlastimil Babka <vbabka@xxxxxxx> Reviewed-by: Eric Dumazet <edumazet@xxxxxxxxxx> Cc: Jiri Slab <jirislaby@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/ref_tracker.h | 2 ++ 1 file changed, 2 insertions(+) --- a/include/linux/ref_tracker.h~lib-stackdepot-allow-optional-init-and-stack_table-allocation-by-kvmalloc-fixup4 +++ a/include/linux/ref_tracker.h @@ -4,6 +4,7 @@ #include <linux/refcount.h> #include <linux/types.h> #include <linux/spinlock.h> +#include <linux/stackdepot.h> struct ref_tracker; @@ -26,6 +27,7 @@ static inline void ref_tracker_dir_init( spin_lock_init(&dir->lock); dir->quarantine_avail = quarantine_count; refcount_set(&dir->untracked, 1); + stack_depot_init(); } void ref_tracker_dir_exit(struct ref_tracker_dir *dir); _ Patches currently in -mm which might be from vbabka@xxxxxxx are lib-stackdepot-allow-optional-init-and-stack_table-allocation-by-kvmalloc.patch lib-stackdepot-allow-optional-init-and-stack_table-allocation-by-kvmalloc-fix-2.patch lib-stackdepot-allow-optional-init-and-stack_table-allocation-by-kvmalloc-fixup3.patch lib-stackdepot-allow-optional-init-and-stack_table-allocation-by-kvmalloc-fixup4.patch