Browse Source

net: hns3: modify variable type in hns3_nic_reuse_page

'truesize' is supposed to be u32, not int, so fix it.

Signed-off-by: Huazhong tan <tanhuazhong@huawei.com>
Signed-off-by: Salil Mehta <salil.mehta@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Huazhong Tan 7 years ago
parent
commit
583e7281f1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      drivers/net/ethernet/hisilicon/hns3/hns3_enet.c

+ 2 - 1
drivers/net/ethernet/hisilicon/hns3/hns3_enet.c

@@ -2019,7 +2019,8 @@ static void hns3_nic_reuse_page(struct sk_buff *skb, int i,
 				struct hns3_desc_cb *desc_cb)
 {
 	struct hns3_desc *desc;
-	int truesize, size;
+	u32 truesize;
+	int size;
 	int last_offset;
 	bool twobufs;