diff options
Diffstat (limited to 'include/linux/netdevice.h')
| -rw-r--r-- | include/linux/netdevice.h | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index eb06e58bed0..59dc05f3824 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -953,7 +953,8 @@ struct net_device_ops {  #ifdef CONFIG_NET_POLL_CONTROLLER  	void                    (*ndo_poll_controller)(struct net_device *dev);  	int			(*ndo_netpoll_setup)(struct net_device *dev, -						     struct netpoll_info *info); +						     struct netpoll_info *info, +						     gfp_t gfp);  	void			(*ndo_netpoll_cleanup)(struct net_device *dev);  #endif  	int			(*ndo_set_vf_mac)(struct net_device *dev, @@ -1300,6 +1301,8 @@ struct net_device {  	/* for setting kernel sock attribute on TCP connection setup */  #define GSO_MAX_SIZE		65536  	unsigned int		gso_max_size; +#define GSO_MAX_SEGS		65535 +	u16			gso_max_segs;  #ifdef CONFIG_DCB  	/* Data Center Bridging netlink ops */ @@ -1519,6 +1522,8 @@ struct packet_type {  	struct sk_buff		**(*gro_receive)(struct sk_buff **head,  					       struct sk_buff *skb);  	int			(*gro_complete)(struct sk_buff *skb); +	bool			(*id_match)(struct packet_type *ptype, +					    struct sock *sk);  	void			*af_packet_priv;  	struct list_head	list;  };  |