aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fat
diff options
context:
space:
mode:
Diffstat (limited to 'fs/fat')
-rw-r--r--fs/fat/cache.c3
-rw-r--r--fs/fat/inode.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/fs/fat/cache.c b/fs/fat/cache.c
index 05c2941c74f2..1959143c1d27 100644
--- a/fs/fat/cache.c
+++ b/fs/fat/cache.c
@@ -40,8 +40,7 @@ static void init_once(void *foo, struct kmem_cache *cachep, unsigned long flags)
40{ 40{
41 struct fat_cache *cache = (struct fat_cache *)foo; 41 struct fat_cache *cache = (struct fat_cache *)foo;
42 42
43 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) == 43 if (flags & SLAB_CTOR_CONSTRUCTOR)
44 SLAB_CTOR_CONSTRUCTOR)
45 INIT_LIST_HEAD(&cache->cache_list); 44 INIT_LIST_HEAD(&cache->cache_list);
46} 45}
47 46
diff --git a/fs/fat/inode.c b/fs/fat/inode.c
index 9bfe607c892e..65cb54bde481 100644
--- a/fs/fat/inode.c
+++ b/fs/fat/inode.c
@@ -499,8 +499,7 @@ static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flag
499{ 499{
500 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo; 500 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
501 501
502 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) == 502 if (flags & SLAB_CTOR_CONSTRUCTOR) {
503 SLAB_CTOR_CONSTRUCTOR) {
504 spin_lock_init(&ei->cache_lru_lock); 503 spin_lock_init(&ei->cache_lru_lock);
505 ei->nr_caches = 0; 504 ei->nr_caches = 0;
506 ei->cache_valid_id = FAT_CACHE_VALID + 1; 505 ei->cache_valid_id = FAT_CACHE_VALID + 1;