Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751783AbdIQQ6n (ORCPT ); Sun, 17 Sep 2017 12:58:43 -0400 Received: from mail-lf0-f68.google.com ([209.85.215.68]:35488 "EHLO mail-lf0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751632AbdIQQ6m (ORCPT ); Sun, 17 Sep 2017 12:58:42 -0400 X-Google-Smtp-Source: AOwi7QAyTtmsg9p20urohHjWP1mWKuC7/GPzuizwcebf3/m5NCwg5qcJkkRYlo47KnT6nRmJb2SarQ== Date: Sun, 17 Sep 2017 19:58:38 +0300 From: Cyrill Gorcunov To: LKML Cc: Eugene Syromiatnikov , Andrey Vagin , Andrew Morton , Pavel Emelyanov Subject: [PATCH] kcmp: Drop branch leftover typo Message-ID: <20170917165838.GA1887@uranus.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.8.3 (2017-05-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 823 Lines: 25 The else branch been leftover and escaped the source code refresh. Not a problem but better clean it up. Reported-by: Eugene Syromiatnikov Signed-off-by: Cyrill Gorcunov CC: Andrey Vagin CC: Andrew Morton CC: Pavel Emelyanov --- kernel/kcmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-ml.git/kernel/kcmp.c =================================================================== --- linux-ml.git.orig/kernel/kcmp.c +++ linux-ml.git/kernel/kcmp.c @@ -131,7 +131,7 @@ static int kcmp_epoll_target(struct task if (filp_epoll) { filp_tgt = get_epoll_tfile_raw_ptr(filp_epoll, slot.tfd, slot.toff); fput(filp_epoll); - } else + } if (IS_ERR(filp_tgt)) return PTR_ERR(filp_tgt);