Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

xen: sysfs: make kobj_type structure constant

Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.")
the driver core allows the usage of const struct kobj_type.

Take advantage of this to constify the structure definition to prevent
modification at runtime.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20230216-kobj_type-xen-v1-1-742423de7d71@weissschuh.net
Signed-off-by: Juergen Gross <jgross@suse.com>

authored by

Thomas Weißschuh and committed by
Juergen Gross
4ecc96cb 20e7da1b

+1 -1
+1 -1
drivers/xen/sys-hypervisor.c
··· 655 655 .store = hyp_sysfs_store, 656 656 }; 657 657 658 - static struct kobj_type hyp_sysfs_kobj_type = { 658 + static const struct kobj_type hyp_sysfs_kobj_type = { 659 659 .sysfs_ops = &hyp_sysfs_ops, 660 660 }; 661 661