We already know that 'event' is non-NULL, remove the redundant check.

Signed-off-by: Sasha Levin <sasha.le...@oracle.com>
---
 kernel/cgroup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index 4855892..8d6c3f2 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -3898,7 +3898,7 @@ fail:
        if (cfile)
                fput(cfile);
 
-       if (event && event->eventfd && !IS_ERR(event->eventfd))
+       if (event->eventfd && !IS_ERR(event->eventfd))
                eventfd_ctx_put(event->eventfd);
 
        if (!IS_ERR_OR_NULL(efile))
-- 
1.8.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to