net: Remove code duplication between offload structures

Move the offload callbacks into its own structure.

Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Vlad Yasevich 2012-11-15 08:49:23 +00:00 committed by David S. Miller
parent c6b641a4c6
commit f191a1d17f
7 changed files with 66 additions and 54 deletions

View file

@ -1515,15 +1515,19 @@ struct packet_type {
struct list_head list;
};
struct packet_offload {
__be16 type; /* This is really htons(ether_type). */
struct offload_callbacks {
struct sk_buff *(*gso_segment)(struct sk_buff *skb,
netdev_features_t features);
int (*gso_send_check)(struct sk_buff *skb);
struct sk_buff **(*gro_receive)(struct sk_buff **head,
struct sk_buff *skb);
int (*gro_complete)(struct sk_buff *skb);
struct list_head list;
};
struct packet_offload {
__be16 type; /* This is really htons(ether_type). */
struct offload_callbacks callbacks;
struct list_head list;
};
#include <linux/notifier.h>