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 E50E0C433F5 for ; Wed, 9 Mar 2022 01:38:02 +0000 (UTC) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4KCvw82yYcz3bTj for ; Wed, 9 Mar 2022 12:38:00 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=ellerman.id.au header.i=@ellerman.id.au header.a=rsa-sha256 header.s=201909 header.b=kg4LLqW1; dkim-atps=neutral Received: from gandalf.ozlabs.org (mail.ozlabs.org [IPv6:2404:9400:2221:ea00::3]) (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 4KCvvR45Dlz2xsq for ; Wed, 9 Mar 2022 12:37:23 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=ellerman.id.au header.i=@ellerman.id.au header.a=rsa-sha256 header.s=201909 header.b=kg4LLqW1; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 4KCvvM5DSQz4xdl; Wed, 9 Mar 2022 12:37:19 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ellerman.id.au; s=201909; t=1646789841; bh=p1p4VSMUJYVQ87kKlKJCoseMUR6jFyJEysr+m3gIwi0=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=kg4LLqW19iBCuq6n4YWNFuQaigJTPm2LPygRh+xs6IVrctsXaXt3ILv9VhGErZIg6 De9njLj/wF5dAdJJLt5SxO61eaCgUqPMe1isTs6EegH4AnCAlKz4BRMBcBMYg+fF/o L1VMXucsVKKJhzcj0i7Mi/DrmHB78UZ9JVE+OGdyuInE474Tu3KF5VA3O8PaX7Hqq8 EmehPbpWFGyHpvLOOoRZhgQmFdZPeiCEk4eqcTMrx7/Tj/FNsQEICY4kKzlXp/H91c yU/06lKGdyFkDF9YlPTi3xCkMehPi73O1kmPCk1nG8uGpdhh1XnCRgrOxpbFcJvNhC bej463KEgL1IQ== From: Michael Ellerman To: Michael Ellerman , Greg Kroah-Hartman , Andrew Morton , Helge Deller , Christophe Leroy , Paul Mackerras , Benjamin Herrenschmidt , "James E.J. Bottomley" , Kees Cook , Arnd Bergmann Subject: Re: [PATCH v4 00/13] Fix LKDTM for PPC64/IA64/PARISC v4 In-Reply-To: <164674125384.3322453.12551849351633372798.b4-ty@ellerman.id.au> References: <164674125384.3322453.12551849351633372798.b4-ty@ellerman.id.au> Date: Wed, 09 Mar 2022 12:37:14 +1100 Message-ID: <87r17bnbxx.fsf@mpe.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain 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-arch@vger.kernel.org, linux-ia64@vger.kernel.org, linux-parisc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, linuxppc-dev@lists.ozlabs.org Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" Michael Ellerman writes: > On Tue, 15 Feb 2022 13:40:55 +0100, Christophe Leroy wrote: >> PPC64/IA64/PARISC have function descriptors. LKDTM doesn't work >> on those three architectures because LKDTM messes up function >> descriptors with functions. >> >> This series does some cleanup in the three architectures and >> refactors function descriptors so that it can then easily use it >> in a generic way in LKDTM. >> >> [...] > > Applied to powerpc/next. I also have it in an rc2-based topic branch if there are any merge conflicts that people want to resolve, I don't see any in linux-next at the moment though. https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git/log/?h=topic/func-desc-lkdtm cheers