ANDROID: GKI: net: add counter for number of frames coalesced in GRO

Partial cherry picked from commit 30f30b8006147cf6222d1872595da281236e74c1
("net: add a per-cpu counter for the number of frames coalesced in GRO")

Add an unused ABI alignment member to struct softnet_data.

Change-Id: I05965c0cb150947935d5977884cc4d583b37131e
Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
(cherry picked from commit 30f30b8006147cf6222d1872595da281236e74c1)
Signed-off-by: Mark Salyzyn <salyzyn@google.com>
Bug: 154523213
This commit is contained in:
Subash Abhinov Kasiviswanathan
2017-06-01 13:43:25 -06:00
committed by Saravana Kannan
parent f18ae83998
commit 2e44b39d25

View File

@@ -2956,6 +2956,9 @@ struct softnet_data {
unsigned int processed;
unsigned int time_squeeze;
unsigned int received_rps;
/* unused partner variable for ABI alignment */
unsigned int gro_coalesced;
#ifdef CONFIG_RPS
struct softnet_data *rps_ipi_list;
#endif