On Tue, Apr 09, 2013 at 02:15:31PM +0800, Wei Yongjun wrote: > From: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx> > > memory allocated by kmem_cache_alloc() should be freed using > kmem_cache_free(), not kfree(). Applying, thanks.--b. > > Signed-off-by: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx> > --- > fs/nfsd/nfs4state.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c > index 2e27430..06a520b 100644 > --- a/fs/nfsd/nfs4state.c > +++ b/fs/nfsd/nfs4state.c > @@ -267,7 +267,7 @@ kmem_cache *slab) > min_stateid = 0; > return stid; > out_free: > - kfree(stid); > + kmem_cache_free(slab, stid); > return NULL; > } > > -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html