diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2015-04-13 00:26:35 +0100 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2015-04-29 17:34:50 +0100 |
commit | 8014bcc86ef112eab9ee1db312dba4e6b608cf89 (patch) | |
tree | edb75ea07db0ae0fdd94c91d7c82c0eed94d5a76 /drivers/xen/xen-pciback/conf_space_header.c | |
parent | 2b953a5e994ce279904ec70220f7d4f31d380a0a (diff) | |
download | blackbird-op-linux-8014bcc86ef112eab9ee1db312dba4e6b608cf89.tar.gz blackbird-op-linux-8014bcc86ef112eab9ee1db312dba4e6b608cf89.zip |
xen-pciback: Add name prefix to global 'permissive' variable
The variable for the 'permissive' module parameter used to be static
but was recently changed to be extern. This puts it in the kernel
global namespace if the driver is built-in, so its name should begin
with a prefix identifying the driver.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Fixes: af6fc858a35b ("xen-pciback: limit guest control of command register")
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Diffstat (limited to 'drivers/xen/xen-pciback/conf_space_header.c')
-rw-r--r-- | drivers/xen/xen-pciback/conf_space_header.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/xen-pciback/conf_space_header.c b/drivers/xen/xen-pciback/conf_space_header.c index c2260a0456c9..ad3d17d29c81 100644 --- a/drivers/xen/xen-pciback/conf_space_header.c +++ b/drivers/xen/xen-pciback/conf_space_header.c @@ -118,7 +118,7 @@ static int command_write(struct pci_dev *dev, int offset, u16 value, void *data) cmd->val = value; - if (!permissive && (!dev_data || !dev_data->permissive)) + if (!xen_pcibk_permissive && (!dev_data || !dev_data->permissive)) return 0; /* Only allow the guest to control certain bits. */ |