diff options
author | Jarod Wilson <jarod@redhat.com> | 2016-02-01 18:51:06 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-06 02:59:51 -0500 |
commit | bb63daf9efb4f2bcb657d7179a53bd808f978dc9 (patch) | |
tree | 6278f394649e7ab4721912e20fcb910a67405c8a /include/linux/if_team.h | |
parent | 6e7333d315a768170a59ac771297ee0551bdddbf (diff) |
team: track sum of rx_nohandler for all slaves
CC: Jiri Pirko <jiri@resnulli.us>
CC: netdev@vger.kernel.org
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/if_team.h')
-rw-r--r-- | include/linux/if_team.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/if_team.h b/include/linux/if_team.h index b84e49c3a738..174f43f43aff 100644 --- a/include/linux/if_team.h +++ b/include/linux/if_team.h @@ -24,6 +24,7 @@ struct team_pcpu_stats { struct u64_stats_sync syncp; u32 rx_dropped; u32 tx_dropped; + u32 rx_nohandler; }; struct team; |