X-Git-Url: https://git.stricted.de/?a=blobdiff_plain;f=fs%2Fmbcache.c;h=ec88ff3d04a9194a4b595701e917ef784b8bdc2a;hb=689a8ab32fa0ba11c4005b3733e59fb7094c2870;hp=1046cbefbfbf4f56be9640dacacc1d884af492f4;hpb=e6f194d8f6f50da6837af637b2fd839c34185f7a;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git diff --git a/fs/mbcache.c b/fs/mbcache.c index 1046cbefbfbf..ec88ff3d04a9 100644 --- a/fs/mbcache.c +++ b/fs/mbcache.c @@ -399,13 +399,13 @@ mb_cache_destroy(struct mb_cache *cache) * if no more memory was available. */ struct mb_cache_entry * -mb_cache_entry_alloc(struct mb_cache *cache) +mb_cache_entry_alloc(struct mb_cache *cache, gfp_t gfp_flags) { struct mb_cache_entry *ce; - atomic_inc(&cache->c_entry_count); - ce = kmem_cache_alloc(cache->c_entry_cache, GFP_KERNEL); + ce = kmem_cache_alloc(cache->c_entry_cache, gfp_flags); if (ce) { + atomic_inc(&cache->c_entry_count); INIT_LIST_HEAD(&ce->e_lru_list); INIT_LIST_HEAD(&ce->e_block_list); ce->e_cache = cache;