Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __NET_GEN_STATS_H |
| 2 | #define __NET_GEN_STATS_H |
| 3 | |
| 4 | #include <linux/gen_stats.h> |
| 5 | #include <linux/socket.h> |
| 6 | #include <linux/rtnetlink.h> |
| 7 | #include <linux/pkt_sched.h> |
| 8 | |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame^] | 9 | struct gnet_stats_basic_cpu { |
| 10 | struct gnet_stats_basic_packed bstats; |
| 11 | struct u64_stats_sync syncp; |
| 12 | }; |
| 13 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 14 | struct gnet_dump { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | spinlock_t * lock; |
| 16 | struct sk_buff * skb; |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 17 | struct nlattr * tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 19 | /* Backward compatibility */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | int compat_tc_stats; |
| 21 | int compat_xstats; |
| 22 | void * xstats; |
| 23 | int xstats_len; |
| 24 | struct tc_stats tc_stats; |
| 25 | }; |
| 26 | |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 27 | int gnet_stats_start_copy(struct sk_buff *skb, int type, spinlock_t *lock, |
| 28 | struct gnet_dump *d); |
| 29 | |
| 30 | int gnet_stats_start_copy_compat(struct sk_buff *skb, int type, |
| 31 | int tc_stats_type, int xstats_type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | spinlock_t *lock, struct gnet_dump *d); |
| 33 | |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 34 | int gnet_stats_copy_basic(struct gnet_dump *d, |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame^] | 35 | struct gnet_stats_basic_cpu __percpu *cpu, |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 36 | struct gnet_stats_basic_packed *b); |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame^] | 37 | void __gnet_stats_copy_basic(struct gnet_stats_basic_packed *bstats, |
| 38 | struct gnet_stats_basic_cpu __percpu *cpu, |
| 39 | struct gnet_stats_basic_packed *b); |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 40 | int gnet_stats_copy_rate_est(struct gnet_dump *d, |
| 41 | const struct gnet_stats_basic_packed *b, |
| 42 | struct gnet_stats_rate_est64 *r); |
| 43 | int gnet_stats_copy_queue(struct gnet_dump *d, struct gnet_stats_queue *q); |
| 44 | int gnet_stats_copy_app(struct gnet_dump *d, void *st, int len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 46 | int gnet_stats_finish_copy(struct gnet_dump *d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 48 | int gen_new_estimator(struct gnet_stats_basic_packed *bstats, |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame^] | 49 | struct gnet_stats_basic_cpu __percpu *cpu_bstats, |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 50 | struct gnet_stats_rate_est64 *rate_est, |
| 51 | spinlock_t *stats_lock, struct nlattr *opt); |
| 52 | void gen_kill_estimator(struct gnet_stats_basic_packed *bstats, |
| 53 | struct gnet_stats_rate_est64 *rate_est); |
| 54 | int gen_replace_estimator(struct gnet_stats_basic_packed *bstats, |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame^] | 55 | struct gnet_stats_basic_cpu __percpu *cpu_bstats, |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 56 | struct gnet_stats_rate_est64 *rate_est, |
| 57 | spinlock_t *stats_lock, struct nlattr *opt); |
| 58 | bool gen_estimator_active(const struct gnet_stats_basic_packed *bstats, |
| 59 | const struct gnet_stats_rate_est64 *rate_est); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #endif |