]> git.ipfire.org Git - thirdparty/linux.git/commit
sysfs: attribute_group: allow registration of const attribute
authorThomas Weißschuh <linux@weissschuh.net>
Wed, 29 Oct 2025 08:12:10 +0000 (09:12 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Nov 2025 14:16:34 +0000 (15:16 +0100)
commitf85d90dd8d0efbc75e79698e147c6e682df22e1a
treee9788eb9e93705b5ada05ed0f806183fef9d089f
parenta762f883ecf6eed3c0c57e7afa97fba09287a40a
sysfs: attribute_group: allow registration of const attribute

To be able to constify instances of struct attribute it has to be
possible to add them to struct attribute_group. The current type of the
attrs member however is not compatible with that. Introduce a union that
allows registration of both const and non-const attributes to enable a
piecewise transition. As both union member types are compatible no
logic needs to be adapted.

Technically it is now possible register a const struct attribute and
receive it as mutable pointer in the callbacks. This is a soundness
issue.  But this same soundness issue already exists today in
sysfs_create_file(). Also the struct definition and callback
implementation are always closely linked and are meant to be moved to
const in lockstep.

Similar to commit 906c508afdca ("sysfs: attribute_group: allow
registration of const bin_attribute")

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Link: https://patch.msgid.link/20251029-sysfs-const-attr-prep-v5-1-ea7d745acff4@weissschuh.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/sysfs.h