netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/10 net-next] Introduce per interface ipv4 statistics
@ 2011-12-16 15:25 igorm
  2011-12-16 15:25 ` [PATCH 01/10 net-next] include: net: netns: mib: Add proc_dir_entry for ipv4 per interface stats igorm
                   ` (10 more replies)
  0 siblings, 11 replies; 26+ messages in thread
From: igorm @ 2011-12-16 15:25 UTC (permalink / raw)
  To: netdev; +Cc: davem, Igor Maravic

From: Igor Maravic <igorm@etf.rs>

Hi all,
in this patch series I introduced per interface statistics for ipv4.

I referenced how it was done for ipv6 per interface statistics.
BR
Igor

Igor Maravic (10):
  include: net: netns: mib: Add proc_dir_entry for ipv4 per interface
    stats
  include: net: snmp: Create icmp per device counters and add macros
    for per device stats
  include:linux:inetdevice: Add struct ipv4_devstat and func
    __in_dev_get_rcu_safely
  include:net:ipv6: Moved _DEV* macros
  include:net:ip: Tuned up IP_*_STATS macros for per device statistics
    and added functions for (un)registering per device proc entries
  include:net:icmp: Tuned up ICMP_*_STATS macros for per device
    statistics and changed prototype for icmp_out_count
  net:ipv4:devinet: Add support for alloc/free of per device stats and
    (un)register of per device proc files
  net:ipv4:af_inet: Init proc fs before ip_init
  net:ipv4:proc: Introduce proc files for ipv4 per interface stats
  net: Enable ipv4 per interface statistics

 include/linux/inetdevice.h      |   16 +++++
 include/net/icmp.h              |   37 ++++++++++--
 include/net/ip.h                |   60 +++++++++++++++++--
 include/net/ipv6.h              |   64 ++++-----------------
 include/net/netns/mib.h         |    1 +
 include/net/snmp.h              |   55 ++++++++++++++++++
 net/bridge/br_netfilter.c       |    6 +-
 net/dccp/ipv4.c                 |    9 ++-
 net/ipv4/af_inet.c              |    7 ++-
 net/ipv4/datagram.c             |    2 +-
 net/ipv4/devinet.c              |   75 +++++++++++++++++++++---
 net/ipv4/icmp.c                 |   29 +++++----
 net/ipv4/inet_connection_sock.c |    8 ++-
 net/ipv4/ip_forward.c           |    8 ++-
 net/ipv4/ip_fragment.c          |   43 ++++++++------
 net/ipv4/ip_input.c             |   33 ++++++-----
 net/ipv4/ip_output.c            |   43 ++++++++------
 net/ipv4/ipmr.c                 |    6 +-
 net/ipv4/ping.c                 |    8 +-
 net/ipv4/proc.c                 |  121 +++++++++++++++++++++++++++++++++++++++
 net/ipv4/raw.c                  |    4 +-
 net/ipv4/route.c                |    2 +-
 net/ipv4/tcp_ipv4.c             |    9 ++-
 net/ipv4/udp.c                  |    7 +-
 net/l2tp/l2tp_ip.c              |    6 +-
 net/sctp/input.c                |    4 +-
 net/sctp/output.c               |    2 +-
 27 files changed, 488 insertions(+), 177 deletions(-)

-- 
1.7.5.4

^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2011-12-16 18:39 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-16 15:25 [PATCH 00/10 net-next] Introduce per interface ipv4 statistics igorm
2011-12-16 15:25 ` [PATCH 01/10 net-next] include: net: netns: mib: Add proc_dir_entry for ipv4 per interface stats igorm
2011-12-16 15:25 ` [PATCH 02/10 net-next] include: net: snmp: Create icmp per device counters and add macros for per device stats igorm
2011-12-16 15:25 ` [PATCH 03/10 net-next] include:linux:inetdevice: Add struct ipv4_devstat and func __in_dev_get_rcu_safely igorm
2011-12-16 15:25 ` [PATCH 04/10 net-next] include:net:ipv6: Moved _DEV* macros igorm
2011-12-16 15:25 ` [PATCH 05/10 net-next] include:net:ip: Tuned up IP_*_STATS macros for per device statistics and added functions for (un)registering per device proc entries igorm
2011-12-16 15:25 ` [PATCH 06/10 net-next] include:net:icmp: Tuned up ICMP_*_STATS macros for per device statistics and changed prototype for icmp_out_count igorm
2011-12-16 15:26 ` [PATCH 07/10 net-next] net:ipv4:devinet: Add support for alloc/free of per device stats and (un)register of per device proc files igorm
2011-12-16 15:26 ` [PATCH 08/10 net-next] net:ipv4:af_inet: Init proc fs before ip_init igorm
2011-12-16 15:26 ` [PATCH 09/10 net-next] net:ipv4:proc: Introduce proc files for ipv4 per interface stats igorm
2011-12-16 15:26 ` [PATCH 10/10 net-next] net: Enable ipv4 per interface statistics igorm
2011-12-16 15:41 ` [PATCH 00/10 net-next] Introduce per interface ipv4 statistics Eric Dumazet
2011-12-16 15:58   ` Igor Maravić
2011-12-16 16:33     ` Eric Dumazet
2011-12-16 16:44       ` Christoph Lameter
2011-12-16 16:50         ` Eric Dumazet
2011-12-16 16:55           ` Christoph Lameter
2011-12-16 17:14             ` Eric Dumazet
2011-12-16 17:29               ` Christoph Lameter
2011-12-16 18:08                 ` Eric Dumazet
2011-12-16 18:30                   ` Christoph Lameter
2011-12-16 18:39                 ` David Miller
2011-12-16 17:19             ` Stephen Hemminger
2011-12-16 18:31       ` David Miller
2011-12-16 18:28     ` David Miller
2011-12-16 18:27   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).