From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 7A479DE3 for ; Tue, 22 Jan 2019 06:46:06 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Jan 2019 21:45:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,505,1539673200"; d="scan'208";a="312308870" Received: from unknown (HELO broadwell-dev-4.localdomain) ([10.224.122.193]) by fmsmga006.fm.intel.com with ESMTP; 21 Jan 2019 21:45:55 -0800 From: Nikhil Rao To: nhorman@tuxdriver.com Cc: harry.van.haaren@intel.com, dev@dpdk.org, Nikhil Rao Date: Tue, 22 Jan 2019 11:14:26 +0530 Message-Id: <1548135866-98665-1-git-send-email-nikhil.rao@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH] doc: announce change of rte service API parameter type X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jan 2019 05:46:06 -0000 rte_service_attr_get() is passed a uint32_t * to retrieve an attribute value, this will be changed to uin64_t * as per patch posted at http://patchwork.dpdk.org/patch/49968/ Signed-off-by: Nikhil Rao --- doc/guides/rel_notes/deprecation.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index f9a1f81..398e967 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -60,3 +60,6 @@ Deprecation Notices * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be changed from 0.49.0 to 0.52.0. + +* The attr_value parameter of rte_service_attr_get() will be changed from + uint32_t * to uint64_t * as the attributes are of type uint64_t. -- 1.8.3.1