net: hns3: Fix an error macro definition of HNS3_TQP_STAT
authorJian Shen <shenjian15@huawei.com>
Fri, 5 Jan 2018 10:18:14 +0000 (18:18 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Jan 2018 19:06:18 +0000 (14:06 -0500)
The member "stats_offset" was designed to indicate the offset
of each member of struct ring_stats in struct hns3_enet_ring,
but forgot to add the offset of the member in struct ring_stats.

Fixes: 496d03e960a ("net: hns3: Add Ethtool support to HNS3 driver")
Signed-off-by: Jian Shen <shenjian15@huawei.com>
Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c

index 9cca33c..c7ac546 100644 (file)
@@ -23,7 +23,8 @@ struct hns3_stats {
 #define HNS3_TQP_STAT(_string, _member)        {                       \
        .stats_string = _string,                                \
        .stats_size = FIELD_SIZEOF(struct ring_stats, _member), \
-       .stats_offset = offsetof(struct hns3_enet_ring, stats), \
+       .stats_offset = offsetof(struct hns3_enet_ring, stats) +\
+                       offsetof(struct ring_stats, _member),   \
 }                                                              \
 
 static const struct hns3_stats hns3_txq_stats[] = {