search for: 621,30

Displaying 7 results from an estimated 7 matches for "621,30".

2012 Jun 09
2
[patch] NFSv4/ZFS ACLs
This is a PoC patch for NFSv4/ZFS ACLs. The objective of the patch is that rsync --acls support NFSv4/ZFS ACLs without requiring a new command line option NFSv4 ACLs can't be represented using POSIX draft ACLs, if an NFSv4 ACL is present a separate POSIX draft ACL will not be present and there are new APIs to access NFSv4 ACLs. So we need to distinguish between NFSv4 ACLs and POSIX ACLs in
2009 May 11
0
[PATCH 1/2] qemu-kvm: add MSI-X support
...int32_t val = data; - addr -= vdev->addr + VIRTIO_PCI_CONFIG; + addr -= vdev->addr; + if (addr < config) { + virtio_ioport_write(opaque, addr, val); + return; + } + addr -= config; if (addr > (vdev->config_len - sizeof(val))) return; @@ -621,30 +688,30 @@ static void virtio_map(PCIDevice *pci_dev, int region_num, uint32_t addr, uint32_t size, int type) { VirtIODevice *vdev = to_virtio_device(pci_dev); - int i; vdev->addr = addr; - for (i = 0; i < 3; i++) { - register_ioport_write(...
2009 May 11
0
[PATCH 1/2] qemu-kvm: add MSI-X support
...int32_t val = data; - addr -= vdev->addr + VIRTIO_PCI_CONFIG; + addr -= vdev->addr; + if (addr < config) { + virtio_ioport_write(opaque, addr, val); + return; + } + addr -= config; if (addr > (vdev->config_len - sizeof(val))) return; @@ -621,30 +688,30 @@ static void virtio_map(PCIDevice *pci_dev, int region_num, uint32_t addr, uint32_t size, int type) { VirtIODevice *vdev = to_virtio_device(pci_dev); - int i; vdev->addr = addr; - for (i = 0; i < 3; i++) { - register_ioport_write(...
2009 May 20
0
[PATCHv2-RFC 1/2] qemu-kvm: add MSI-X support
...int32_t val = data; - addr -= vdev->addr + VIRTIO_PCI_CONFIG; + addr -= vdev->addr; + if (addr < config) { + virtio_ioport_write(opaque, addr, val); + return; + } + addr -= config; if (addr > (vdev->config_len - sizeof(val))) return; @@ -621,30 +698,30 @@ static void virtio_map(PCIDevice *pci_dev, int region_num, uint32_t addr, uint32_t size, int type) { VirtIODevice *vdev = to_virtio_device(pci_dev); - int i; vdev->addr = addr; - for (i = 0; i < 3; i++) { - register_ioport_write(...
2009 May 20
0
[PATCHv2-RFC 1/2] qemu-kvm: add MSI-X support
...int32_t val = data; - addr -= vdev->addr + VIRTIO_PCI_CONFIG; + addr -= vdev->addr; + if (addr < config) { + virtio_ioport_write(opaque, addr, val); + return; + } + addr -= config; if (addr > (vdev->config_len - sizeof(val))) return; @@ -621,30 +698,30 @@ static void virtio_map(PCIDevice *pci_dev, int region_num, uint32_t addr, uint32_t size, int type) { VirtIODevice *vdev = to_virtio_device(pci_dev); - int i; vdev->addr = addr; - for (i = 0; i < 3; i++) { - register_ioport_write(...
2015 Jan 14
22
[PATCH v3 00/16] virtio-pci: towards virtio 1.0 guest support
Changes since v2: handling for devices without config space (e.g. rng) reduce # of mappings for VQs These patches seem to work fine on my virtio-1.0 qemu branch. There haven't been any bugs since v2: just minor cleanups and enhancements. QEMU side is still undergoing polishing, but is already testable. Rusty, what do you think? Let's merge these for 3.20? Also - will you be doing that
2015 Jan 14
22
[PATCH v3 00/16] virtio-pci: towards virtio 1.0 guest support
Changes since v2: handling for devices without config space (e.g. rng) reduce # of mappings for VQs These patches seem to work fine on my virtio-1.0 qemu branch. There haven't been any bugs since v2: just minor cleanups and enhancements. QEMU side is still undergoing polishing, but is already testable. Rusty, what do you think? Let's merge these for 3.20? Also - will you be doing that