[PATCH v4 0/7] RTC: New logic to emulate RTC

2012-03-19 Thread Zhang, Yang Z
Changes in v4: Rebase to latest head. Changing in patch 6: Set the timer to one second earlier before target alarm when AF bit is clear. In version 3, in order to solve the async between UF, AF and UIP, the timer will keep running when UF or AF are clear. This is a little ugly,

[PATCH v4 1/7] RTC: Remove the logic to update time format when DM bit changed

2012-03-19 Thread Zhang, Yang Z
Change DM(date mode) and 24/12 control bit don't affect the internal registers. It only indicates what format is using for those registers. So we don't need to update time format when it is modified. Signed-off-by: Yang Zhang yang.z.zh...@intel.com --- hw/mc146818rtc.c | 10 +- 1

[PATCH v4 2/7] RTC: Update the RTC clock only when reading it

2012-03-19 Thread Zhang, Yang Z
There has no need to use two periodic timer to update RTC time. In this patch, we only update it when guest reading it. Signed-off-by: Yang Zhang yang.z.zh...@intel.com --- hw/mc146818rtc.c | 207 +- 1 files changed, 66 insertions(+), 141

[PATCH v4 3/7] RTC: Add UIP(update in progress) check logic

2012-03-19 Thread Zhang, Yang Z
The UIP(update in progress) is set when RTC is updating. And the update cycle begins 244us later after UIP is set. And it is cleared when update end. Signed-off-by: Yang Zhang yang.z.zh...@intel.com --- hw/mc146818rtc.c | 18 ++ 1 files changed, 18 insertions(+), 0

[PATCH v4 4/7] RTC: Set internal millisecond register to 500ms when reset divider

2012-03-19 Thread Zhang, Yang Z
The first update cycle begins one - half seconds later when divider reset is removing. Signed-off-by: Yang Zhang yang.z.zh...@intel.com --- hw/mc146818rtc.c | 38 +- 1 files changed, 33 insertions(+), 5 deletions(-) diff --git a/hw/mc146818rtc.c

[PATCH v4 5/7] RTC:Add RTC update-ended interrupt support

2012-03-19 Thread Zhang, Yang Z
Use a timer to emulate update cycle. When update cycle ended and UIE is setting, then raise an interrupt. The timer runs only when UF or AF is cleared. Signed-off-by: Yang Zhang yang.z.zh...@intel.com --- hw/mc146818rtc.c | 86 ++ 1 files

[PATCH v4 6/7] RTC:Add alarm support

2012-03-19 Thread Zhang, Yang Z
Changing in this patch: Set the timer to one second earlier before target alarm when AF bit is clear. In version 3, in order to solve the async between UF, AF and UIP, the timer will keep running when UF or AF are clear. This is a little ugly, especially when a userspace program is

[PATCH v4 7/7] RTC:Allow to migrate from old version

2012-03-19 Thread Zhang, Yang Z
The new logic is compatible with old. So it should not block migrate from old version. But new version cannot migrate to old. Signed-off-by: Yang Zhang yang.z.zh...@intel.com --- hw/mc146818rtc.c | 48 1 files changed, 44 insertions(+), 4

Re: Questing regarding KVM Guest PMU

2012-03-19 Thread shashank rachamalla
On Sun, Mar 18, 2012 at 10:21 PM, Gleb Natapov g...@redhat.com wrote: On Sun, Mar 18, 2012 at 09:47:55PM +0530, shashank rachamalla wrote: I guess things are working fine with perf. But why not with oprofile ? Looks like it. I never tried oprofile. Will try to reproduce your problem and

[net-next PATCH v0 0/5] Series short description

2012-03-19 Thread John Fastabend
This series is a follow up to this thread: http://www.spinics.net/lists/netdev/msg191360.html This adds two NTF_XXX bits to signal if the PF_BRIDGE netlink command should be parsed by the embedded bridge or the SW bridge. The insight here is the SW bridge is always the master device (NTF_MASTER)

[net-next PATCH v0 2/5] net: addr_list: add exclusive dev_uc_add

2012-03-19 Thread John Fastabend
This adds a dev_uc_add_excl() call similar to the original dev_uc_add() except it sets the global bit. With this change the reference count will not be bumped and -EEXIST will be returned if a duplicate address exists. This is useful for drivers that support SR-IOV and want to manage the unicast

