The patch titled fs: fix to correct the mbcache entries counter has been added to the -mm tree. Its filename is fs-fix-to-correct-the-mbcache-entries-counter.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fs: fix to correct the mbcache entries counter From: "Ram Gupta" <ram.gupta5@xxxxxxxxx> This patch fixes the c_entry_count counter of the mbcache. Currently it increments the counter first & allocate the cache entry later. In case of failure to allocate the entry due to insufficient memory this counter is still left incremented. This patch fixes this anomaly. Signed-off-by: Ram Gupta <ram.gupta5@xxxxxxxxx> Cc: Andreas Gruenbacher <agruen@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/mbcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/mbcache.c~fs-fix-to-correct-the-mbcache-entries-counter fs/mbcache.c --- a/fs/mbcache.c~fs-fix-to-correct-the-mbcache-entries-counter +++ a/fs/mbcache.c @@ -403,9 +403,9 @@ mb_cache_entry_alloc(struct mb_cache *ca { struct mb_cache_entry *ce; - atomic_inc(&cache->c_entry_count); ce = kmem_cache_alloc(cache->c_entry_cache, GFP_KERNEL); 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; _ Patches currently in -mm which might be from ram.gupta5@xxxxxxxxx are fs-fix-to-correct-the-mbcache-entries-counter.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html