lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 24 Sep 2022 10:30:16 +0800 From: Guangbin Huang <huangguangbin2@...wei.com> To: <davem@...emloft.net>, <kuba@...nel.org> CC: <edumazet@...gle.com>, <pabeni@...hat.com>, <netdev@...r.kernel.org>, <linux-kernel@...r.kernel.org>, <huangguangbin2@...wei.com>, <lipeng321@...wei.com>, <lanhao@...wei.com> Subject: [PATCH net-next 06/14] net: hns3: modify macro hnae3_dev_int_ql_supported Redefine macro hnae3_dev_int_ql_supported(hdev) to hnae3_ae_dev_int_ql_supported(ae_dev), so it can be used in both hclge and hns3_enet layer. DTS: Feature or Bugfix: Signed-off-by: Guangbin Huang <huangguangbin2@...wei.com> --- drivers/net/ethernet/hisilicon/hns3/hnae3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ethernet/hisilicon/hns3/hnae3.h b/drivers/net/ethernet/hisilicon/hns3/hnae3.h index dd2dd085ab3d..ed06f8db2a27 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hnae3.h +++ b/drivers/net/ethernet/hisilicon/hns3/hnae3.h @@ -122,8 +122,8 @@ enum HNAE3_DEV_CAP_BITS { #define hnae3_ae_dev_ptp_supported(ae_dev) \ test_bit(HNAE3_DEV_SUPPORT_PTP_B, (ae_dev)->caps) -#define hnae3_dev_int_ql_supported(hdev) \ - test_bit(HNAE3_DEV_SUPPORT_INT_QL_B, (hdev)->ae_dev->caps) +#define hnae3_ae_dev_int_ql_supported(ae_dev) \ + test_bit(HNAE3_DEV_SUPPORT_INT_QL_B, (ae_dev)->caps) #define hnae3_dev_hw_csum_supported(hdev) \ test_bit(HNAE3_DEV_SUPPORT_HW_TX_CSUM_B, (hdev)->ae_dev->caps) -- 2.33.0
Powered by blists - more mailing lists