Commit 9af48210 authored by Lukas Bulwahn's avatar Lukas Bulwahn Committed by Juergen Gross

xen: Fix config option reference in XEN_PRIVCMD definition

Commit 2fae6bb7 ("xen/privcmd: Add new syscall to get gsi from dev")
adds a weak reverse dependency to the config XEN_PRIVCMD definition,
referring to CONFIG_XEN_PCIDEV_BACKEND. In Kconfig files, one refers to
config options without the CONFIG prefix, though. So in its current form,
this does not create the reverse dependency as intended, but is an
attribute with no effect.

Refer to the intended config option XEN_PCIDEV_BACKEND in the XEN_PRIVCMD
definition.

Fixes: 2fae6bb7 ("xen/privcmd: Add new syscall to get gsi from dev")
Signed-off-by: default avatarLukas Bulwahn <lukas.bulwahn@redhat.com>
Reviewed-by: default avatarJuergen Gross <jgross@suse.com>
Message-ID: <20240930090650.429813-1-lukas.bulwahn@redhat.com>
Signed-off-by: default avatarJuergen Gross <jgross@suse.com>
parent 9852d85e
...@@ -261,7 +261,7 @@ config XEN_SCSI_BACKEND ...@@ -261,7 +261,7 @@ config XEN_SCSI_BACKEND
config XEN_PRIVCMD config XEN_PRIVCMD
tristate "Xen hypercall passthrough driver" tristate "Xen hypercall passthrough driver"
depends on XEN depends on XEN
imply CONFIG_XEN_PCIDEV_BACKEND imply XEN_PCIDEV_BACKEND
default m default m
help help
The hypercall passthrough driver allows privileged user programs to The hypercall passthrough driver allows privileged user programs to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment