From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id E702F8E7D for ; Mon, 12 Oct 2015 10:10:36 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP; 12 Oct 2015 01:10:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,671,1437462000"; d="scan'208";a="824750375" Received: from irsmsx151.ger.corp.intel.com ([163.33.192.59]) by fmsmga002.fm.intel.com with ESMTP; 12 Oct 2015 01:10:34 -0700 Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by IRSMSX151.ger.corp.intel.com (163.33.192.59) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 12 Oct 2015 09:10:33 +0100 Received: from irsmsx102.ger.corp.intel.com ([169.254.2.98]) by irsmsx155.ger.corp.intel.com ([169.254.14.242]) with mapi id 14.03.0248.002; Mon, 12 Oct 2015 09:10:33 +0100 From: "Azarewicz, PiotrX T" To: Thomas Monjalon Thread-Topic: [dpdk-dev] [PATCH v2 2/5] pipeline: added bulk add/delete functions for table Thread-Index: AQHRAb6NH/VU1KNXKE67oVj88y+bQJ5nhb+A Date: Mon, 12 Oct 2015 08:10:33 +0000 Message-ID: <4837007523CC9A4B9414D20C13DE6E6413627B19@IRSMSX102.ger.corp.intel.com> References: <1441967499-21255-1-git-send-email-maciejx.t.gajdzica@intel.com> <1441967499-21255-3-git-send-email-maciejx.t.gajdzica@intel.com> <37034077.SclJjAr06D@xps13> In-Reply-To: <37034077.SclJjAr06D@xps13> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH v2 2/5] pipeline: added bulk add/delete functions for table X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Oct 2015 08:10:37 -0000 Hi Thomas, > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Thomas Monjalon > Sent: Thursday, October 8, 2015 1:42 PM > To: Gajdzica, MaciejX T > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 2/5] pipeline: added bulk add/delete > functions for table >=20 > 2015-09-11 12:31, Maciej Gajdzica: > > +/** > > + * Pipeline table entry delete bulk > > + * > > + * @param p > > + * Handle to pipeline instance > > + * @param table_id > > + * Table ID (returned by previous invocation of pipeline table creat= e) > > + * @param keys > > + * Array containing table entry keys > > + * @param key_found > > + * On successful invocation, key_found for every item in the array i= s set > to > > + * TRUE (value different than 0) if key was found in the table befor= e the > > + * delete operation and to FALSE (value 0) if not > > + * @param entries > > + * If entries pointer is NULL, this pointer is ignored for every ent= ry found. > > + * Else, after successful invocation, if specific key is found in th= e table > > + * and entry points to a valid buffer, the table entry contents (as = it was > > + * before the delete was performed) is copied to this buffer. > > + * @return > > + * 0 on success, error code otherwise > > + */ > > +int rte_pipeline_table_entry_delete_bulk(struct rte_pipeline *p, > > + uint32_t table_id, > > + void **keys, > > + uint32_t n_keys, > > + int *key_found, > > + struct rte_pipeline_table_entry **entries); >=20 > The parameter n_keys is not documented. > Doxygen is reporting the error. Thanks for the finding. Piotr