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 <[email protected]> Suggested-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Ricardo B. Marliere <[email protected]> Reviewed-by: Greg Kroah-Hartman <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Juergen Gross <[email protected]>
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)