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=-6.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED 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 A965BC3F2D2 for ; Fri, 28 Feb 2020 13:42:03 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 84BDD246B0 for ; Fri, 28 Feb 2020 13:42:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 84BDD246B0 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ubuntu.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 1CD336B0005; Fri, 28 Feb 2020 08:42:03 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 17E946B0006; Fri, 28 Feb 2020 08:42:03 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 06C856B0007; Fri, 28 Feb 2020 08:42:02 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0212.hostedemail.com [216.40.44.212]) by kanga.kvack.org (Postfix) with ESMTP id E03E06B0005 for ; Fri, 28 Feb 2020 08:42:02 -0500 (EST) Received: from smtpin21.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id 766F0181AEF1F for ; Fri, 28 Feb 2020 13:42:02 +0000 (UTC) X-FDA: 76539649284.21.ant25_2ee01b3bfd901 X-HE-Tag: ant25_2ee01b3bfd901 X-Filterd-Recvd-Size: 2385 Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by imf47.hostedemail.com (Postfix) with ESMTP for ; Fri, 28 Feb 2020 13:42:01 +0000 (UTC) Received: from ip5f5bf7ec.dynamic.kabel-deutschland.de ([95.91.247.236] helo=wittgenstein) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1j7fts-0002rn-Jc; Fri, 28 Feb 2020 13:41:56 +0000 Date: Fri, 28 Feb 2020 14:41:55 +0100 From: Christian Brauner To: Christophe Leroy , Christian Kellner , Shuah Khan Cc: linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-mm@kvack.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH] selftests: pidfd: Add pidfd_fdinfo_test in .gitignore Message-ID: <20200228134155.2rzxeqwrlofmtre4@wittgenstein> References: <966567c7dbaa26a06730d796354f8a086c0ee288.1582847778.git.christophe.leroy@c-s.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: On Fri, Feb 28, 2020 at 01:18:44AM +0100, Christian Brauner wrote: > On February 28, 2020 1:00:08 AM GMT+01:00, Christophe Leroy wrote: > >The commit identified below added pidfd_fdinfo_test > >but failed to add it to .gitignore > > > >Fixes: 2def297ec7fb ("pidfd: add tests for NSpid info in fdinfo") > >Cc: stable@vger.kernel.org > >Signed-off-by: Christophe Leroy > >--- > > tools/testing/selftests/pidfd/.gitignore | 1 + > > 1 file changed, 1 insertion(+) > > > >diff --git a/tools/testing/selftests/pidfd/.gitignore > >b/tools/testing/selftests/pidfd/.gitignore > >index 3a779c084d96..39559d723c41 100644 > >--- a/tools/testing/selftests/pidfd/.gitignore > >+++ b/tools/testing/selftests/pidfd/.gitignore > >@@ -2,4 +2,5 @@ pidfd_open_test > > pidfd_poll_test > > pidfd_test > > pidfd_wait > >+pidfd_fdinfo_test > > pidfd_getfd_test > > Thanks for spotting this. > I'll pick this up along with other fixes I have waiting. > > Acked-by: Christian Brauner Applied, thanks! Christian