From patchwork Fri Nov 11 13:02:51 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krishna Kumar X-Patchwork-Id: 125167 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id B69AD1007D4 for ; Sat, 12 Nov 2011 00:05:25 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757720Ab1KKNFS (ORCPT ); Fri, 11 Nov 2011 08:05:18 -0500 Received: from e23smtp08.au.ibm.com ([202.81.31.141]:44196 "EHLO e23smtp08.au.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757599Ab1KKNFR (ORCPT ); Fri, 11 Nov 2011 08:05:17 -0500 Received: from /spool/local by e23smtp08.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 11 Nov 2011 13:03:46 +1000 Received: from d23relay05.au.ibm.com ([202.81.31.247]) by e23smtp08.au.ibm.com ([202.81.31.205]) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Fri, 11 Nov 2011 13:03:26 +1000 Received: from d23av01.au.ibm.com (d23av01.au.ibm.com [9.190.234.96]) by d23relay05.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id pABD0Kfb544956; Sat, 12 Nov 2011 00:00:36 +1100 Received: from d23av01.au.ibm.com (loopback [127.0.0.1]) by d23av01.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id pABD396s007184; Sat, 12 Nov 2011 00:03:11 +1100 Received: from krkumar2.in.ibm.com ([9.124.214.183]) by d23av01.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id pABD34mX005941; Sat, 12 Nov 2011 00:03:06 +1100 From: Krishna Kumar To: rusty@rustcorp.com.au, mst@redhat.com Cc: netdev@vger.kernel.org, Krishna Kumar , davem@davemloft.net, kvm@vger.kernel.org, virtualization@lists.linux-foundation.org Date: Fri, 11 Nov 2011 18:32:51 +0530 Message-Id: <20111111130251.9878.41799.sendpatchset@krkumar2.in.ibm.com> In-Reply-To: <20111111130223.9878.59517.sendpatchset@krkumar2.in.ibm.com> References: <20111111130223.9878.59517.sendpatchset@krkumar2.in.ibm.com> Subject: [RFC] [ver3 PATCH 1/6] virtio_net: Introduce VIRTIO_NET_F_MULTIQUEUE x-cbid: 11111103-5140-0000-0000-00000037077C Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Introduce VIRTIO_NET_F_MULTIQUEUE. Signed-off-by: krkumar2@in.ibm.com --- include/linux/virtio_net.h | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff -ruNp org/include/linux/virtio_net.h new/include/linux/virtio_net.h --- org/include/linux/virtio_net.h 2011-10-12 10:16:46.000000000 +0530 +++ new/include/linux/virtio_net.h 2011-11-11 16:44:34.000000000 +0530 @@ -49,6 +49,7 @@ #define VIRTIO_NET_F_CTRL_RX 18 /* Control channel RX mode support */ #define VIRTIO_NET_F_CTRL_VLAN 19 /* Control channel VLAN filtering */ #define VIRTIO_NET_F_CTRL_RX_EXTRA 20 /* Extra RX mode control support */ +#define VIRTIO_NET_F_MULTIQUEUE 21 /* Device supports multiple TXQ/RXQ */ #define VIRTIO_NET_S_LINK_UP 1 /* Link is up */