diff options
author | Steve French <sfrench@us.ibm.com> | 2007-01-21 22:56:22 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-01-21 22:56:22 +0000 |
commit | 76849e3e97a95f1ef4627b10305d38a686fab112 (patch) | |
tree | f38fddbc56d0a95039f1ea6ce78b20a6dcbb9142 /fs | |
parent | 405c514f95898452db728df6bc79f63e44a3f2d0 (diff) | |
download | linux-3.10-76849e3e97a95f1ef4627b10305d38a686fab112.tar.gz linux-3.10-76849e3e97a95f1ef4627b10305d38a686fab112.tar.bz2 linux-3.10-76849e3e97a95f1ef4627b10305d38a686fab112.zip |
[CIFS] Remove 2 unneeded kzalloc casts
Signed-off-by: Ahmed Darwish <darwish.07@gmail.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/misc.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c index aedf683f011..19cc294c7c7 100644 --- a/fs/cifs/misc.c +++ b/fs/cifs/misc.c @@ -71,9 +71,7 @@ sesInfoAlloc(void) { struct cifsSesInfo *ret_buf; - ret_buf = - (struct cifsSesInfo *) kzalloc(sizeof (struct cifsSesInfo), - GFP_KERNEL); + ret_buf = kzalloc(sizeof (struct cifsSesInfo), GFP_KERNEL); if (ret_buf) { write_lock(&GlobalSMBSeslock); atomic_inc(&sesInfoAllocCount); @@ -109,9 +107,7 @@ struct cifsTconInfo * tconInfoAlloc(void) { struct cifsTconInfo *ret_buf; - ret_buf = - (struct cifsTconInfo *) kzalloc(sizeof (struct cifsTconInfo), - GFP_KERNEL); + ret_buf = kzalloc(sizeof (struct cifsTconInfo), GFP_KERNEL); if (ret_buf) { write_lock(&GlobalSMBSeslock); atomic_inc(&tconInfoAllocCount); |