From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <cunming.liang@intel.com>
Received: from mga09.intel.com (mga09.intel.com [134.134.136.24])
 by dpdk.org (Postfix) with ESMTP id 7A7729E5
 for <dev@dpdk.org>; Fri, 17 Jul 2015 07:28:08 +0200 (CEST)
Received: from orsmga001.jf.intel.com ([10.7.209.18])
 by orsmga102.jf.intel.com with ESMTP; 16 Jul 2015 22:28:07 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.15,493,1432623600"; d="scan'208";a="730548000"
Received: from kmsmsx153.gar.corp.intel.com ([172.21.73.88])
 by orsmga001.jf.intel.com with ESMTP; 16 Jul 2015 22:28:06 -0700
Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by
 KMSMSX153.gar.corp.intel.com (172.21.73.88) with Microsoft SMTP Server (TLS)
 id 14.3.224.2; Fri, 17 Jul 2015 13:27:32 +0800
Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.165]) by
 SHSMSX151.ccr.corp.intel.com ([169.254.3.157]) with mapi id 14.03.0224.002;
 Fri, 17 Jul 2015 13:27:31 +0800
From: "Liang, Cunming" <cunming.liang@intel.com>
To: Thomas Monjalon <thomas.monjalon@6wind.com>
Thread-Topic: [PATCH v13 01/14] eal/linux: add interrupt vectors support in
 intr_handle
Thread-Index: AQHQqkSRjvkkNGygUUiSAmMynZhywJ3ZOr2AgAYS1dA=
Date: Fri, 17 Jul 2015 05:27:30 +0000
Message-ID: <D0158A423229094DA7ABF71CF2FA0DA31198BD23@shsmsx102.ccr.corp.intel.com>
References: <1433741351-27005-1-git-send-email-cunming.liang@intel.com>
 <1434686442-578-1-git-send-email-cunming.liang@intel.com>
 <1434686442-578-2-git-send-email-cunming.liang@intel.com>
 <1881618.vttW1Sk9zA@xps13>
In-Reply-To: <1881618.vttW1Sk9zA@xps13>
Accept-Language: zh-CN, en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
x-originating-ip: [10.239.127.40]
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Cc: "shemming@brocade.com" <shemming@brocade.com>,
 "dev@dpdk.org" <dev@dpdk.org>, "Wang, 
 Liang-min" <liang-min.wang@intel.com>
Subject: Re: [dpdk-dev] [PATCH v13 01/14] eal/linux: add interrupt vectors
 support in intr_handle
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 17 Jul 2015 05:28:09 -0000



> -----Original Message-----
> From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com]
> Sent: Tuesday, July 14, 2015 12:41 AM
> To: Liang, Cunming
> Cc: dev@dpdk.org; shemming@brocade.com; david.marchand@6wind.com;
> Zhou, Danny; Wang, Liang-min; Richardson, Bruce; Liu, Yong;
> nhorman@tuxdriver.com
> Subject: Re: [PATCH v13 01/14] eal/linux: add interrupt vectors support i=
n
> intr_handle
>=20
> 2015-06-19 12:00, Cunming Liang:
> > @@ -58,6 +60,10 @@ struct rte_intr_handle {
> >  	};
> >  	int fd;	 /**< interrupt event file descriptor */
> >  	enum rte_intr_handle_type type;  /**< handle type */
> > +	uint32_t max_intr;               /**< max interrupt requested */
> > +	uint32_t nb_efd;                 /**< number of available efds */
> > +	int efds[RTE_MAX_RXTX_INTR_VEC_ID];  /**< intr vectors/efds mapping
> */
>=20
> efd is not defined in these comments.
>=20
Will expand abbreviation in comments, thanks.