Hello, This patch series introduces support for PhoNet, the "Phone Network protocol". This protocol is the primary interface to Nokia cellular modem engines. We are integrating it to the Linux kernel in order to support HSPA cellular data connectivity on the Maemo Software platform. This patchset provides a simple datagram socket independent of the underlying hardware (network interface) through which the modem is attached. We are in the process of contributing a lower-layer driver through Linux OMAP. This series is based on net-next-2.6, plus the tiny MISDN lockdep fix I posted to netdev yesterday. Any comments welcome. -- Documentation/networking/phonet.txt | 111 ++++++++ include/linux/if_ether.h | 1 include/linux/if_phonet.h | 16 + include/linux/phonet.h | 136 ++++++++++ include/linux/rtnetlink.h | 4 include/linux/socket.h | 4 include/net/phonet/phonet.h | 103 +++++++ include/net/phonet/pn_dev.h | 63 ++++ net/Kconfig | 1 net/Makefile | 1 net/core/sock.c | 9 net/phonet/Kconfig | 11 net/phonet/Makefile | 11 net/phonet/af_phonet.c | 485 +++++++++++++++++++++++++++++++++++- net/phonet/datagram.c | 197 ++++++++++++++ net/phonet/pn_dev.c | 232 +++++++++++++++++ net/phonet/pn_netlink.c | 239 +++++++++++++++++ net/phonet/socket.c | 314 +++++++++++++++++++++++ net/phonet/sysctl.c | 111 ++++++++ 19 files changed, 2036 insertions(+), 13 deletions(-) Regards, -- Rémi Denis-Courmont Maemo Software, Nokia Devices R&D -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
