nfsd: use kmem_cache_free() instead of kfree()
authorWei Yongjun <[email protected]>
Tue, 9 Apr 2013 06:15:31 +0000 (14:15 +0800)
committerJ. Bruce Fields <[email protected]>
Tue, 9 Apr 2013 13:08:47 +0000 (09:08 -0400)
memory allocated by kmem_cache_alloc() should be freed using
kmem_cache_free(), not kfree().

Signed-off-by: Wei Yongjun <[email protected]>
Cc: [email protected]
Signed-off-by: J. Bruce Fields <[email protected]>
fs/nfsd/nfs4state.c

index bcd2339ae8c162a54516a809410b83d5991df1a3..9cb9f6e3f5f2f5ab9ec275945be8659d32be5e3c 100644 (file)
@@ -364,7 +364,7 @@ kmem_cache *slab)
                min_stateid = 0;
        return stid;
 out_free:
-       kfree(stid);
+       kmem_cache_free(slab, stid);
        return NULL;
 }