From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 54EA5A0032; Fri, 1 Oct 2021 18:33:20 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 308564121E; Fri, 1 Oct 2021 18:33:15 +0200 (CEST) Received: from mail-lf1-f43.google.com (mail-lf1-f43.google.com [209.85.167.43]) by mails.dpdk.org (Postfix) with ESMTP id 9F3BB4121C for ; Fri, 1 Oct 2021 18:33:13 +0200 (CEST) Received: by mail-lf1-f43.google.com with SMTP id y23so1663498lfb.0 for ; Fri, 01 Oct 2021 09:33:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=tdnVKJwY3K7UwNBlsHumVYE+iGUsiUsCiG/p2SfqACc=; b=TbncjF5QOymyfY4V1cQVdhDoyP58EMfw4Sm8yIF3heTLVXewXl42Az9VicZIs1Tl0E clYJUug246exTD6X7F+lUpeSM+AXUDWiNGPlmyYll3T1Y83iX0DGzMxUSv9Vt1hGoQlA Ch5iWe1b/pqV4FzZ2/CRYvMiFBMyVM2I/rhaWurDwyEE2u5RoPKuQxd2VQ4jrraSxDJt KOWuE6ujx9GZAdUXz+92iSApzgvUwcXYcX8c84OI6/3wk/bGyyGJ6yjk4IV8b90yCjj4 xApLyOhKjVAJ+SAFpQj4mThKfixYEM3MSW75yEL2+vMnirHY/9h6t5svvnqc7lodBKOP yc1A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=tdnVKJwY3K7UwNBlsHumVYE+iGUsiUsCiG/p2SfqACc=; b=AWazWWLDx7i9iMAWqCVG3GuYXF9PEBnxqkhlZqe19oXgw8E5XtifKRL1zhoovZMlVE WFhpJVZ5nLT8HtlnKKw7luwOy0yiwt6d/zz8a+DlxMRWL9h9OHzL43BJtqW42c4vJDsO gAyEH8JI3lIsmkEDQlnMqDQtSy5KekMuoZRrZ3yskpdYnLrbQPe8stRLWtzVg/Wv7EVz Ct51ITIvGB1nmoVKR7FtyEv0isd9Vd8S9e84PjF0ISVtflloa/KSq9+241XeQC0IoQhh l1rlXMfmWb9GScynFU+pQHlUKUBileZWctKVI1CGol7li/U1aerJlpsznAQva3TL4aWa 0hsA== X-Gm-Message-State: AOAM533OodtPiC+2Hk1fv51K04KmMkaLiZ4mMqShrdiWPFTi6K3qclHS yyoEA6k/yRk3wfxBEZUnALRwVdaqZNSK6Q== X-Google-Smtp-Source: ABdhPJzoMO4TcTfjfu8aTJodi+Rtuwr93ERIvXyCXBPDGDVEu4rneJMSIqfxBzShEhZHBhnsLP8k/g== X-Received: by 2002:a2e:1404:: with SMTP id u4mr12882299ljd.269.1633105993170; Fri, 01 Oct 2021 09:33:13 -0700 (PDT) Received: from sovereign.. (broadband-37-110-65-23.ip.moscow.rt.ru. [37.110.65.23]) by smtp.gmail.com with ESMTPSA id a7sm708903ljj.50.2021.10.01.09.33.12 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 01 Oct 2021 09:33:12 -0700 (PDT) From: Dmitry Kozlyuk To: dev@dpdk.org Cc: Dmitry Kozlyuk , Akhil Goyal , Ashish Gupta , Declan Doherty , Fiona Trahe , Khoa To , Narcisa Ana Maria Vasile , Thomas Monjalon , Tyler Retzlaff Date: Fri, 1 Oct 2021 19:33:06 +0300 Message-Id: <20211001163306.76538-3-dmitry.kozliuk@gmail.com> X-Mailer: git-send-email 2.29.3 In-Reply-To: <20211001163306.76538-1-dmitry.kozliuk@gmail.com> References: <20210915214052.143098-1-dmitry.kozliuk@gmail.com> <20211001163306.76538-1-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2 2/2] doc: remove unneeded deprecations X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" It was announced that `min` and `max` fields and variables in public headers will be renamed to avoid clash with `min` and `max` macros defined in Windows headers. However, it is unnecessary, because these are function-like macros, which are not expanded unless the next token is an opening brace. It cannot happen for integer fields and variables. Remove the deprecation notices. Fixes: c4379ee599ef ("doc: announce API changes for Windows compatibility") Signed-off-by: Dmitry Kozlyuk --- doc/guides/rel_notes/deprecation.rst | 6 ------ 1 file changed, 6 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 918ea3f403..b9e77f6153 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -193,12 +193,6 @@ Deprecation Notices and ``rte_vhost_driver_set_protocol_features`` functions will be removed and the API functions will be made stable in DPDK 21.11. -* compressdev: ``min`` and ``max`` fields of ``rte_param_log2_range`` structure - will be renamed in DPDK 21.11 to avoid conflict with Windows Sockets headers. - -* cryptodev: ``min`` and ``max`` fields of ``rte_crypto_param_range`` structure - will be renamed in DPDK 21.11 to avoid conflict with Windows Sockets headers. - * cryptodev: The field ``dataunit_len`` of the ``struct rte_crypto_cipher_xform`` has a limited size ``uint16_t``. It will be moved and extended as ``uint32_t`` in DPDK 21.11. -- 2.29.3