From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4C203A0518; Sun, 2 Aug 2020 12:51:51 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9993B2E8F; Sun, 2 Aug 2020 12:51:50 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 3573A2952 for ; Sun, 2 Aug 2020 12:51:49 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 072ApKlB010216; Sun, 2 Aug 2020 03:51:46 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=GLKBoEnu4zb9ZFawBjFHj6SLp11iZLDYHHGrw4fbLQI=; b=C5tg9wHVu9M6uyLT/03uUvNIQkKnSQ7duSMmJTF16Qpgn+/ZQ6+4wImva98M+DIPH/LR X1J4B4vHFNjAUZ20HkwHXAKr09TL2WSdsgs2EHLsptJBgwiVod0dzh/MgPK0kvuYTWoK BKvBo3MVzyRVA1AaIcz3H9ykvnn7U8RLSLQX+WPbCnE5EM0CgH+ZyCwNChZNgyOt46QK MpnoxM1SN+jv5AtOwItePy8c8uxLEQbULGIt8SlB18slaouXXWP52IXcTo/F0x3AYAdj TIeCqbmY+bY+/fIfIvXQLXEFjS1j+rMAGaqnapgdoSUyaiNXnYMdeGSeOW0GUBl/5nNo qw== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0b-0016f401.pphosted.com with ESMTP id 32n8fejphm-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Sun, 02 Aug 2020 03:51:46 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Sun, 2 Aug 2020 03:51:44 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Sun, 2 Aug 2020 03:51:43 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Sun, 2 Aug 2020 03:51:43 -0700 Received: from BG-LT7430.marvell.com (BG-LT7430.marvell.com [10.28.161.240]) by maili.marvell.com (Postfix) with ESMTP id 150D93F703F; Sun, 2 Aug 2020 03:51:40 -0700 (PDT) From: To: , Ray Kinsella , Neil Horman , John McNamara , "Marko Kovacevic" CC: , Pavan Nikhilesh Date: Sun, 2 Aug 2020 16:21:37 +0530 Message-ID: <20200802105137.1666-1-pbhagavatula@marvell.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.235, 18.0.687 definitions=2020-08-02_06:2020-07-31, 2020-08-02 signatures=0 Subject: [dpdk-dev] [PATCH] doc: announce changes to eventdev public structures 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Pavan Nikhilesh Add 64 byte padding at the end of event device public structure to allow future extensions. Signed-off-by: Pavan Nikhilesh --- http://patches.dpdk.org/project/dpdk/list/?series=10728&state=* doc/guides/rel_notes/deprecation.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index ea4cfa7a4..37c7c9029 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -151,3 +151,12 @@ Deprecation Notices Python 2 support will be completely removed in 20.11. In 20.08, explicit deprecation warnings will be displayed when running scripts with Python 2. + +* eventdev: A 64 byte padding is added at the end of the following structures + in event device library to support future extensions: + ``rte_event_crypto_adapter_conf``, ``rte_event_eth_rx_adapter_conf``, + ``rte_event_eth_rx_adapter_queue_conf``, ``rte_event_eth_tx_adapter_conf``, + ``rte_event_timer_adapter_conf``, ``rte_event_timer_adapter_info``, + ``rte_event_dev_info``, ``rte_event_dev_config``, ``rte_event_queue_conf``, + ``rte_event_port_conf``, ``rte_event_timer_adapter``, + ``rte_event_timer_adapter_data``. -- 2.17.1