From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 A59B32FF149 for ; Wed, 26 Nov 2025 14:17:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764166652; cv=none; b=bA03SFTMK5eH8WbSCK97vV0yhSpSRYwp3qx52Lqu5V7XvXn6n4APT22HpqKZXfpBX4Ya08HcnvSvHWzJwlqvhPiBKnt3bQz6aRq7rA2Eo01ccvzXmT7ZzfpLQFaoFAyU+cx+9Nq7NskhyGx557LzIHU1UFGHrKV3r0r9sgrxuF4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764166652; c=relaxed/simple; bh=vyVJ88zk0dxY9UzMP/S8WEagTga86vQV1BI46kmfoqo=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=oLrstGtDhQMWCnRJ4sGxlbt/HwBCa0qjOKPbEbNfuKe7R+5ycT+Ke1L/++SGgUqeSLsb+CsyHcNjkDvVZayhY6W2o8kB07e4MIJ3D77Bpa/nxotmg5LKFzY0xKZ3LTTsRfCHcn5mBUgByaQDe2rep67Ww+HH1qEp4b66inhDZx0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=yiR/vV4F; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="yiR/vV4F" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 87A77C4CEF7; Wed, 26 Nov 2025 14:17:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764166652; bh=vyVJ88zk0dxY9UzMP/S8WEagTga86vQV1BI46kmfoqo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=yiR/vV4FIE9UrJKdzyPddXQnwVArB2v22DFc+Pf43ezBUM2skLe45irZvC+e6lSLP ybBr5jDQCz7h9DHun80pZytNQAAS5LomA4zK27Cx9iXsI3zOEDRPRhqzKHTDNxlBgT U83ULFJWYWb4QUf7jtiBHcV/CUaEpMQFyeDEdB7A= Date: Wed, 26 Nov 2025 15:17:24 +0100 From: Greg Kroah-Hartman To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: "Rafael J. Wysocki" , Danilo Krummrich , linux-kernel@vger.kernel.org Subject: Re: [PATCH v5 0/7] sysfs: prepare the constification of struct attribute Message-ID: <2025112614-islamist-emit-2a4b@gregkh> References: <20251029-sysfs-const-attr-prep-v5-0-ea7d745acff4@weissschuh.net> 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: <20251029-sysfs-const-attr-prep-v5-0-ea7d745acff4@weissschuh.net> On Wed, Oct 29, 2025 at 09:12:09AM +0100, Thomas Weißschuh wrote: > The migration of 'struct attribute' and its related structures and > macros are more complicated than those for 'struct bin_attribute'. > Mostly because they are all shared by various custom attribute types. > Introduce some initial utilities to support the migration. > These are enough to migrate some specialized attributes atomically or > those which don't use 'struct attribute' in their callbacks stepwise. > > The big outstanding problems are 'struct device_attribute' and > 'struct kobj_attribute'. These are used everywhere and I'm not yet sure > about a migration plan. > > Signed-off-by: Thomas Weißschuh > --- Sorry for the delay, this looks good, now queued up. greg k-h