Hi Thomas, > -----Original Message----- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > Sent: Thursday, October 8, 2015 1:42 PM > To: Gajdzica, MaciejX T > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 2/5] pipeline: added bulk add/delete > functions for table > > 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 create) > > + * @param keys > > + * Array containing table entry keys > > + * @param key_found > > + * On successful invocation, key_found for every item in the array is set > to > > + * TRUE (value different than 0) if key was found in the table before the > > + * delete operation and to FALSE (value 0) if not > > + * @param entries > > + * If entries pointer is NULL, this pointer is ignored for every entry > > found. > > + * Else, after successful invocation, if specific key is found in the > > 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); > > The parameter n_keys is not documented. > Doxygen is reporting the error.
Thanks for the finding. Piotr