From patchwork Mon Dec 11 16:52:37 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 135027 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 18F0A43433; Mon, 11 Dec 2023 17:52:51 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8858342686; Mon, 11 Dec 2023 17:52:50 +0100 (CET) Received: from mail-pf1-f175.google.com (mail-pf1-f175.google.com [209.85.210.175]) by mails.dpdk.org (Postfix) with ESMTP id 2686142670 for ; Mon, 11 Dec 2023 17:52:49 +0100 (CET) Received: by mail-pf1-f175.google.com with SMTP id d2e1a72fcca58-6cea0fd9b53so2804430b3a.1 for ; Mon, 11 Dec 2023 08:52:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20230601.gappssmtp.com; s=20230601; t=1702313568; x=1702918368; darn=dpdk.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=NWJWqDU+mYuI734AXsbxTDTL0k5RDAoSV/cqf5j2p2o=; b=cgRGuGdqrceDDHi8vXGT+kAd4HzZxt1N0hKpb1fuwEmTcxSIKDYhLOjcrPB3VNC2b4 HNHpd2UtCU/TUtqO1JoCqkgHlLHwPVbWJuVTa8GZDl0EIg4Oarkv9FEnI81UzRLo+36n L/B7EuyJoSY5TQAqIKIIGw6s5x1mvTM4ijoGzKLhu5sDspDa7LqBAYIEJUWr+eom41C0 chgicp0g86JeV+vcz+AXhIMVjhhOABdlfhzyGoXM5WqajEOo1XkPH+cWDrTqlna2PKYw 07IB8JRSlNx4nhhg6iyPdv2MeDJ8Cm+dV5p1HXhuEy96EHi9XCJSwrjL8Lj44ZX3SU1n 70KQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1702313568; x=1702918368; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=NWJWqDU+mYuI734AXsbxTDTL0k5RDAoSV/cqf5j2p2o=; b=be5X+mbNOkd/Ym8IjooEeWEXOGvEXU1MJx++fv8eAlnpnLVQGJiK4IjD/ZtlD5rl1z Di5R8gsOHExdQz6ONX6dHvPEOxHDK+abCR7jKfoJXgaG55WQqy+uJI0/r51MDH+8cyh2 UqR8vpEjkkZ9LvCBJTUiEYyW+sQYOYWTjB3dfCht/oXmfejx6UDBR+QU3fCvaGANtvhj RhXRpiPW7qOVeWsZrmlIq6G/JMq9TH2ekmy5qBvpl5tfruhO1AB62eFzPxRK0pazYuZj PB043LXZhUEjgUoQsiHCMCGQx211kit2ZcFz1TEJ6qEZzrzpecOU+IiYTI55rONH6brR DYmQ== X-Gm-Message-State: AOJu0Yz8RAneyAG5bowa06Bv9k7RQ0/VS+ftfXO+G4PI52iyqvmNG6Qi JKkC6iDqMM5rZ/XH2Hh1HEBMIxMdFV89FQzHok3Zcw== X-Google-Smtp-Source: AGHT+IFCJVyPchs8Oiix5U3b0qd1kaIe6t+hkOUur+3Y7N+5TedFK/Jo+Zbafci5CmHihD+rnKiHPA== X-Received: by 2002:a05:6a00:460b:b0:68e:3eab:9e18 with SMTP id ko11-20020a056a00460b00b0068e3eab9e18mr2636610pfb.12.1702313568071; Mon, 11 Dec 2023 08:52:48 -0800 (PST) Received: from hermes.local (204-195-123-141.wavecable.com. [204.195.123.141]) by smtp.gmail.com with ESMTPSA id y33-20020a056a00182100b006cc02a6d18asm6548940pfa.61.2023.12.11.08.52.47 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 11 Dec 2023 08:52:47 -0800 (PST) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Subject: [PATCH] doc: remove cmdline_poll deprecation notice Date: Mon, 11 Dec 2023 08:52:37 -0800 Message-ID: <20231211165237.8450-1-stephen@networkplumber.org> X-Mailer: git-send-email 2.42.0 MIME-Version: 1.0 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 cmdline_poll has been removed by: commit f44f2edd198a ("cmdline: remove poll function") but deprecation notice was left behind. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson Acked-by: Bruce Richardson --- doc/guides/rel_notes/deprecation.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 81b93515cbd9..10630ba25564 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -27,10 +27,6 @@ Deprecation Notices * kvargs: The function ``rte_kvargs_process`` will get a new parameter for returning key match count. It will ease handling of no-match case. -* cmdline: The function ``cmdline_poll`` does not work correctly on either - Linux or Windows and is unused by any part of DPDK. - This function is now deprecated and will be removed in DPDK 23.11. - * telemetry: The functions ``rte_tel_data_add_array_u64`` and ``rte_tel_data_add_dict_u64``, used by telemetry callbacks for adding unsigned integer values to be returned to the user, are renamed to ``rte_tel_data_add_array_uint`` and ``rte_tel_data_add_dict_uint`` respectively.