diff options
author | Martin Townsend <mtownsend1973@gmail.com> | 2014-10-23 15:40:53 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-10-27 15:51:15 +0100 |
commit | f8b361768ea2eaf9b21dfbe7388958ec31798c8b (patch) | |
tree | e2b9ea93b72fbf33d6f9ee84a7fc63edfaba8c92 /include/net/6lowpan.h | |
parent | f81f466ca588a5bd868008154050305481f241d4 (diff) | |
download | linux-stable-f8b361768ea2eaf9b21dfbe7388958ec31798c8b.tar.gz linux-stable-f8b361768ea2eaf9b21dfbe7388958ec31798c8b.tar.bz2 linux-stable-f8b361768ea2eaf9b21dfbe7388958ec31798c8b.zip |
6lowpan: remove skb_deliver from IPHC
Separating skb delivery from decompression ensures that we can support further
decompression schemes and removes the mixed return value of error codes with
NET_RX_FOO.
Signed-off-by: Martin Townsend <mtownsend1973@gmail.com>
Acked-by: Alexander Aring <alex.aring@gmail.com>
Acked-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/6lowpan.h')
-rw-r--r-- | include/net/6lowpan.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/net/6lowpan.h b/include/net/6lowpan.h index d184df1d0d41..abfa3593e911 100644 --- a/include/net/6lowpan.h +++ b/include/net/6lowpan.h @@ -372,12 +372,10 @@ lowpan_uncompress_size(const struct sk_buff *skb, u16 *dgram_offset) return skb->len + uncomp_header - ret; } -typedef int (*skb_delivery_cb)(struct sk_buff *skb, struct net_device *dev); - int lowpan_process_data(struct sk_buff *skb, struct net_device *dev, const u8 *saddr, const u8 saddr_type, const u8 saddr_len, const u8 *daddr, const u8 daddr_type, const u8 daddr_len, - u8 iphc0, u8 iphc1, skb_delivery_cb skb_deliver); + u8 iphc0, u8 iphc1); int lowpan_header_compress(struct sk_buff *skb, struct net_device *dev, unsigned short type, const void *_daddr, const void *_saddr, unsigned int len); |