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 B2632427F6 for ; Tue, 21 Mar 2023 10:24:32 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CCC4142D20; Tue, 21 Mar 2023 10:24:30 +0100 (CET) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by mails.dpdk.org (Postfix) with ESMTP id A8F21410D1 for ; Tue, 21 Mar 2023 10:24:28 +0100 (CET) Received: from kwepemm600004.china.huawei.com (unknown [172.30.72.54]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4PgmPz19dfz9vVy; Tue, 21 Mar 2023 17:24:07 +0800 (CST) Received: from localhost.localdomain (10.28.79.22) by kwepemm600004.china.huawei.com (7.193.23.242) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.21; Tue, 21 Mar 2023 17:24:27 +0800 From: Huisong Li To: , CC: , , , Subject: [PATCH 21.11 13/17] net/hns3: remove unused structures Date: Tue, 21 Mar 2023 17:23:02 +0800 Message-ID: <20230321092306.16918-14-lihuisong@huawei.com> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20230321092306.16918-1-lihuisong@huawei.com> References: <20230321092306.16918-1-lihuisong@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [10.28.79.22] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To kwepemm600004.china.huawei.com (7.193.23.242) X-CFilter-Loop: Reflected X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org From: Chengwen Feng [ upstream commit f5a46128fbd84a34e63d05135cf124f12eb414c5 ] Signed-off-by: Chengwen Feng Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_cmd.h | 19 ------------------- drivers/net/hns3/hns3_rss.h | 4 ---- 2 files changed, 23 deletions(-) diff --git a/drivers/net/hns3/hns3_cmd.h b/drivers/net/hns3/hns3_cmd.h index c5ca494135..ebe1a657d6 100644 --- a/drivers/net/hns3/hns3_cmd.h +++ b/drivers/net/hns3/hns3_cmd.h @@ -56,11 +56,6 @@ enum hns3_cmd_return_status { HNS3_CMD_ROH_CHECK_FAIL = 12 }; -struct hns3_misc_vector { - uint8_t *addr; - int vector_irq; -}; - struct hns3_cmq { struct hns3_cmq_ring csq; struct hns3_cmq_ring crq; @@ -394,20 +389,6 @@ struct hns3_pkt_buf_alloc { struct hns3_shared_buf s_buf; }; -#define HNS3_RX_COM_WL_EN_B 15 -struct hns3_rx_com_wl_buf_cmd { - uint16_t high_wl; - uint16_t low_wl; - uint8_t rsv[20]; -}; - -#define HNS3_RX_PKT_EN_B 15 -struct hns3_rx_pkt_buf_cmd { - uint16_t high_pkt; - uint16_t low_pkt; - uint8_t rsv[20]; -}; - #define HNS3_PF_STATE_DONE_B 0 #define HNS3_PF_STATE_MAIN_B 1 #define HNS3_PF_STATE_BOND_B 2 diff --git a/drivers/net/hns3/hns3_rss.h b/drivers/net/hns3/hns3_rss.h index 48c535ed3f..63b1d0d944 100644 --- a/drivers/net/hns3/hns3_rss.h +++ b/drivers/net/hns3/hns3_rss.h @@ -36,10 +36,6 @@ #define HNS3_RSS_HASH_ALGO_SYMMETRIC_TOEP 2 #define HNS3_RSS_HASH_ALGO_MASK 0xf -struct hns3_rss_tuple_cfg { - uint64_t rss_tuple_fields; -}; - #define HNS3_RSS_QUEUES_BUFFER_NUM 64 /* Same as the Max rx/tx queue num */ struct hns3_rss_conf { /* RSS parameters :algorithm, flow_types, key, queue */ -- 2.22.0