[PATCH] KVM: vfio: Constify static kvm_device_ops

Rikard Falkeborn posted 1 patch 4 years, 5 months ago
virt/kvm/vfio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] KVM: vfio: Constify static kvm_device_ops
Posted by Rikard Falkeborn 4 years, 5 months ago
kvm_vfio_ops is never modified, so make it const to allow the compiler
to put it in read-only memory.

Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
---
 virt/kvm/vfio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virt/kvm/vfio.c b/virt/kvm/vfio.c
index 8fcbc50221c2..0b305f13489e 100644
--- a/virt/kvm/vfio.c
+++ b/virt/kvm/vfio.c
@@ -384,7 +384,7 @@ static void kvm_vfio_destroy(struct kvm_device *dev)
 
 static int kvm_vfio_create(struct kvm_device *dev, u32 type);
 
-static struct kvm_device_ops kvm_vfio_ops = {
+static const struct kvm_device_ops kvm_vfio_ops = {
 	.name = "kvm-vfio",
 	.create = kvm_vfio_create,
 	.destroy = kvm_vfio_destroy,
-- 
2.34.1