[net-next PATCH v0 3/5] net: add fdb generic dump routine

2012-03-19 Thread John Fastabend
This adds a generic dump routine drivers can call. It should be sufficient to handle any bridging model that uses the unicast address list. This should be most SR-IOV enabled NICs. Signed-off-by: John Fastabend john.r.fastab...@intel.com --- net/core/rtnetlink.c | 56

[net-next PATCH v0 4/5] ixgbe: enable FDB netdevice ops

2012-03-19 Thread John Fastabend
Enable FDB ops on ixgbe when in SR-IOV mode. Signed-off-by: John Fastabend john.r.fastab...@intel.com --- drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 59 + 1 files changed, 59 insertions(+), 0 deletions(-) diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c

[net-next PATCH v0 5/5] ixgbe: allow RAR table to be updated in promisc mode

2012-03-19 Thread John Fastabend
This allows RAR table updates while in promiscuous. With SR-IOV enabled it is valuable to allow the RAR table to be updated even when in promisc mode to configure forwarding Signed-off-by: John Fastabend john.r.fastab...@intel.com --- drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 21

Re: Questing regarding KVM Guest PMU

2012-03-19 Thread Gleb Natapov
On Mon, Mar 19, 2012 at 12:20:30PM +0530, shashank rachamalla wrote: On Sun, Mar 18, 2012 at 10:21 PM, Gleb Natapov g...@redhat.com wrote: On Sun, Mar 18, 2012 at 09:47:55PM +0530, shashank rachamalla wrote: I guess things are working fine with perf. But why not with oprofile ? Looks

[net-next PATCH v0 1/5] net: add generic PF_BRIDGE:RTM_ FDB hooks

2012-03-19 Thread John Fastabend
Forgot to change the title resending with a title that won't be dropped by netdev and kvm mailing lists. And updated my local repo so it won't happen again. --- This adds two new flags NTF_MASTER and NTF_LOWERDEV that can now be used to specify where PF_BRIDGE netlink commands should be sent.

Re: [PATCH 0/2 v3] kvm: notify host when guest panicked

2012-03-19 Thread Wen Congyang
At 03/08/2012 03:57 PM, Wen Congyang Wrote: We can know the guest is paniced when the guest runs on xen. But we do not have such feature on kvm. Another purpose of this feature is: management app(for example: libvirt) can do auto dump when the guest is crashed. If management app does not do

Re: [PTACH] libcacard: fix VCARD_ATTR_PREFIX macro

2012-03-19 Thread Marcel Heinz
Hi, Alon Levy al...@redhat.com wrote: Thanks for the patch, but I think you are using a not up to date tree, it's fixed by: commit 0202181245297a9e847c05f4a18623219d95e93e Author: Hans de Goede hdego...@redhat.com Date: Fri Mar 2 16:49:44 2012 +0100 libcacard: Fix compilation with

Re: [PATCH/RFC] kvm/powerpc: Add new ioctl to retreive support page sizes and encodings

2012-03-19 Thread Avi Kivity
On 03/18/2012 10:47 PM, Benjamin Herrenschmidt wrote: On Sun, 2012-03-18 at 12:23 +0200, Avi Kivity wrote: -ENODOCS What kind of docs do you expect ? Where ? Documentation/virtual/kvm/api.txt. I don't see any of the other private ioctls we use on ppc documented either... Please send

Re: [PATCH 3/4] KVM: Switch to srcu-less get_dirty_log()

2012-03-19 Thread Xiao Guangrong
On 03/16/2012 05:44 PM, Takuya Yoshikawa wrote: On Fri, 16 Mar 2012 16:28:56 +0800 Xiao Guangrong xiaoguangr...@linux.vnet.ibm.com wrote: Thanks for your explanation, maybe you are right, i do not know migration much. What i worried about is, you have changed the behaviour of

Re: [PATCH v5 2/3] virtio-scsi: add error handling

