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 DC25EC0032E for ; Wed, 25 Oct 2023 09:09:45 +0000 (UTC) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.a=rsa-sha256 header.s=korg header.b=MUWn8dN1; dkim-atps=neutral Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4SFjmm3Sl5z3cV9 for ; Wed, 25 Oct 2023 20:09:44 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.a=rsa-sha256 header.s=korg header.b=MUWn8dN1; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=linuxfoundation.org (client-ip=145.40.73.55; helo=sin.source.kernel.org; envelope-from=gregkh@linuxfoundation.org; receiver=lists.ozlabs.org) Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) (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 4SFjlq1f82z2xdg for ; Wed, 25 Oct 2023 20:08:54 +1100 (AEDT) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id 573A6CE34FD; Wed, 25 Oct 2023 09:08:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2E7E0C433C7; Wed, 25 Oct 2023 09:08:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1698224930; bh=itIf9cOabqYGAHuSf2wNhn6UlBjXi9zaPiiD1oZbPaU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MUWn8dN1sC+I65NJ5aEhqi/Wy3FJKGK+ODGEgsDFteP1mgyriQetIJhHJpXKFKRf5 Ll+PVJd9iaDiHDDIpft5kaplhA7xlzt8JRCsd7qVzQ0/+FlKLNGz5sfHcA7Uc3RNFi UzCjeD5IAbdrztBh0kkzl9lT8/UCnLm6WmtuUqNY= Date: Wed, 25 Oct 2023 11:08:47 +0200 From: Greg Kroah-Hartman To: Frederic Barrat Subject: Re: [PATCH] cxl: make cxl_class constant Message-ID: <2023102533-anyway-bullish-75be@gregkh> References: <2023102434-haiku-uphill-0c11@gregkh> <9573ec63-a8d6-4c69-a70b-9095838d521d@linux.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9573ec63-a8d6-4c69-a70b-9095838d521d@linux.ibm.com> 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: linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, Arnd Bergmann , Andrew Donnellan Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On Wed, Oct 25, 2023 at 10:16:55AM +0200, Frederic Barrat wrote: > > > On 24/10/2023 13:48, Greg Kroah-Hartman wrote: > > Now that the driver core allows for struct class to be in read-only > > memory, we should make all 'class' structures declared at build time > > placing them into read-only memory, instead of having to be dynamically > > allocated at runtime. > > > > Cc: Frederic Barrat > > Cc: Andrew Donnellan > > Cc: Arnd Bergmann > > Cc: linuxppc-dev@lists.ozlabs.org > > Signed-off-by: Greg Kroah-Hartman > > --- > > Thanks! > Acked-by: Frederic Barrat Thanks for the review of these, I'll take them through my char/misc tree now. greg k-h