Hello,
Is there a preferred desktop linux distro for testing net-next kernels on a
amd64 desktop machine ?
Ideally, I would like to run the latest net-next kernel on my Ubuntu 13.10
amd64 dev box.
Are there any docs that show how to build a net-next kernel for use with
Ubuntu or other preferred
From: Alexander Aring
Date: Wed, 30 Oct 2013 09:18:20 +0100
> This patch series cleanup the 6LoWPAN header creation and extend the use
> of skb_*_header functions.
>
> Patch 2/4 fix issues of parsing the mac header. The ieee802.15.4 header
> has a dynamic size which depends on frame control bits
From: Chen Weilong
Date: Wed, 30 Oct 2013 15:28:07 +0800
> This change is inspired by checkpatch.
>
> Signed-off-by: Weilong Chen
Applied to net-next, thanks.
--
Android is increasing in popularity, but the open devel
On receiving side we don't need to set any headers in skb because the
6LoWPAN layer do not access it. Currently these values will set twice
after calling netif_rx.
Signed-off-by: Alexander Aring
Reviewed-by: Werner Almesberger
---
net/ieee802154/6lowpan.c | 4
1 file changed, 4 deletions(-
This is necessary to access network header with the skb_network_header
function instead of calculate the position with mac_len, etc.
Do the same for the transport header, when we replace the IPv6 header
with the 6LoWPAN header.
Signed-off-by: Alexander Aring
Acked-by: Werner Almesberger
---
net
This patch drops the direct memcpy on skb and uses the right skb
memcpy functions. Also remove an unnecessary check if plen is non zero.
Signed-off-by: Alexander Aring
Reviewed-by: Werner Almesberger
---
net/ieee802154/6lowpan.c | 13 -
1 file changed, 8 insertions(+), 5 deletions(-
Set the mac header length while creating the 802.15.4 mac header.
Drop the function for recalculate mac header length in upper layers
which was static and works for intra pan communication only.
Signed-off-by: Alexander Aring
Reviewed-by: Werner Almesberger
---
net/ieee802154/6lowpan.c | 13 +-
This patch series cleanup the 6LoWPAN header creation and extend the use
of skb_*_header functions.
Patch 2/4 fix issues of parsing the mac header. The ieee802.15.4 header
has a dynamic size which depends on frame control bits. This patch replaces the
static mac header len calculation with a dynam