[Linux-zigbee-devel] [PATCH series][6LoWPAN]

2011-11-02 Thread Alexander Smirnov
Hello all, The following patch series adds both major feature and minor fixes. Please find detailed description in each of the patches. Just to summarize current development status: By using MAC and PHY layers support from "http://sourceforge.net/projects/linux-zigbee"; project now it's possi

[Linux-zigbee-devel] [PATCH 1/6] [6LoWPAN] add fragmentation support

2011-11-02 Thread Alexander Smirnov
This patch adds support for frame fragmentation. Signed-off-by: Alexander Smirnov --- include/net/ieee802154.h |6 + net/ieee802154/6lowpan.c | 254 +- net/ieee802154/6lowpan.h | 18 3 files changed, 274 insertions(+), 4 deletions(-) diff

[Linux-zigbee-devel] [PATCH 2/6] [6LoWPAN] disable debugging by default

2011-11-02 Thread Alexander Smirnov
This patch disables debug output enabled by default. Signed-off-by: Alexander Smirnov --- net/ieee802154/6lowpan.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c index 890ecef..e5709fa 100644 --- a/net/ieee802154/6low

[Linux-zigbee-devel] [PATCH 3/6] [6LoWPAN] set proper netdev flags

2011-11-02 Thread Alexander Smirnov
This patch fixes settings for device initialization which makes possible to use NDISC and TCP. Signed-off-by: Alexander Smirnov --- net/ieee802154/6lowpan.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c index e5709f

[Linux-zigbee-devel] [PATCH 4/6] [6LoWPAN] UDP header compression

2011-11-02 Thread Alexander Smirnov
This patch adds support for UDP header compression. Derived from Contiki OS. Signed-off-by: Alexander Smirnov --- net/ieee802154/6lowpan.c | 51 ++--- net/ieee802154/6lowpan.h |5 2 files changed, 52 insertions(+), 4 deletions(-) diff --git a/n

[Linux-zigbee-devel] [PATCH 5/6] [6LoWPAN] UDP header decompression

2011-11-02 Thread Alexander Smirnov
This patch provides possibility to decompress UDP headers. Derived from Contiki OS. Signed-off-by: Alexander Smirnov --- net/ieee802154/6lowpan.c | 50 +- 1 files changed, 49 insertions(+), 1 deletions(-) diff --git a/net/ieee802154/6lowpan.c b/net/

[Linux-zigbee-devel] [PATCH 6/6] [6LoWPAN] update documentation

2011-11-02 Thread Alexander Smirnov
This patch adds chapter to documentation which describes how to use 6lowpan technology. Signed-off-by: Alexander Smirnov --- Documentation/networking/ieee802154.txt | 26 ++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/Documentation/networking/ieee802

[Linux-zigbee-devel] Just FYI: at91 driver problem

2011-11-02 Thread Alexander Smirnov
Hello all, after adding 6lowpan fragmentation support I noticed one interesting issue. As I understand I'm the first who tries to send several packets continuously. So in this case there is a big packets lost statistics and chip goes mad: ... at86rf230_xmit error: -16 at86rf230_state unexpected s

Re: [Linux-zigbee-devel] [PATCH series][6LoWPAN]

2011-11-02 Thread David Miller
From: Alexander Smirnov Date: Wed, 2 Nov 2011 19:25:20 +0300 > The following patch series adds both major feature and minor fixes. > Please find detailed description in each of the patches. Right in the middle of the merge window is not the time to be submitting new features. You'll need to rep