From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B8F04C43464 for ; Mon, 21 Sep 2020 12:11:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 738FF216C4 for ; Mon, 21 Sep 2020 12:11:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600690296; bh=AfC+JMOjrAUECkdEANLpPguMuiHLako5q/hs1b2Ntpo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=u4LmAmr0Yp5Q+wc0yoKRaATyskLIHzQhBvPRSgFiMt44L413DSkD/RmAPQZWmsWTC eY2j05n7MB6Oe7b5w5HwixINPTDYTE4nMX4ZpJ9glprnr9zjp7y4gVidmzZNSXMXBt svviPI2EEsmt8UIHY5qGYkC8ln9IQAO37D0P+LR8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726659AbgIUMLf (ORCPT ); Mon, 21 Sep 2020 08:11:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:55622 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726326AbgIUMLe (ORCPT ); Mon, 21 Sep 2020 08:11:34 -0400 Received: from kernel.org (unknown [87.71.73.56]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 169EA206D9; Mon, 21 Sep 2020 12:11:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600690294; bh=AfC+JMOjrAUECkdEANLpPguMuiHLako5q/hs1b2Ntpo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=g6UyTkaGGK7oMmIfXRfCZCaoKTMwMax4e3MJynfWnN6cFrvASDjHGge0EssaGxxLA yDB0QrdFCiN7rNkofzprQhuQdvupIhnaGw4Af+4w2W5OgoLhRcvJn/cYPvlAfgvaRd d7YCpnvphmLXkAuD+zL5EfnG6dFjRSwMC4JVFyJM= Date: Mon, 21 Sep 2020 15:11:26 +0300 From: Mike Rapoport To: YueHaibing Cc: akpm@linux-foundation.org, minchan@kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH -next] mm/madvise: remove duplicate include Message-ID: <20200921121126.GR2142832@kernel.org> References: <20200915121550.30584-1-yuehaibing@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200915121550.30584-1-yuehaibing@huawei.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Sep 15, 2020 at 08:15:50PM +0800, YueHaibing wrote: > Remove duplicate header which is included twice. > > Signed-off-by: YueHaibing > --- > mm/madvise.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/mm/madvise.c b/mm/madvise.c index > 460e19d60ba3..9bd21f9019d9 100644 --- a/mm/madvise.c +++ > b/mm/madvise.c @@ -30,7 +30,6 @@ #include > #include > #include > -#include To what version does this apply? I cannot find duplicate sched/mm.h neither in v5.9-rc6 nor in mmotm > > #include > > -- > 2.17.1 > > > -- Sincerely yours, Mike.