Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -15,17 +15,15 @@

struct hns3_stats {
	char stats_string[ETH_GSTRING_LEN];
	int stats_size;
	int stats_offset;
};

/* tqp related 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) +\
			offsetof(struct ring_stats, _member),   \
}								\
}

static const struct hns3_stats hns3_txq_stats[] = {
	/* Tx per-queue statistics */