forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'for-linus-5.8b-rc1-tag' of git://git.kernel.org/pub/scm/li…
…nux/kernel/git/xen/tip Pull xen updates from Juergen Gross: - several smaller cleanups - a fix for a Xen guest regression with CPU offlining - a small fix in the xen pvcalls backend driver - an update of MAINTAINERS * tag 'for-linus-5.8b-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip: MAINTAINERS: Update PARAVIRT_OPS_INTERFACE and VMWARE_HYPERVISOR_INTERFACE xen/pci: Get rid of verbose_request and use dev_dbg() instead xenbus: Use dev_printk() when possible xen-pciback: Use dev_printk() when possible xen: enable BALLOON_MEMORY_HOTPLUG by default xen: expand BALLOON_MEMORY_HOTPLUG description xen/pvcalls: Make pvcalls_back_global static xen/cpuhotplug: Fix initial CPU offlining for PV(H) guests xen-platform: Constify dev_pm_ops xen/pvcalls-back: test for errors when calling backend_connect()
- Loading branch information
Showing
14 changed files
with
90 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12911,7 +12911,7 @@ F: include/uapi/linux/ppdev.h | |
|
||
PARAVIRT_OPS INTERFACE | ||
M: Juergen Gross <[email protected]> | ||
M: Thomas Hellstrom <thellstrom@vmware.com> | ||
M: Deep Shah <sdeep@vmware.com> | ||
M: "VMware, Inc." <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
|
@@ -18287,7 +18287,7 @@ S: Maintained | |
F: drivers/misc/vmw_balloon.c | ||
|
||
VMWARE HYPERVISOR INTERFACE | ||
M: Thomas Hellstrom <thellstrom@vmware.com> | ||
M: Deep Shah <sdeep@vmware.com> | ||
M: "VMware, Inc." <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ | |
* Author: Ryan Wilson <[email protected]> | ||
*/ | ||
|
||
#define dev_fmt(fmt) DRV_NAME ": " fmt | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/moduleparam.h> | ||
#include <linux/pci.h> | ||
|
@@ -154,9 +156,7 @@ int xen_pcibk_config_read(struct pci_dev *dev, int offset, int size, | |
* (as if device didn't respond) */ | ||
u32 value = 0, tmp_val; | ||
|
||
if (unlikely(verbose_request)) | ||
printk(KERN_DEBUG DRV_NAME ": %s: read %d bytes at 0x%x\n", | ||
pci_name(dev), size, offset); | ||
dev_dbg(&dev->dev, "read %d bytes at 0x%x\n", size, offset); | ||
|
||
if (!valid_request(offset, size)) { | ||
err = XEN_PCI_ERR_invalid_offset; | ||
|
@@ -195,9 +195,7 @@ int xen_pcibk_config_read(struct pci_dev *dev, int offset, int size, | |
} | ||
|
||
out: | ||
if (unlikely(verbose_request)) | ||
printk(KERN_DEBUG DRV_NAME ": %s: read %d bytes at 0x%x = %x\n", | ||
pci_name(dev), size, offset, value); | ||
dev_dbg(&dev->dev, "read %d bytes at 0x%x = %x\n", size, offset, value); | ||
|
||
*ret_val = value; | ||
return xen_pcibios_err_to_errno(err); | ||
|
@@ -212,10 +210,8 @@ int xen_pcibk_config_write(struct pci_dev *dev, int offset, int size, u32 value) | |
u32 tmp_val; | ||
int field_start, field_end; | ||
|
||
if (unlikely(verbose_request)) | ||
printk(KERN_DEBUG | ||
DRV_NAME ": %s: write request %d bytes at 0x%x = %x\n", | ||
pci_name(dev), size, offset, value); | ||
dev_dbg(&dev->dev, "write request %d bytes at 0x%x = %x\n", | ||
size, offset, value); | ||
|
||
if (!valid_request(offset, size)) | ||
return XEN_PCI_ERR_invalid_offset; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ | |
* Author: Chris Bookholt <[email protected]> | ||
*/ | ||
|
||
#define dev_fmt(fmt) DRV_NAME ": " fmt | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/pci.h> | ||
#include "pciback.h" | ||
|
@@ -35,8 +37,8 @@ static struct xen_pcibk_config_quirk *xen_pcibk_find_quirk(struct pci_dev *dev) | |
if (match_one_device(&tmp_quirk->devid, dev) != NULL) | ||
goto out; | ||
tmp_quirk = NULL; | ||
printk(KERN_DEBUG DRV_NAME | ||
": quirk didn't match any device known\n"); | ||
dev_printk(KERN_DEBUG, &dev->dev, | ||
"quirk didn't match any device known\n"); | ||
out: | ||
return tmp_quirk; | ||
} | ||
|
Oops, something went wrong.