Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

xen: Fix config option reference in XEN_PRIVCMD definition

Commit 2fae6bb7be32 ("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: 2fae6bb7be32 ("xen/privcmd: Add new syscall to get gsi from dev")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Message-ID: <20240930090650.429813-1-lukas.bulwahn@redhat.com>
Signed-off-by: Juergen Gross <jgross@suse.com>

authored by

Lukas Bulwahn and committed by
Juergen Gross
9af48210 9852d85e

+1 -1
+1 -1
drivers/xen/Kconfig
··· 261 261 config XEN_PRIVCMD 262 262 tristate "Xen hypercall passthrough driver" 263 263 depends on XEN 264 - imply CONFIG_XEN_PCIDEV_BACKEND 264 + imply XEN_PCIDEV_BACKEND 265 265 default m 266 266 help 267 267 The hypercall passthrough driver allows privileged user programs to