From patchwork Thu Nov 23 13:59:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "lihuisong (C)" X-Patchwork-Id: 134562 X-Patchwork-Delegate: thomas@monjalon.net 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 36A1A433AB; Thu, 23 Nov 2023 14:59:16 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D989742F76; Thu, 23 Nov 2023 14:59:15 +0100 (CET) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id E996C42F17 for ; Thu, 23 Nov 2023 14:59:14 +0100 (CET) Received: from kwepemm000004.china.huawei.com (unknown [172.30.72.54]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4Sbfpv265NzvQwg; Thu, 23 Nov 2023 21:58:47 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by kwepemm000004.china.huawei.com (7.193.23.18) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.35; Thu, 23 Nov 2023 21:59:12 +0800 From: Huisong Li To: , , , Changchun Ouyang CC: , Subject: [PATCH 2/5] doc/features: add link up/down feature Date: Thu, 23 Nov 2023 21:59:13 +0800 Message-ID: <20231123135916.33315-3-lihuisong@huawei.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20231123135916.33315-1-lihuisong@huawei.com> References: <20231123135916.33315-1-lihuisong@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.69.192.56] X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To kwepemm000004.china.huawei.com (7.193.23.18) X-CFilter-Loop: Reflected 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 Add link up/down feature for features.rst. Fixes: 915e67837586 ("ethdev: API for link up and down") Cc: stable@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/guides/nics/features.rst b/doc/guides/nics/features.rst index dfa6f087c8..1c0cf2cea7 100644 --- a/doc/guides/nics/features.rst +++ b/doc/guides/nics/features.rst @@ -41,10 +41,13 @@ Link status Supports getting the link speed, duplex mode and link state (up/down). -* **[implements] eth_dev_ops**: ``link_update``. +* **[implements] eth_dev_ops**: ``link_update``, ``dev_set_link_up``, ``dev_set_link_down``. * **[implements] rte_eth_dev_data**: ``dev_link``. * **[related] API**: ``rte_eth_link_get()``, ``rte_eth_link_get_nowait()``. +Set link up/down an Ethernet device. + +* **[related] API**: ``rte_eth_dev_set_link_up()``, ``rte_eth_dev_set_link_down()``. .. _nic_features_link_status_event: