From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by dpdk.org (Postfix) with ESMTP id 9C1B35A55 for ; Thu, 8 Oct 2015 13:43:05 +0200 (CEST) Received: by wicge5 with SMTP id ge5so21675157wic.0 for ; Thu, 08 Oct 2015 04:43:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=QB2Tj9KiXUNC9j6DkE6wkyXOHzIeOeSXK7/1UhaAuJA=; b=eCd/5jbIjEkkYZgt6bfubEToOYqq0OCxnwWZwNo5ShddGaG0zVfgP9m2hwaqSt4+au 6zT8lqPbLGgqBHFCtFofxEB1ncnhfZD/yzCg25hq+d4g4bnWE6CvlV5TmbevekBZ+hGO P9Jj8R+eL0/u/BJg20djlQ3ZjNwnjwzKS5e/OY+Jp/8vNCMY746Deb+WGmGR9WNi2oY/ r0lAwc11BWwCXXZIqfnjFG0OesHB+nL53RSXpsqhPqYdqPhboSAVV/yFD6PNONQCv5y0 mXbsGFm9HqgThTwt5O+86+ZpMQQZREb6htycW498SENNUCf0UNCbAgGIqKbyXMpjYwpM 5tDA== X-Gm-Message-State: ALoCoQmP3QLdTbFprvyxBHnBcSCBjV0o1Za9Iiqp3/WDHYP3vjg9F1dsDVklu8TuVv4s28cl7jMd X-Received: by 10.194.235.6 with SMTP id ui6mr8496392wjc.92.1444304585402; Thu, 08 Oct 2015 04:43:05 -0700 (PDT) Received: from xps13.localnet ([80.215.154.160]) by smtp.gmail.com with ESMTPSA id hx4sm45660226wjb.31.2015.10.08.04.43.04 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 08 Oct 2015 04:43:04 -0700 (PDT) From: Thomas Monjalon To: Maciej Gajdzica Date: Thu, 08 Oct 2015 13:41:57 +0200 Message-ID: <37034077.SclJjAr06D@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1441967499-21255-3-git-send-email-maciejx.t.gajdzica@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> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Thu, 08 Oct 2015 11:43:05 -0000 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.