diff options
author | Wanpeng Li <liwanp@linux.vnet.ibm.com> | 2013-07-03 20:33:26 -0400 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2013-07-07 11:37:48 -0400 |
commit | c17fd13ec0677e61f3692ecb9d4b21f79848fa04 (patch) | |
tree | a92f80d3ac409bfb812058a5d806a20a4a88ff60 /mm/slub.c | |
parent | a446336454cf9ce3234a6013d1c3b482358d9459 (diff) |
mm/slub: Use node_nr_slabs and node_nr_objs in get_slabinfo
Use existing interface node_nr_slabs and node_nr_objs to get
nr_slabs and nr_objs.
Acked-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Wanpeng Li <liwanp@linux.vnet.ibm.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm/slub.c')
-rw-r--r-- | mm/slub.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5277,8 +5277,8 @@ void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo) | |||
5277 | if (!n) | 5277 | if (!n) |
5278 | continue; | 5278 | continue; |
5279 | 5279 | ||
5280 | nr_slabs += atomic_long_read(&n->nr_slabs); | 5280 | nr_slabs += node_nr_slabs(n); |
5281 | nr_objs += atomic_long_read(&n->total_objects); | 5281 | nr_objs += node_nr_objs(n); |
5282 | nr_free += count_partial(n, count_free); | 5282 | nr_free += count_partial(n, count_free); |
5283 | } | 5283 | } |
5284 | 5284 | ||