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 AD512C3F2CD for ; Fri, 28 Feb 2020 13:44:20 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 11EB9246AE for ; Fri, 28 Feb 2020 13:44:19 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 11EB9246AE Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ubuntu.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 48TW3j1FC5zDrPG for ; Sat, 29 Feb 2020 00:44:17 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=ubuntu.com (client-ip=91.189.89.112; helo=youngberry.canonical.com; envelope-from=christian.brauner@ubuntu.com; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ubuntu.com Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 48TW193jTkzDrMS for ; Sat, 29 Feb 2020 00:42:03 +1100 (AEDT) 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 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-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-mm@kvack.org, linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" 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