diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-02-22 10:52:58 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2018-02-22 16:00:24 -0500 |
commit | 04148187aa9df3626168f7429d2287997787e387 (patch) | |
tree | 7a24a10f826607b0a1c4636fd2a803cb1c2d6ce8 /lib/debugobjects.c | |
parent | 1ea9b98b007a662e402551a41a4413becad40a65 (diff) |
debugobjects: Fix debug_objects_freed accounting
The removal of the batched object freeing has caused the debug_objects_freed
to become read-only, and the reading is inside an ifdef, so gcc warns that it
is completely unused without CONFIG_DEBUG_FS:
lib/debugobjects.c:71:14: error: 'debug_objects_freed' defined but not used [-Werror=unused-variable]
Assuming we are still interested in this number, this adds back code to
keep track of the freed objects.
Fixes: 636e1970fd7d ("debugobjects: Use global free list in free_object()")
Suggested-by: Waiman Long <longman@redhat.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Yang Shi <yang.shi@linux.alibaba.com>
Acked-by: Waiman Long <longman@redhat.com>
Link: https://lkml.kernel.org/r/20180222155335.1647466-1-arnd@arndb.de
Diffstat (limited to 'lib/debugobjects.c')
-rw-r--r-- | lib/debugobjects.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/debugobjects.c b/lib/debugobjects.c index faab2c4ea024..105ecfc47d8c 100644 --- a/lib/debugobjects.c +++ b/lib/debugobjects.c | |||
@@ -233,6 +233,7 @@ static void free_obj_work(struct work_struct *work) | |||
233 | */ | 233 | */ |
234 | if (obj_nr_tofree) { | 234 | if (obj_nr_tofree) { |
235 | hlist_move_list(&obj_to_free, &tofree); | 235 | hlist_move_list(&obj_to_free, &tofree); |
236 | debug_objects_freed += obj_nr_tofree; | ||
236 | obj_nr_tofree = 0; | 237 | obj_nr_tofree = 0; |
237 | } | 238 | } |
238 | raw_spin_unlock_irqrestore(&pool_lock, flags); | 239 | raw_spin_unlock_irqrestore(&pool_lock, flags); |