Re: [PATCHv3] virtio-spec: virtio network device multiqueue support

2012-09-09 Thread Michael S. Tsirkin
On Fri, Sep 07, 2012 at 02:17:08AM +0200, Sasha Levin wrote: > Hi Michael, > > On 09/06/2012 02:08 PM, Michael S. Tsirkin wrote: > > Add multiqueue support to virtio network device. > > Add a new feature flag VIRTIO_NET_F_MULTIQUEUE for this feature, a new > > configuration field max_virtqueue_pai

Re: [PATCHv3] virtio-spec: virtio network device multiqueue support

2012-09-06 Thread Michael S. Tsirkin
On Fri, Sep 07, 2012 at 02:17:08AM +0200, Sasha Levin wrote: > Hi Michael, > > On 09/06/2012 02:08 PM, Michael S. Tsirkin wrote: > > Add multiqueue support to virtio network device. > > Add a new feature flag VIRTIO_NET_F_MULTIQUEUE for this feature, a new > > configuration field max_virtqueue_pai

Re: [PATCHv3] virtio-spec: virtio network device multiqueue support

2012-09-06 Thread Sasha Levin
Hi Michael, On 09/06/2012 02:08 PM, Michael S. Tsirkin wrote: > Add multiqueue support to virtio network device. > Add a new feature flag VIRTIO_NET_F_MULTIQUEUE for this feature, a new > configuration field max_virtqueue_pairs to detect supported number of > virtqueues as well as a new command VI

Re: [PATCHv3] virtio-spec: virtio network device multiqueue support

2012-09-06 Thread Michael S. Tsirkin
On Thu, Sep 06, 2012 at 06:43:36PM +0200, Paolo Bonzini wrote: > Il 06/09/2012 14:08, Michael S. Tsirkin ha scritto: > > +#define VIRTIO_NET_CTRL_STEERING_HOST 1 > > You didn't change this occurrence. Good catch, thanks! -- To unsubscribe from this list: send the line "unsubscribe kvm" in the bo

Re: [PATCHv3] virtio-spec: virtio network device multiqueue support

2012-09-06 Thread Paolo Bonzini
Il 06/09/2012 14:08, Michael S. Tsirkin ha scritto: > +#define VIRTIO_NET_CTRL_STEERING_HOST 1 You didn't change this occurrence. Paolo -- 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 http://vger.kern

[PATCHv3] virtio-spec: virtio network device multiqueue support

2012-09-06 Thread Michael S. Tsirkin
Add multiqueue support to virtio network device. Add a new feature flag VIRTIO_NET_F_MULTIQUEUE for this feature, a new configuration field max_virtqueue_pairs to detect supported number of virtqueues as well as a new command VIRTIO_NET_CTRL_STEERING to program packet steering. Signed-off-by: Mich