2012-03-19 Thread Hu Tao
On Sun, Feb 05, 2012 at 12:16:01PM +0100, Paolo Bonzini wrote: This commit adds basic error handling to the virtio-scsi HBA device. Task management functions are sent synchronously via the control virtqueue. Cc: linux-scsi linux-s...@vger.kernel.org Cc: Rusty Russell ru...@rustcorp.com.au

[PATCH] pci-assign: Fall back to host-side MSI if INTx sharing fails

2012-03-19 Thread Jan Kiszka
If the host or the device does not support INTx sharing, retry the IRQ assignment with host-side MSI support enabled but warn about potential consequences. This allows to preserve the previous behavior where we defaulted to MSI and did not support INTx sharing at all. Signed-off-by: Jan Kiszka

Re: [PATCH 0/2] virtio-pci: fix abort when fail to allocate ioeventfd

2012-03-19 Thread Stefan Hajnoczi
On Fri, Mar 16, 2012 at 04:59:35PM +0800, Amos Kong wrote: On 14/03/12 19:46, Stefan Hajnoczi wrote: On Wed, Mar 14, 2012 at 10:46 AM, Avi Kivitya...@redhat.com wrote: On 03/14/2012 12:39 PM, Stefan Hajnoczi wrote: On Wed, Mar 14, 2012 at 10:05 AM, Avi Kivitya...@redhat.com wrote: On

Re: [PATCH 3/4] KVM: Switch to srcu-less get_dirty_log()

2012-03-19 Thread Takuya Yoshikawa
On Mon, 19 Mar 2012 17:34:49 +0800 Xiao Guangrong xiaoguangr...@linux.vnet.ibm.com wrote: The current code is under the protection of s-rcu: IIRC, it always holds s-rcu when write guest page and set dirty bit, that mean the dirty page is logged either in the old dirty_bitmap or in the current

Re: [PATCH 0/2] virtio-pci: fix abort when fail to allocate ioeventfd

2012-03-19 Thread Avi Kivity
On 03/16/2012 10:59 AM, Amos Kong wrote: Can you give some detail about this? I'm not familiar with Memory API. Well there's a huge amount of detail needed here. The idea is that memory_region_add_eventfd() will always work, with or without kvm, and even if kvm is enabled but we run out of

Re: performance trouble

2012-03-19 Thread Gleb Natapov
On Fri, Mar 16, 2012 at 11:13:31AM +0100, David Cure wrote: hello, sorry for the delay, Le Thu, Feb 23, 2012 at 10:38:07AM +0200, Gleb Natapov ecrivait : Ah, I guess the reason is that it records events only of IO thread. You need to trace all vcpu threads too.

Re: [PATCH v4 7/7] RTC:Allow to migrate from old version

