All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next v5 0/13] basic ieee802.15.4 mac support
@ 2012-05-16  6:50 Alexander Smirnov
  2012-05-16  6:50 ` [PATCH net-next v5 01/13] mac802154: basic ieee802.15.4 device structures Alexander Smirnov
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Alexander Smirnov @ 2012-05-16  6:50 UTC (permalink / raw)
  To: davem; +Cc: netdev, dbaryshkov

Hi David,

This is the 5-th version of patch series for IEEE 802.15.4 Medium Access
Control layer support.

Changes since the last post:
 - All the comments were polished to the same style
 - Some new extra comments were added

Best regards,
Alex

8<--

Alexander Smirnov (13):
  mac802154: basic ieee802.15.4 device structures
  mac802154: allocation of ieee802154 device
  mac802154: RX data path
  mac802154: TX data path
  mac802154: define reduced mlme operations
  mac802154: slave interfaces definition
  mac802154: basic MAC commands interface support
  mac802154: basic mib support
  ieee802154: interface type to be added
  mac802154: slaves management support
  mac802154: monitor device support
  drivers/ieee802154: IEEE 802.15.4 loopback driver
  Documentation/networking/ieee802154: update MAC chapter

 Documentation/networking/ieee802154.txt |   75 ++++++--
 drivers/ieee802154/Kconfig              |    8 +
 drivers/ieee802154/Makefile             |    1 +
 drivers/ieee802154/fakelb.c             |  294 +++++++++++++++++++++++++++++++
 include/linux/if_arp.h                  |    1 +
 include/linux/nl802154.h                |   20 ++
 include/net/ieee802154_netdev.h         |   27 +++-
 include/net/mac802154.h                 |  136 ++++++++++++++
 include/net/wpan-phy.h                  |   10 +-
 net/Kconfig                             |    1 +
 net/Makefile                            |    1 +
 net/ieee802154/nl-phy.c                 |    9 +-
 net/mac802154/Kconfig                   |   16 ++
 net/mac802154/Makefile                  |    2 +
 net/mac802154/ieee802154_dev.c          |  294 +++++++++++++++++++++++++++++++
 net/mac802154/mac802154.h               |  109 ++++++++++++
 net/mac802154/mac_cmd.c                 |   45 +++++
 net/mac802154/mib.c                     |   93 ++++++++++
 net/mac802154/monitor.c                 |  116 ++++++++++++
 net/mac802154/rx.c                      |  114 ++++++++++++
 net/mac802154/tx.c                      |  116 ++++++++++++
 21 files changed, 1465 insertions(+), 23 deletions(-)
 create mode 100644 drivers/ieee802154/fakelb.c
 create mode 100644 include/net/mac802154.h
 create mode 100644 net/mac802154/Kconfig
 create mode 100644 net/mac802154/Makefile
 create mode 100644 net/mac802154/ieee802154_dev.c
 create mode 100644 net/mac802154/mac802154.h
 create mode 100644 net/mac802154/mac_cmd.c
 create mode 100644 net/mac802154/mib.c
 create mode 100644 net/mac802154/monitor.c
 create mode 100644 net/mac802154/rx.c
 create mode 100644 net/mac802154/tx.c

--
1.7.2.3

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2012-05-16 19:34 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-16  6:50 [PATCH net-next v5 0/13] basic ieee802.15.4 mac support Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 01/13] mac802154: basic ieee802.15.4 device structures Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 02/13] mac802154: allocation of ieee802154 device Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 03/13] mac802154: RX data path Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 04/13] mac802154: TX " Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 05/13] mac802154: declare reduced mlme operations Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 06/13] mac802154: slave interfaces declaration Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 07/13] mac802154: basic MAC commands interface support Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 08/13] mac802154: basic mib support Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 09/13] ieee802154: interface type to be added Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 10/13] mac802154: slaves management support Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 11/13] mac802154: monitor device support Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 12/13] drivers/ieee802154: IEEE 802.15.4 loopback driver Alexander Smirnov
2012-05-16  6:50 ` [PATCH net-next v5 13/13] Documentation/networking/ieee802154: update MAC chapter Alexander Smirnov
2012-05-16 19:34 ` [PATCH net-next v5 0/13] basic ieee802.15.4 mac support David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.