diff options
Diffstat (limited to 'include/net/ip.h')
| -rw-r--r-- | include/net/ip.h | 9 | 
1 files changed, 8 insertions, 1 deletions
diff --git a/include/net/ip.h b/include/net/ip.h index ecffd843e7b8..0d2281b4b27a 100644 --- a/include/net/ip.h +++ b/include/net/ip.h @@ -76,6 +76,7 @@ struct ipcm_cookie {  	__u8			ttl;  	__s16			tos;  	char			priority; +	__u16			gso_size;  };  #define IPCB(skb) ((struct inet_skb_parm*)((skb)->cb)) @@ -171,7 +172,7 @@ struct sk_buff *ip_make_skb(struct sock *sk, struct flowi4 *fl4,  					int len, int odd, struct sk_buff *skb),  			    void *from, int length, int transhdrlen,  			    struct ipcm_cookie *ipc, struct rtable **rtp, -			    unsigned int flags); +			    struct inet_cork *cork, unsigned int flags);  static inline struct sk_buff *ip_finish_skb(struct sock *sk, struct flowi4 *fl4)  { @@ -396,6 +397,9 @@ static inline unsigned int ip_skb_dst_mtu(struct sock *sk,  	return min(READ_ONCE(skb_dst(skb)->dev->mtu), IP_MAX_MTU);  } +int ip_metrics_convert(struct net *net, struct nlattr *fc_mx, int fc_mx_len, +		       u32 *metrics); +  u32 ip_idents_reserve(u32 hash, int segs);  void __ip_select_ident(struct net *net, struct iphdr *iph, int segs); @@ -660,4 +664,7 @@ extern int sysctl_icmp_msgs_burst;  int ip_misc_proc_init(void);  #endif +int rtm_getroute_parse_ip_proto(struct nlattr *attr, u8 *ip_proto, +				struct netlink_ext_ack *extack); +  #endif	/* _IP_H */  | 
