Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762020AbZFRO06 (ORCPT ); Thu, 18 Jun 2009 10:26:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755100AbZFRO0h (ORCPT ); Thu, 18 Jun 2009 10:26:37 -0400 Received: from mail-ew0-f210.google.com ([209.85.219.210]:58265 "EHLO mail-ew0-f210.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753724AbZFRO0g (ORCPT ); Thu, 18 Jun 2009 10:26:36 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=sis99loeA5rV+/aht2mx3UeNhYpGL/o+joj/lnl09C1UwJ7YM4qopV7sN5WU9ZSQn1 GGV1dsWeSyfCBI5924OXzUhO48uaELIMNh3ak4KjKAceh0nYX65rQPxBUTJsVFJ2nZcV NPtNM+LO/2N3pgNgia8kaMBuKCYFW3HlxKLH0= From: Dmitry Eremin-Solenikov To: netdev@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Sergey Lapin Subject: Date: Thu, 18 Jun 2009 18:26:12 +0400 Message-Id: <1245335177-16810-1-git-send-email-dbaryshkov@gmail.com> X-Mailer: git-send-email 1.6.3.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2711 Lines: 65 >From Dmitry Eremin-Solenikov # This line is ignored. GIT: From: Dmitry Eremin-Solenikov Subject: [RFC][PATCH 0/5] Please review the data-only IEEE 802.15.4 MAC implementation In-Reply-To: Hello, I'd like to submit several our next patches for linux-next inclusion (most probably not yet for 2.6.31 though). Could you please review them? The following changes since commit 81e2a3d5b75cbf0b42428b9d5a7cc7c85be9e7a7: Eric Dumazet (1): atm: sk_wmem_alloc initial value is one are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git for-next Darren Salt (1): crc-itu-t: add bit-reversed calculation Dmitry Eremin-Solenikov (5): ieee802154: use standard routine for printing dumps mac802154: add a software MAC 802.15.4 implementation ieee802154: add virtual loopback driver MAINTAINERS: fix IEEE 802.15.4 entry Merge branch 'for-linus' into for-next MAINTAINERS | 5 +- drivers/ieee802154/Kconfig | 13 + drivers/ieee802154/Makefile | 1 + drivers/ieee802154/fakelb.c | 345 +++++++++++++++ include/linux/crc-itu-t.h | 10 + include/linux/if.h | 2 + include/net/ieee802154/mac802154.h | 83 ++++ lib/Kconfig | 1 + lib/crc-itu-t.c | 17 + net/Kconfig | 1 + net/Makefile | 1 + net/ieee802154/af_ieee802154.c | 12 +- net/mac802154/Kconfig | 17 + net/mac802154/Makefile | 4 + net/mac802154/dev.c | 845 ++++++++++++++++++++++++++++++++++++ net/mac802154/mac802154.h | 62 +++ net/mac802154/mac_cmd.c | 94 ++++ net/mac802154/mdev.c | 298 +++++++++++++ net/mac802154/mib.h | 32 ++ net/mac802154/rx.c | 98 +++++ 20 files changed, 1930 insertions(+), 11 deletions(-) create mode 100644 drivers/ieee802154/fakelb.c create mode 100644 include/net/ieee802154/mac802154.h create mode 100644 net/mac802154/Kconfig create mode 100644 net/mac802154/Makefile create mode 100644 net/mac802154/dev.c create mode 100644 net/mac802154/mac802154.h create mode 100644 net/mac802154/mac_cmd.c create mode 100644 net/mac802154/mdev.c create mode 100644 net/mac802154/mib.h create mode 100644 net/mac802154/rx.c -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/