lkml.org 
[lkml]   [2015]   [Jan]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH -mm] slab: suppress warnings caused by expansion of for_each_memcg_cache if !MEMCG_KMEM
Date
   In file included from mm/slab_common.c:26:0:
mm/slab_common.c: In function 'kmem_cache_destroy':
>> mm/slab.h:259:30: warning: right-hand operand of comma expression has no effect [-Wunused-value]
for (iter = NULL, tmp = NULL, (root); 0; )
^
>> mm/slab_common.c:603:2: note: in expansion of macro 'for_each_memcg_cache_safe'
for_each_memcg_cache_safe(c, c2, s) {
^

fixes: slab-link-memcg-caches-of-the-same-kind-into-a-list
Signed-off-by: Vladimir Davydov <vdavydov@parallels.com>
---
mm/slab.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/slab.h b/mm/slab.h
index 2fc16c2ed198..0a56d76ac0e9 100644
--- a/mm/slab.h
+++ b/mm/slab.h
@@ -254,9 +254,9 @@ extern void slab_init_memcg_params(struct kmem_cache *);
#else /* !CONFIG_MEMCG_KMEM */

#define for_each_memcg_cache(iter, root) \
- for (iter = NULL, (root); 0; )
+ for ((void)(iter), (void)(root); 0; )
#define for_each_memcg_cache_safe(iter, tmp, root) \
- for (iter = NULL, tmp = NULL, (root); 0; )
+ for ((void)(iter), (void)(tmp), (void)(root); 0; )

static inline bool is_root_cache(struct kmem_cache *s)
{
--
1.7.10.4



\
 
 \ /
  Last update: 2015-01-24 13:01    [W:2.080 / U:0.704 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site