can't find file to patch at input line 112 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Tue May 18 20:03:15 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 7bit |X-Patchwork-Submitter: "Chang S. Bae" |X-Patchwork-Id: 43460 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 742A9395BC4F; | Tue, 18 May 2021 20:08:57 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 742A9395BC4F |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1621368537; | bh=y7vBL3q2IaYMLfPMwWpZkbW8/7hWjWQa9p30aOFK+sY=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=AnSxnsDL70Vi0y9SWl90hOIPUs89V8MG72Tm17KPco4OQ0FmmXgQeu4K2B8RuFhH3 | RjuHKXUua/Cz+/sJn0htsfQvRja5hrNanky9dVle2YX+1BKgwKhZ25lSUrLKZZWA82 | fQ8zd9yaIG86qaCGlnuxl+LtMjWr7CXTqxHW+30M= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) | by sourceware.org (Postfix) with ESMTPS id 9B44A3858022 | for ; Tue, 18 May 2021 20:08:53 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9B44A3858022 |IronPort-SDR: | 5LN9LDRDwDcJ5hZ3xYp82sZ4guXWzZZtxRFlmGwLmChHNlAL7qTnFx/Ew0gF9tjVQUjilp+Api | PFmHsXDPEHnQ== |X-IronPort-AV: E=McAfee;i="6200,9189,9988"; a="200855046" |X-IronPort-AV: E=Sophos;i="5.82,310,1613462400"; d="scan'208";a="200855046" |Received: from orsmga006.jf.intel.com ([10.7.209.51]) | by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; | 18 May 2021 13:08:52 -0700 |IronPort-SDR: | 3ygskozssrcjv9P5mwJMevQdKbUc/2OHTMBeFlJ6lb4nnLfwcxUMdID+AA0vR7yyD9VySsMhGf | ZzjgzUOcMdiQ== |X-ExtLoop1: 1 |X-IronPort-AV: E=Sophos;i="5.82,310,1613462400"; d="scan'208";a="394993613" |Received: from chang-linux-3.sc.intel.com ([172.25.66.175]) | by orsmga006.jf.intel.com with ESMTP; 18 May 2021 13:08:51 -0700 |To: bp@suse.de, tglx@linutronix.de, mingo@kernel.org, luto@kernel.org, | x86@kernel.org |Subject: [PATCH v9 1/6] uapi: Define the aux vector AT_MINSIGSTKSZ |Date: Tue, 18 May 2021 13:03:15 -0700 |Message-Id: <20210518200320.17239-2-chang.seok.bae@intel.com> |X-Mailer: git-send-email 2.17.1 |In-Reply-To: <20210518200320.17239-1-chang.seok.bae@intel.com> |References: <20210518200320.17239-1-chang.seok.bae@intel.com> |X-Spam-Status: No, score=-11.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, | SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 |X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: "Chang S. Bae via Libc-alpha" | |From: "Chang S. Bae" |Reply-To: "Chang S. Bae" |Cc: linux-arch@vger.kernel.org, len.brown@intel.com, tony.luck@intel.com, | libc-alpha@sourceware.org, ravi.v.shankar@intel.com, | chang.seok.bae@intel.com, | jannh@google.com, linux-kernel@vger.kernel.org, dave.hansen@intel.com, | linux-api@vger.kernel.org, Dave.Martin@arm.com, | linux-arm-kernel@lists.infradead.org |Errors-To: libc-alpha-bounces@sourceware.org |Sender: "Libc-alpha" | |Define the AT_MINSIGSTKSZ in generic Linux. It is already used as generic |ABI in glibc's generic elf.h, and this define will prevent future namespace |conflicts. In particular, x86 is also using this generic definition. | |Signed-off-by: Chang S. Bae |Reviewed-by: Len Brown |Cc: Carlos O'Donell |Cc: Dave Martin |Cc: libc-alpha@sourceware.org |Cc: linux-arch@vger.kernel.org |Cc: linux-api@vger.kernel.org |Cc: linux-arm-kernel@lists.infradead.org |Cc: linux-kernel@vger.kernel.org |--- |Change from v6: |* Revised the comment. (Borislav Petkov) | |Change from v5: |* Reverted the arm64 change. (Dave Martin and Will Deacon) |* Massaged the changelog. | |Change from v4: |* Added as a new patch (Carlos O'Donell) |--- | include/uapi/linux/auxvec.h | 3 +++ | 1 file changed, 3 insertions(+) | |diff --git a/include/uapi/linux/auxvec.h b/include/uapi/linux/auxvec.h |index abe5f2b6581b..c7e502bf5a6f 100644 |--- a/include/uapi/linux/auxvec.h |+++ b/include/uapi/linux/auxvec.h -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored