]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
tsm-mr: Fix init breakage after bin_attrs constification by scoping non-const pointer...
authorCedric Xing <cedric.xing@intel.com>
Tue, 13 May 2025 16:41:54 +0000 (11:41 -0500)
committerDan Williams <dan.j.williams@intel.com>
Tue, 13 May 2025 18:02:33 +0000 (11:02 -0700)
commitb0ca403a9e381140cf626ca94519fb468370fc3e
tree8a4aec091751920b58e7cfdb7a06d0329ce8d7b9
parent1f450730ff39807360e96105adbec1c818905a70
tsm-mr: Fix init breakage after bin_attrs constification by scoping non-const pointers to init phase

Commit 9bec944506fa ("sysfs: constify attribute_group::bin_attrs") enforced
the ro-after-init principle by making elements of bin_attrs_new pointing to
const.

To align with this change, introduce a temporary variable `bap` within the
initialization loop. This improves code clarity by explicitly marking the
initialization scope and eliminates the need for type casts when assigning
to bin_attrs_new.

Signed-off-by: Cedric Xing <cedric.xing@intel.com>
Link: https://patch.msgid.link/20250513164154.10109-1-cedric.xing@intel.com
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/virt/coco/tsm-mr.c