diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-05-10 11:36:51 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-06-04 11:53:43 +0200 |
| commit | d76795ea3dd412e7f4e293672170e3292ef0f7a5 (patch) | |
| tree | a39f91b820535e4fea9d31bc9629f27c2c40c588 /hw/9pfs | |
| parent | 19c2d53c029e57bb096377837fe250e367afece4 (diff) | |
| download | focaccia-qemu-d76795ea3dd412e7f4e293672170e3292ef0f7a5.tar.gz focaccia-qemu-d76795ea3dd412e7f4e293672170e3292ef0f7a5.zip | |
hw/xen: Make XenDevOps structures const
Keep XenDevOps structures in .rodata. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Paul Durrant <paul@xen.org> Message-Id: <20240510104908.76908-5-philmd@linaro.org>
Diffstat (limited to 'hw/9pfs')
| -rw-r--r-- | hw/9pfs/xen-9p-backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/9pfs/xen-9p-backend.c b/hw/9pfs/xen-9p-backend.c index a3ac53f989..79359d911a 100644 --- a/hw/9pfs/xen-9p-backend.c +++ b/hw/9pfs/xen-9p-backend.c @@ -513,7 +513,7 @@ static void xen_9pfs_alloc(struct XenLegacyDevice *xendev) xenstore_write_be_int(xendev, "max-ring-page-order", MAX_RING_ORDER); } -static struct XenDevOps xen_9pfs_ops = { +static const struct XenDevOps xen_9pfs_ops = { .size = sizeof(Xen9pfsDev), .flags = DEVOPS_FLAG_NEED_GNTDEV, .alloc = xen_9pfs_alloc, |