cregit-Linux how code gets into the kernel

Release 4.7 include/linux/errqueue.h

Directory: include/linux
#ifndef _LINUX_ERRQUEUE_H

#define _LINUX_ERRQUEUE_H 1


#include <net/ip.h>
#if IS_ENABLED(CONFIG_IPV6)
#include <linux/ipv6.h>
#endif
#include <uapi/linux/errqueue.h>


#define SKB_EXT_ERR(skb) ((struct sock_exterr_skb *) ((skb)->cb))


struct sock_exterr_skb {
	union {
		
struct inet_skb_parm	h4;
#if IS_ENABLED(CONFIG_IPV6)
		
struct inet6_skb_parm	h6;
#endif
	} 
header;
	
struct sock_extended_err	ee;
	
u16				addr_offset;
	
__be16				port;
};

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git5072.46%116.67%
arnaldo carvalho de meloarnaldo carvalho de melo1115.94%116.67%
david howellsdavid howells34.35%116.67%
jaswinder singh rajputjaswinder singh rajput22.90%116.67%
eric dumazeteric dumazet22.90%116.67%
al viroal viro11.45%116.67%
Total69100.00%6100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}