Release 4.7 include/linux/errqueue.h
#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
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 50 | 72.46% | 1 | 16.67% |
arnaldo carvalho de melo | arnaldo carvalho de melo | 11 | 15.94% | 1 | 16.67% |
david howells | david howells | 3 | 4.35% | 1 | 16.67% |
jaswinder singh rajput | jaswinder singh rajput | 2 | 2.90% | 1 | 16.67% |
eric dumazet | eric dumazet | 2 | 2.90% | 1 | 16.67% |
al viro | al viro | 1 | 1.45% | 1 | 16.67% |
| Total | 69 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.