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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 C26A2CCF9EE for ; Fri, 31 Oct 2025 05:54:03 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5513110E13F; Fri, 31 Oct 2025 05:54:03 +0000 (UTC) X-Greylist: delayed 902 seconds by postgrey-1.36 at gabe; Fri, 31 Oct 2025 05:54:02 UTC Received: from bmailout3.hostsharing.net (bmailout3.hostsharing.net [176.9.242.62]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3E40210E13F; Fri, 31 Oct 2025 05:54:02 +0000 (UTC) Received: from h08.hostsharing.net (h08.hostsharing.net [83.223.95.28]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "*.hostsharing.net", Issuer "RapidSSL TLS RSA CA G1" (verified OK)) by bmailout3.hostsharing.net (Postfix) with ESMTPS id 0C2912C0009F; Fri, 31 Oct 2025 06:38:57 +0100 (CET) Received: by h08.hostsharing.net (Postfix, from userid 100393) id C5D9E5B97; Fri, 31 Oct 2025 06:38:57 +0100 (CET) Date: Fri, 31 Oct 2025 06:38:57 +0100 From: Lukas Wunner To: Rodrigo Vivi Cc: dri-devel@lists.freedesktop.org, intel-xe@lists.freedesktop.org, Dave Airlie , Joonas Lahtinen , Simona Vetter , Hawking Zhang , Alex Deucher , Zack McKevitt , Aravind Iddamsetty , netdev@vger.kernel.org, "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman Subject: Re: DRM_RAS for CPER Error logging?! Message-ID: References: <20250929214415.326414-4-rodrigo.vivi@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-BeenThere: intel-xe@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Xe graphics driver List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-xe-bounces@lists.freedesktop.org Sender: "Intel-xe" On Thu, Oct 30, 2025 at 10:47:18AM -0400, Rodrigo Vivi wrote: > On Tue, Oct 28, 2025 at 03:13:15PM -0400, Rodrigo Vivi wrote: > > On Mon, Sep 29, 2025 at 05:44:12PM -0400, Rodrigo Vivi wrote: > > > > Hey Dave, Sima, AMD folks, Qualcomm folks, > > + Netlink list and maintainers to get some feedback on the netlink usage > proposed here. > > Specially to check if there's any concern with CPER blob going through > netlink or if there's any size limitation or concern. How large are those blobs? If the netlink message exceeds PAGE_SIZE because of the CPER blob, a workaround might be to attach it to the skb as fragments with skb_add_rx_frag(). Thanks, Lukas