Re: [PATCH] netlink: Delete an unnecessary check before the function call module_put

2015-07-03 Thread David Miller
From: SF Markus Elfring elfr...@users.sourceforge.net Date: Thu, 02 Jul 2015 18:45:53 +0200 From: Markus Elfring elfr...@users.sourceforge.net Date: Thu, 2 Jul 2015 18:38:12 +0200 The module_put() function tests whether its argument is NULL and then returns immediately. Thus the test around

[PATCH] netlink: Delete an unnecessary check before the function call module_put

2015-07-02 Thread SF Markus Elfring
From: Markus Elfring elfr...@users.sourceforge.net Date: Thu, 2 Jul 2015 18:38:12 +0200 The module_put() function tests whether its argument is NULL and then returns immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software.