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 Received: from lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 08FD4ECAAD3 for ; Thu, 1 Sep 2022 19:03:01 +0000 (UTC) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4MJVmh0xm1z2yyZ for ; Fri, 2 Sep 2022 05:03:00 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=casper.20170209 header.b=N2ZDJl7J; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=infradead.org (client-ip=2001:8b0:10b:1236::1; helo=casper.infradead.org; envelope-from=peterz@infradead.org; receiver=) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=casper.20170209 header.b=N2ZDJl7J; dkim-atps=neutral Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4MJVly3Fz0z2xg4 for ; Fri, 2 Sep 2022 05:02:19 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=zVCtJuwv4BSK05o0Rzcawywp7RFYNazeMbOVnDEO6nk=; b=N2ZDJl7JSaVJjpRkp9/YCd3RWA 10yUX4CboBDQDKq9YEu5TIQFkRPfDIyhNXCe6nnsR4kuZyztBiT55EnYIpsRaoOUw2+IkHn02VJuk 8PVR/3ojKpqxi49hRyZQzFTBjTm0Shmhl+e921O8ODZQfzE9Y8c5ydfH3YVFYs/XuEi6TgxlpCeVz kRhRaE7vgNSMdMhBIZs2dQ7qFnzjZxmsPwVQgUsrkRyX37Lb3SGysC25n+wxzPaAO6hAm4vqM4VhK cC8UuYLLNSFl0etsmZZEQ0SNn79BHHin3Q4bhBFm4xdipEJJxUb3qjGNr0X+4fD8UxRH9svlBexSi JGSINe6Q==; Received: from j130084.upc-j.chello.nl ([24.132.130.84] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1oTpRh-006He9-Jy; Thu, 01 Sep 2022 19:01:45 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 9DE5A300230; Thu, 1 Sep 2022 21:01:42 +0200 (CEST) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id 82A2B2B8D5A22; Thu, 1 Sep 2022 21:01:42 +0200 (CEST) Date: Thu, 1 Sep 2022 21:01:42 +0200 From: Peter Zijlstra To: Christophe Leroy Subject: Re: [PATCH v2 15/16] objtool/powerpc: Enable objtool to be built on ppc Message-ID: References: <20220829055223.24767-1-sv@linux.ibm.com> <20220829055223.24767-16-sv@linux.ibm.com> <2fb92e17-2ad5-9732-560c-a7321e6a2528@csgroup.eu> <20220901151117.GE25951@gate.crashing.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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: "aik@ozlabs.ru" , "chenzhongjin@huawei.com" , "linux-kernel@vger.kernel.org" , "rostedt@goodmis.org" , "mingo@redhat.com" , Sathvika Vasireddy , "npiggin@gmail.com" , "jpoimboe@redhat.com" , "naveen.n.rao@linux.vnet.ibm.com" , "mbenes@suse.cz" , "linuxppc-dev@lists.ozlabs.org" Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On Thu, Sep 01, 2022 at 04:38:52PM +0000, Christophe Leroy wrote: > objtool is a userland app, there is no access to kernel headers here. Please have a look at tools/include/ :-)