2012-03-19 Thread Avi Kivity
On 03/19/2012 08:14 AM, Zhang, Yang Z wrote: The new logic is compatible with old. So it should not block migrate from old version. But new version cannot migrate to old. +static int rtc_load_old(QEMUFile *f, void *opaque, int version_id) +{ +RTCState *s = opaque; + +if

Re: [PATCH v5 2/3] virtio-scsi: add error handling

2012-03-19 Thread Paolo Bonzini
Il 19/03/2012 10:55, Hu Tao ha scritto: + int ret = FAILED; cmd-comp = comp; ret = virtscsi_kick_cmd(vscsi, vscsi-ctrl_vq, cmd, sizeof cmd-req.tmf, sizeof cmd-resp.tmf, GFP_NOIO); if (ret 0) -

Re: kvm-ppc while I'm on vacation

2012-03-19 Thread Paul Mackerras
On Sun, Mar 18, 2012 at 11:10:43PM +0100, Alexander Graf wrote: Hence I asked Paul to take on temporary maintainership of the kvm-ppc tree for the next 3 weeks. During that time, he'll be allowed to send pull requests to Avi and Marcelo and is obliged to fix the build whenever it breaks :).

Re: kvm-ppc while I'm on vacation

2012-03-19 Thread Avi Kivity
On 03/19/2012 01:56 PM, Paul Mackerras wrote: On Sun, Mar 18, 2012 at 11:10:43PM +0100, Alexander Graf wrote: Hence I asked Paul to take on temporary maintainership of the kvm-ppc tree for the next 3 weeks. During that time, he'll be allowed to send pull requests to Avi and Marcelo and is

Re: question regarding intel_idle inside kvm

2012-03-19 Thread Avi Kivity
On 03/16/2012 12:19 AM, Daniel Lezcano wrote: Hi all, I recently did some modification in the cpuidle core and the patches were merge to linux-next. Someone reported a problem with the intel_idle cpuidle driver. I tried to reproduce the problem with kvm but the kernel fails to intialize

Re: question regarding intel_idle inside kvm

2012-03-19 Thread Daniel Lezcano
On 03/19/2012 01:31 PM, Avi Kivity wrote: On 03/16/2012 12:19 AM, Daniel Lezcano wrote: Hi all, I recently did some modification in the cpuidle core and the patches were merge to linux-next. Someone reported a problem with the intel_idle cpuidle driver. I tried to reproduce the problem with

[PATCH v4 0/2] support to migrate with IPv6 address

2012-03-19 Thread Amos Kong
Those patches make tcp migration use the help functions in qemu-socket.c for support IPv6 migration. Changes from v1: - split different changes to small patches, it will be easier to review - fixed some problem according to Kevin's comment Changes from v2: - fix issue of returning real error -

[PATCH v4 1/2] qemu-socket: change inet_connect() to to support nonblock socket

2012-03-19 Thread Amos Kong
Change inet_connect(const char *str, int socktype) to inet_connect(const char *str, bool block, int *sock_err), socktype is unused, block is used to assign if set socket to block/nonblock, sock_err is used to restore socket error. Connect's successful for nonblock socket when following errors are

[PATCH v4 2/2] use inet_listen()/inet_connect() to support ipv6 migration

2012-03-19 Thread Amos Kong
Use help functions in qemu-socket.c for tcp migration, which already support ipv6 addresses. For IPv6 brackets must be mandatory if you require a port. Referencing to RFC5952, the recommended format is: [2312::8274]:5200 test status: Successed listen side: qemu-kvm -incoming

[PATCH 1/3][Autotest][virt] autotest.base_utils: Move virt.utils.Thread-base_utils.InterruptedThread

2012-03-19 Thread Jiří Župka
It is necessary for adding syncdata class. Signed-off-by: Jiří Župka jzu...@redhat.com --- client/common_lib/base_barrier.py |2 +- client/common_lib/base_utils.py| 65 ++ .../kvm/tests/migration_with_file_transfer.py |6 +-

[PATCH 3/3][Autotest][virt] virt.virt_utils: Add framework for multihost migration.

2012-03-19 Thread Jiří Župka
Multihost migration framework makes multi host migration guest with load easy. This patch also replaces old tests for multihost migration with version which using the framework. Multihost miration framework take care about: - preparing environment before migration - preparing guest for

[PATCH 5/5] qemu-kvm: i8254: Reorganize i8254-kvm code

2012-03-19 Thread Jan Kiszka
Include i8254-kvm.c instead of building it as a separate module. This allows to reduce the diff to upstream and will help with merging the latter. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- Makefile.target |1 - hw/i8254-kvm.c | 12 hw/i8254.c | 43

[PATCH 2/5] qemu-kvm: i8254: Reset broken pit_load_old to upstream version

2012-03-19 Thread Jan Kiszka
pit_load_old is only called with version_id == 1, but PIT_SAVEVM_VERSION is 2. So this function is broken in qemu_kvm for ages, and also the dummy qemu_get_be32 is pointless. Revert to upstream. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- hw/i8254.c |3 +-- 1 files changed, 1

[PATCH 3/5] qemu-kvm: i8254: Revert pit_load_count to upstream version

2012-03-19 Thread Jan Kiszka
pit_irq_timer_update now checks generically if a channel IRQ is disabled, so we can drop the hacks from qemu-kvm. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- hw/i8254.c | 19 +++ 1 files changed, 7 insertions(+), 12 deletions(-) diff --git a/hw/i8254.c b/hw/i8254.c

[PATCH 4/5] qemu-kvm: i8254: Drop bogus irq_disabled clearing in pit_reset

2012-03-19 Thread Jan Kiszka
The IRQ output line is reset along with the HPET (via signaling a new state on the corresponding GPIO line), not the PIT itself. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- hw/i8254.c |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/hw/i8254.c b/hw/i8254.c

[PATCH 1/5] qemu-kvm: i8254/pcspk: Remove unused bits to make PC speaker kvm-aware

2012-03-19 Thread Jan Kiszka
Due to old-style-only creation of the in-kernel PIT (became broken long ago during refactorings), the kernel always handled the speaker port in qemu-kvm for a long while. Thus all bits that try to make the user space speaker emulating kvm-aware are actually unused. Upstream will come with

[PATCH 0/5] qemu-kvm: Prepare kvm PIT for upstream merge

2012-03-19 Thread Jan Kiszka
Some preparation patches to arrange qemu-kvm for merging in latest qemu with its own in-kernel PIT support. Later on, we can switch to that version without losing features on the way, even just temporarily. Jan Kiszka (5): qemu-kvm: i8254/pcspk: Remove unused bits to make PC speaker

Re: [PATCH] pci-assign: Fall back to host-side MSI if INTx sharing fails

2012-03-19 Thread Alex Williamson
On Mon, 2012-03-19 at 10:56 +0100, Jan Kiszka wrote: If the host or the device does not support INTx sharing, retry the IRQ assignment with host-side MSI support enabled but warn about potential consequences. This allows to preserve the previous behavior where we defaulted to MSI and did not

[PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Michael S. Tsirkin
Currently virtio-pci is specified so that configuration of the device is done through a PCI IO space (via BAR 0 of the virtual PCI device). However, Linux guests happen to use ioread/iowrite/iomap primitives for access, and these work uniformly across memory/io BARs. While PCI IO accesses are

Re: PATCH: nVMX: Better MSR_IA32_FEATURE_CONTROL handling

2012-03-19 Thread Nadav Har'El
Hi, in a minute I'll send a new version of the MSR_IA32_FEATURE_CONTROL patch for nested VMX; I just wanted to reply first to your comments so you'll know what to expect: On Wed, Mar 07, 2012, Avi Kivity wrote about Re: PATCH: nVMX: Better MSR_IA32_FEATURE_CONTROL handling: On 03/07/2012 05:58

[PATCH] qemu-kvm: Drop installation of self-built optionroms

2012-03-19 Thread Jan Kiszka
All corresponding binaries are now in pc-bios, so we can remove this diff to upstream. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- Makefile |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 908954c..1bc3cb0 100644 --- a/Makefile +++

Re: PATCH: nVMX: Better MSR_IA32_FEATURE_CONTROL handling

2012-03-19 Thread Nadav Har'El
The existing code emulated the guest's use of the IA32_FEATURE_CONTROL MSR in a way that was enough to run nested VMX guests, but did not fully conform to the VMX specification, and in particular did not allow a guest BIOS to prevent the guest OS from using VMX by setting the lock bit on this MSR.

Re: [RFC 2/2] kvm: guest-side changes for tmem on KVM

2012-03-19 Thread Konrad Rzeszutek Wilk
On Fri, Mar 16, 2012 at 10:30:35AM +0530, Akshay Karle wrote: +/* kvm tmem foundation ops/hypercalls */ + +static inline int kvm_tmem_op(u32 tmem_cmd, u32 tmem_pool, struct tmem_oid oid, + u32 index, u32 tmem_offset, u32 pfn_offset, unsigned long pfn, u32 len, uint16_t cli_id)

Re: [RFC 2/2] kvm: guest-side changes for tmem on KVM

2012-03-19 Thread Avi Kivity
On 03/19/2012 07:49 PM, Konrad Rzeszutek Wilk wrote: On Fri, Mar 16, 2012 at 10:30:35AM +0530, Akshay Karle wrote: +/* kvm tmem foundation ops/hypercalls */ + +static inline int kvm_tmem_op(u32 tmem_cmd, u32 tmem_pool, struct tmem_oid oid, +u32 index, u32 tmem_offset, u32

Re: [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Avi Kivity
On 03/19/2012 05:56 PM, Michael S. Tsirkin wrote: Currently virtio-pci is specified so that configuration of the device is done through a PCI IO space (via BAR 0 of the virtual PCI device). However, Linux guests happen to use ioread/iowrite/iomap primitives for access, and these work uniformly

Re: [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Michael S. Tsirkin
On Mon, Mar 19, 2012 at 07:58:12PM +0200, Avi Kivity wrote: On 03/19/2012 05:56 PM, Michael S. Tsirkin wrote: Currently virtio-pci is specified so that configuration of the device is done through a PCI IO space (via BAR 0 of the virtual PCI device). However, Linux guests happen to use

Re: [Qemu-devel] [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Anthony Liguori
On 03/19/2012 10:56 AM, Michael S. Tsirkin wrote: Currently virtio-pci is specified so that configuration of the device is done through a PCI IO space (via BAR 0 of the virtual PCI device). However, Linux guests happen to use ioread/iowrite/iomap primitives for access, and these work uniformly

RE: KVM inside Oracle VM

2012-03-19 Thread Sever Apostu
-Original Message- From: Sever Apostu Sent: Sunday, March 18, 2012 10:27 PM To: kvm@vger.kernel.org Subject: KVM inside Oracle VM Hi, I'm planning on building an Oracle VM machine with KVM inside (three KVM machines inside one Oracle VM machine). The trouble is I have yet to find any

RE: KVM inside Oracle VM

2012-03-19 Thread Sever Apostu
-Original Message- From: Paolo Bonzini [mailto:pbonz...@redhat.com] Sent: Monday, March 19, 2012 10:01 PM To: Sever Apostu Cc: kvm@vger.kernel.org Subject: Re: KVM inside Oracle VM Il 19/03/2012 20:29, Sever Apostu ha scritto: Any chance anyone has any feedback about KVM installed

[PATCHv2] virtio-pci: add MMIO property

2012-03-19 Thread Michael S. Tsirkin
Currently virtio-pci is specified so that configuration of the device is done through a PCI IO space (via BAR 0 of the virtual PCI device). However, Linux guests happen to use ioread/iowrite/iomap primitives for access, and these work uniformly across memory/io BARs. While PCI IO accesses are

Re: [Qemu-devel] [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Michael S. Tsirkin
On Mon, Mar 19, 2012 at 02:19:33PM -0500, Anthony Liguori wrote: On 03/19/2012 10:56 AM, Michael S. Tsirkin wrote: Currently virtio-pci is specified so that configuration of the device is done through a PCI IO space (via BAR 0 of the virtual PCI device). However, Linux guests happen to use

Re: [Qemu-devel] [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Anthony Liguori
On 03/19/2012 03:49 PM, Michael S. Tsirkin wrote: On Mon, Mar 19, 2012 at 02:19:33PM -0500, Anthony Liguori wrote: On 03/19/2012 10:56 AM, Michael S. Tsirkin wrote: Currently virtio-pci is specified so that configuration of the device is done through a PCI IO space (via BAR 0 of the virtual

Re: [Qemu-devel] [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Michael S. Tsirkin
On Mon, Mar 19, 2012 at 04:07:45PM -0500, Anthony Liguori wrote: On 03/19/2012 03:49 PM, Michael S. Tsirkin wrote: On Mon, Mar 19, 2012 at 02:19:33PM -0500, Anthony Liguori wrote: On 03/19/2012 10:56 AM, Michael S. Tsirkin wrote: Currently virtio-pci is specified so that configuration of the

Re: [Qemu-devel] [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Michael S. Tsirkin
On Mon, Mar 19, 2012 at 04:07:45PM -0500, Anthony Liguori wrote: On 03/19/2012 03:49 PM, Michael S. Tsirkin wrote: On Mon, Mar 19, 2012 at 02:19:33PM -0500, Anthony Liguori wrote: On 03/19/2012 10:56 AM, Michael S. Tsirkin wrote: Currently virtio-pci is specified so that configuration of the

Re: [Qemu-devel] [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Anthony Liguori
On 03/19/2012 04:29 PM, Michael S. Tsirkin wrote: On Mon, Mar 19, 2012 at 04:07:45PM -0500, Anthony Liguori wrote: On 03/19/2012 03:49 PM, Michael S. Tsirkin wrote: On Mon, Mar 19, 2012 at 02:19:33PM -0500, Anthony Liguori wrote: On 03/19/2012 10:56 AM, Michael S. Tsirkin wrote: Currently

Re: [net-next PATCH v0 0/5] Series short description

2012-03-19 Thread David Miller
From: John Fastabend john.r.fastab...@intel.com Date: Sun, 18 Mar 2012 23:51:45 -0700 This series is a follow up to this thread: http://www.spinics.net/lists/netdev/msg191360.html Can the interested parties please review this series? I'm willing to apply this right now if it looks OK, but

Re: [net-next PATCH v0 5/5] ixgbe: allow RAR table to be updated in promisc mode

2012-03-19 Thread Jeff Kirsher
On Sun, 2012-03-18 at 23:52 -0700, Fastabend, John R wrote: This allows RAR table updates while in promiscuous. With SR-IOV enabled it is valuable to allow the RAR table to be updated even when in promisc mode to configure forwarding Signed-off-by: John Fastabend john.r.fastab...@intel.com

Re: [net-next PATCH v0 4/5] ixgbe: enable FDB netdevice ops

2012-03-19 Thread Jeff Kirsher
On Sun, 2012-03-18 at 23:52 -0700, Fastabend, John R wrote: Enable FDB ops on ixgbe when in SR-IOV mode. Signed-off-by: John Fastabend john.r.fastab...@intel.com --- drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 59 + 1 files changed, 59 insertions(+), 0

Re: [net-next PATCH v0 0/5] Series short description

2012-03-19 Thread Stephen Hemminger
On Mon, 19 Mar 2012 18:38:08 -0400 (EDT) David Miller da...@davemloft.net wrote: From: John Fastabend john.r.fastab...@intel.com Date: Sun, 18 Mar 2012 23:51:45 -0700 This series is a follow up to this thread: http://www.spinics.net/lists/netdev/msg191360.html Can the interested

Re: [Qemu-devel] [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Rusty Russell
On Mon, 19 Mar 2012 17:13:06 -0500, Anthony Liguori anth...@codemonkey.ws wrote: Maybe just make this a hidden option like x-miio? x-violate-the-virtio-spec-to-trick-old-linux-drivers-into-working-on-power? To configure the device, we use the first I/O region of the PCI device. Meh, it

Re: [net-next PATCH v0 0/5] Series short description

2012-03-19 Thread John Fastabend
On 3/19/2012 3:55 PM, Stephen Hemminger wrote: On Mon, 19 Mar 2012 18:38:08 -0400 (EDT) David Miller da...@davemloft.net wrote: From: John Fastabend john.r.fastab...@intel.com Date: Sun, 18 Mar 2012 23:51:45 -0700 This series is a follow up to this thread:

Re: [net-next PATCH v0 0/5] Series short description

2012-03-19 Thread David Miller
From: John Fastabend john.r.fastab...@intel.com Date: Mon, 19 Mar 2012 17:27:00 -0700 Dave, its probably fine to push this to 3.5 then. Fair enough. -- To unsubscribe from this list: send the line unsubscribe kvm in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [Qemu-devel] [PATCH RFC] virtio-pci: add MMIO property

2012-03-19 Thread Anthony Liguori
On 03/19/2012 06:52 PM, Rusty Russell wrote: On Mon, 19 Mar 2012 17:13:06 -0500, Anthony Liguorianth...@codemonkey.ws wrote: Maybe just make this a hidden option like x-miio? x-violate-the-virtio-spec-to-trick-old-linux-drivers-into-working-on-power? To configure the device, we use the

Re: [net-next PATCH v0 0/5] Series short description

2012-03-19 Thread John Fastabend
On 3/19/2012 5:35 PM, David Miller wrote: From: John Fastabend john.r.fastab...@intel.com Date: Mon, 19 Mar 2012 17:27:00 -0700 Dave, its probably fine to push this to 3.5 then. Fair enough. Stephen, please let me know if you see any issues though because without these we have no way to

Re: [net-next PATCH v0 0/5] Series short description

2012-03-19 Thread Stephen Hemminger
On Mon, 19 Mar 2012 19:49:50 -0700 John Fastabend john.r.fastab...@intel.com wrote: On 3/19/2012 5:35 PM, David Miller wrote: From: John Fastabend john.r.fastab...@intel.com Date: Mon, 19 Mar 2012 17:27:00 -0700 Dave, its probably fine to push this to 3.5 then. Fair enough.