mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 16:36:58 +07:00
net: hns3: fix for returning wrong value problem in hns3_get_rss_key_size
The return type of hns3_get_rss_key_size is u32. But a negative value is returned. This patch fixes it by replacing the negative value with zero. Signed-off-by: Fuyun Liang <liangfuyun1@huawei.com> Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0c29ba1b43
commit
3bd6d258b1
@ -638,7 +638,7 @@ static u32 hns3_get_rss_key_size(struct net_device *netdev)
|
||||
|
||||
if (!h->ae_algo || !h->ae_algo->ops ||
|
||||
!h->ae_algo->ops->get_rss_key_size)
|
||||
return -EOPNOTSUPP;
|
||||
return 0;
|
||||
|
||||
return h->ae_algo->ops->get_rss_key_size(h);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user