diff options
| author | Jesper Juhl <jesper.juhl@gmail.com> | 2005-11-07 01:01:34 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 07:54:06 -0800 | 
| commit | f99d49adf527fa6f7a9c42257fa76bca6b8df1e3 (patch) | |
| tree | 41dddbc336016f9dc9557cdb15300de5e599dac1 /fs/nfs/nfs4state.c | |
| parent | 6044ec8882c726e325017bd948aa0cd94ad33abc (diff) | |
[PATCH] kfree cleanup: fs
This is the fs/ part of the big kfree cleanup patch.
Remove pointless checks for NULL prior to calling kfree() in fs/.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/nfs/nfs4state.c')
| -rw-r--r-- | fs/nfs/nfs4state.c | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index 52a26baa114c..0675f3215e0a 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -69,10 +69,8 @@ init_nfsv4_state(struct nfs_server *server)  void  destroy_nfsv4_state(struct nfs_server *server)  { -	if (server->mnt_path) { -		kfree(server->mnt_path); -		server->mnt_path = NULL; -	} +	kfree(server->mnt_path); +	server->mnt_path = NULL;  	if (server->nfs4_state) {  		nfs4_put_client(server->nfs4_state);  		server->nfs4_state = NULL; @@ -311,8 +309,7 @@ struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server, struct  		new = NULL;  	}  	spin_unlock(&clp->cl_lock); -	if (new) -		kfree(new); +	kfree(new);  	if (sp != NULL)  		return sp;  	put_rpccred(cred); | 
