diff options
author | Johannes Weiner <hannes@cmpxchg.org> | 2009-03-31 15:24:42 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-01 08:59:23 -0700 |
commit | 00fcf2cb6f6bb421851c3ba062c0a36760ea6e53 (patch) | |
tree | 741afc144a87af1aa7915d812924da7d7418611f /fs/ecryptfs/messaging.c | |
parent | e2801806de1c9c1d03b7d1bfcb2e01dd4d389e80 (diff) | |
download | linux-00fcf2cb6f6bb421851c3ba062c0a36760ea6e53.tar.gz linux-00fcf2cb6f6bb421851c3ba062c0a36760ea6e53.tar.bz2 linux-00fcf2cb6f6bb421851c3ba062c0a36760ea6e53.zip |
ecryptfs: use kzfree()
Use kzfree() instead of memset() + kfree().
Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
Reviewed-by: Pekka Enberg <penberg@cs.helsinki.fi>
Acked-by: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ecryptfs/messaging.c')
-rw-r--r-- | fs/ecryptfs/messaging.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ecryptfs/messaging.c b/fs/ecryptfs/messaging.c index 96ef51489e01..295e7fa56755 100644 --- a/fs/ecryptfs/messaging.c +++ b/fs/ecryptfs/messaging.c @@ -291,8 +291,7 @@ int ecryptfs_exorcise_daemon(struct ecryptfs_daemon *daemon) if (daemon->user_ns) put_user_ns(daemon->user_ns); mutex_unlock(&daemon->mux); - memset(daemon, 0, sizeof(*daemon)); - kfree(daemon); + kzfree(daemon); out: return rc; } |