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: Jian Shen <shenjian15@huawei.com>
Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jian Shen 2018-01-05 18:18:15 +08:00 коммит произвёл David S. Miller
Родитель 57ffee737b
Коммит b59f558c6a
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -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 */