From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from stravinsky.debian.org (stravinsky.debian.org [82.195.75.108]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 79F0743CE73; Wed, 23 Sep 2026 09:18:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=82.195.75.108 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1790155132; cv=none; b=HZvuo2jm7XhmOk8/rQrO66JB9pJCKUwyoBWniplJ/XPP6V22uizKHpqoQTC7n7I2vBY+MKld/0ugMbqzSgN0Bo4we6qBdP8mGRjL43hwoV7O+akhF5SmDys8wl1/Ncxd7GotXbga0cHTi2UCrNpdzduxJ0v60I+vHlVk6isXfds= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1790155132; c=relaxed/simple; bh=eVp6fwKjIF5ae8xOEXp35e6ZqGnoPZc0pRkkDiNLY+4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=lF8krtkWp4IoaLWG+8196JvuxTrL1Jzsn0CGLBg+0mWC2O7/Q80YhAKLzr5kPnXBBgLL7dYFRfssWuIXdxhUZfhxALlnILF69G22RsYejkbvZA705qV45a/0MzB8httnEmGur8DgREFHiFOyl14w0WGe1pzqydhs1tqphXy/jQ0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=debian.org; spf=pass smtp.mailfrom=debian.org; dkim=pass (2048-bit key) header.d=debian.org header.i=@debian.org header.b=W/Aw4x+l; arc=none smtp.client-ip=82.195.75.108 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=debian.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=debian.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=debian.org header.i=@debian.org header.b="W/Aw4x+l" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=debian.org; s=smtpauto.stravinsky; h=X-Debian-User:In-Reply-To:Content-Transfer-Encoding: Content-Type:MIME-Version:References:Message-ID:Subject:Cc:To:From:Date: Reply-To:Content-ID:Content-Description; bh=SsCuNzmgxLzWx+3uyAmSPHK7VGXvDorQ27xP2xLHmRU=; b=W/Aw4x+lFhUAQTP4c1VKEhBS/V qQflp8IYrQAl8pv8CXmzSueYbdQlbdGtXcPdQ6DlaDUXAGXRQVGzdfG3JAIkiAF418cINcv429Tf9 x0ddKXyg6vz556gpQ9U42oZA9RFYGH1aRVGNrbf9w5HYZUCFub35v3qmsgiBnKlKSfMIvcll254oS YCpye6/uqCSTorgSOcScAAxT79pJ8GFHpJPvun6H42jKJJ6NDqsPAcU4twDQX5edks3WAWRUSerMV QNODJ4x6htkGgcBvscwpFfG5tvqjQ9L6qGkFLrkEd5ErTwKSyQ8LkFBre7lRovikJDyL3K+WAs28c LYLh35Sw==; Received: from authenticated-user by stravinsky.debian.org with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) (envelope-from ) id 1x9J7B-003ePq-0r; Wed, 23 Sep 2026 09:18:09 +0000 Date: Wed, 23 Sep 2026 02:18:02 -0700 From: Breno Leitao To: Andreas Hindborg Cc: Thomas =?utf-8?Q?Wei=C3=9Fschuh?= , Miguel Ojeda , Boqun Feng , Gary Guo , =?utf-8?B?QmrDtnJu?= Roy Baron , Benno Lossin , Alice Ryhl , Trevor Gross , Danilo Krummrich , Daniel Almeida , Tamir Duberstein , Alexandre Courbot , Onur =?utf-8?B?w5Z6a2Fu?= , Matthew Brost , Thomas =?utf-8?Q?Hellstr=C3=B6m?= , Rodrigo Vivi , David Airlie , Simona Vetter , Dan Williams , "Rafael J. Wysocki" , Len Brown , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-coco@lists.linux.dev, linux-acpi@vger.kernel.org Subject: Re: [PATCH 0/6] configfs: Allow the registration of const struct configfs_attribute Message-ID: References: <20260716-configfs-const-base-v1-0-c545a4053cb5@weissschuh.net> <87tsnh2w3d.fsf@t14s.mail-host-address-is-not-set> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87tsnh2w3d.fsf@t14s.mail-host-address-is-not-set> X-Debian-User: leitao On Tue, Sep 22, 2026 at 04:34:46PM +0200, Andreas Hindborg wrote: > Thomas Weißschuh writes: > > > The attribute structure defined in driver code never need to be > > modified. Allow them to be marked as const. > > > > Signed-off-by: Thomas Weißschuh > > For the rust parts: > > Acked-by: Andreas Hindborg > > @Breno, will you take the entire series through your tree? Yes, I can take the whole series through my tree.