Skip to content

Commit 2528dcb

Browse files
rbmarlierejgross1
authored andcommitted
xen: pcpu: make xen_pcpu_subsys const
Now that the driver core can properly handle constant struct bus_type, move the xen_pcpu_subsys variable to be a constant structure as well, placing it into read-only memory which can not be modified at runtime. Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Link: https://lore.kernel.org/r/20240203-bus_cleanup-xen-v1-1-c2f5fe89ed95@marliere.net Signed-off-by: Juergen Gross <jgross@suse.com>
1 parent b2c52b8 commit 2528dcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/xen/pcpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ struct pcpu {
6565
uint32_t flags;
6666
};
6767

68-
static struct bus_type xen_pcpu_subsys = {
68+
static const struct bus_type xen_pcpu_subsys = {
6969
.name = "xen_cpu",
7070
.dev_name = "xen_cpu",
7171
};

0 commit comments

Comments
 (0)