aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/net/qeth.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/s390/net/qeth.h')
-rw-r--r--drivers/s390/net/qeth.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/s390/net/qeth.h b/drivers/s390/net/qeth.h
index a341041a6cf7..501b87e6875a 100644
--- a/drivers/s390/net/qeth.h
+++ b/drivers/s390/net/qeth.h
@@ -24,7 +24,7 @@
24 24
25#include "qeth_mpc.h" 25#include "qeth_mpc.h"
26 26
27#define VERSION_QETH_H "$Revision: 1.135 $" 27#define VERSION_QETH_H "$Revision: 1.136 $"
28 28
29#ifdef CONFIG_QETH_IPV6 29#ifdef CONFIG_QETH_IPV6
30#define QETH_VERSION_IPV6 ":IPv6" 30#define QETH_VERSION_IPV6 ":IPv6"
@@ -866,6 +866,17 @@ qeth_push_skb(struct qeth_card *card, struct sk_buff **skb, int size)
866 return hdr; 866 return hdr;
867} 867}
868 868
869static inline int
870qeth_get_skb_data_len(struct sk_buff *skb)
871{
872 int len = skb->len;
873 int i;
874
875 for (i = 0; i < skb_shinfo(skb)->nr_frags; ++i)
876 len -= skb_shinfo(skb)->frags[i].size;
877 return len;
878}
879
869inline static int 880inline static int
870qeth_get_hlen(__u8 link_type) 881qeth_get_hlen(__u8 link_type)
871{ 882{