提交 b59f558c 编写于 作者: J Jian Shen 提交者: 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: NJian Shen <shenjian15@huawei.com>
Signed-off-by: NPeng Li <lipeng321@huawei.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册