Commit b59f558c authored by Jian Shen's avatar Jian Shen Committed by David S. Miller

net: hns3: Remove a useless member of struct hns3_stats

The member "stats_size" of struct hns3_stats is useless,
remove it and fix the macro definition which has uses this
struct.
Signed-off-by: default avatarJian Shen <shenjian15@huawei.com>
Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 57ffee73
...@@ -15,17 +15,15 @@ ...@@ -15,17 +15,15 @@
struct hns3_stats { struct hns3_stats {
char stats_string[ETH_GSTRING_LEN]; char stats_string[ETH_GSTRING_LEN];
int stats_size;
int stats_offset; int stats_offset;
}; };
/* tqp related stats */ /* tqp related stats */
#define HNS3_TQP_STAT(_string, _member) { \ #define HNS3_TQP_STAT(_string, _member) { \
.stats_string = _string, \ .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), \ offsetof(struct ring_stats, _member), \
} \ }
static const struct hns3_stats hns3_txq_stats[] = { static const struct hns3_stats hns3_txq_stats[] = {
/* Tx per-queue statistics */ /* Tx per-queue statistics */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment