diff options
Diffstat (limited to 'include/net/protocol.h')
| -rw-r--r-- | include/net/protocol.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/protocol.h b/include/net/protocol.h index 6f7eb800974..e182e13d639 100644 --- a/include/net/protocol.h +++ b/include/net/protocol.h @@ -38,7 +38,7 @@ struct net_protocol {  	void			(*err_handler)(struct sk_buff *skb, u32 info);  	int			(*gso_send_check)(struct sk_buff *skb);  	struct sk_buff	       *(*gso_segment)(struct sk_buff *skb, -					       u32 features); +					       netdev_features_t features);  	struct sk_buff	      **(*gro_receive)(struct sk_buff **head,  					       struct sk_buff *skb);  	int			(*gro_complete)(struct sk_buff *skb); @@ -57,7 +57,7 @@ struct inet6_protocol {  	int	(*gso_send_check)(struct sk_buff *skb);  	struct sk_buff *(*gso_segment)(struct sk_buff *skb, -				       u32 features); +				       netdev_features_t features);  	struct sk_buff **(*gro_receive)(struct sk_buff **head,  					struct sk_buff *skb);  	int	(*gro_complete)(struct sk_buff *skb);  |