lkml.org 
[lkml]   [2014]   [Jun]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 1/1] fs/aio.c: remove null test before kfree
Date
Fix checkpatch warning:
WARNING: kfree(NULL) is safe this check is probably not required

Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Benjamin LaHaise <bcrl@kvack.org>
Cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
fs/aio.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/fs/aio.c b/fs/aio.c
index 4f078c0..9991a25 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -803,8 +803,7 @@ void exit_aio(struct mm_struct *mm)
if (!table || i >= table->nr) {
rcu_read_unlock();
rcu_assign_pointer(mm->ioctx_table, NULL);
- if (table)
- kfree(table);
+ kfree(table);
return;
}

--
1.8.4.5


\
 
 \ /
  Last update: 2014-06-20 23:41    [W:0.034 / U:0.744 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site