~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/net/psample.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef __NET_PSAMPLE_H
  3 #define __NET_PSAMPLE_H
  4 
  5 #include <uapi/linux/psample.h>
  6 #include <linux/list.h>
  7 
  8 struct psample_group {
  9         struct list_head list;
 10         struct net *net;
 11         u32 group_num;
 12         u32 refcount;
 13         u32 seq;
 14         struct rcu_head rcu;
 15 };
 16 
 17 struct psample_metadata {
 18         u32 trunc_size;
 19         int in_ifindex;
 20         int out_ifindex;
 21         u16 out_tc;
 22         u64 out_tc_occ; /* bytes */
 23         u64 latency;    /* nanoseconds */
 24         u8 out_tc_valid:1,
 25            out_tc_occ_valid:1,
 26            latency_valid:1,
 27            rate_as_probability:1,
 28            unused:4;
 29         const u8 *user_cookie;
 30         u32 user_cookie_len;
 31 };
 32 
 33 struct psample_group *psample_group_get(struct net *net, u32 group_num);
 34 void psample_group_take(struct psample_group *group);
 35 void psample_group_put(struct psample_group *group);
 36 
 37 struct sk_buff;
 38 
 39 #if IS_ENABLED(CONFIG_PSAMPLE)
 40 
 41 void psample_sample_packet(struct psample_group *group,
 42                            const struct sk_buff *skb, u32 sample_rate,
 43                            const struct psample_metadata *md);
 44 
 45 #else
 46 
 47 static inline void psample_sample_packet(struct psample_group *group,
 48                                          const struct sk_buff *skb,
 49                                          u32 sample_rate,
 50                                          const struct psample_metadata *md)
 51 {
 52 }
 53 
 54 #endif
 55 
 56 #endif /* __NET_PSAMPLE_H */
 57 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php