From patchwork Mon Aug 6 19:38:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schmidt X-Patchwork-Id: 10557805 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5B4D8157D for ; Mon, 6 Aug 2018 19:39:00 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4A0DC297C9 for ; Mon, 6 Aug 2018 19:39:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3C7AB297CF; Mon, 6 Aug 2018 19:39:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6530B297C9 for ; Mon, 6 Aug 2018 19:38:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730912AbeHFVtd (ORCPT ); Mon, 6 Aug 2018 17:49:33 -0400 Received: from proxima.lasnet.de ([78.47.171.185]:45241 "EHLO proxima.lasnet.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727585AbeHFVtd (ORCPT ); Mon, 6 Aug 2018 17:49:33 -0400 Received: from knut.Speedport_W_724V_09011603_05_015 (p200300E9D71E76343252CBFFFE54190F.dip0.t-ipconnect.de [IPv6:2003:e9:d71e:7634:3252:cbff:fe54:190f]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: stefan@sostec.de) by proxima.lasnet.de (Postfix) with ESMTPSA id 0A0DDC7D9E; Mon, 6 Aug 2018 21:38:56 +0200 (CEST) From: Stefan Schmidt To: davem@davemloft.net Cc: linux-wpan@vger.kernel.org, alex.aring@gmail.com, netdev@vger.kernel.org Subject: pull-request: ieee802154-next 2018-08-06 Date: Mon, 6 Aug 2018 21:38:50 +0200 Message-Id: <20180806193850.31949-1-stefan@datenfreihafen.org> X-Mailer: git-send-email 2.17.1 Sender: linux-wpan-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wpan@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hello Dave. An update from ieee802154 for *net-next* Romuald added a socket option to get the LQI value of the received datagram. Alexander added a new hardware simulation driver modelled after hwsim of the wireless people. It allows runtime configuration for new nodes and edges over a netlink interface (a config utlity is making its way into wpan-tools). We also have three fixes in here. One from Colin which is more of a cleanup and two from Alex fixing tailroom and single frame space problems. I would normally put the last two into my fixes tree, but given we are already in -rc8 I simply put them here and added a cc: stable to them. Please pull, or let me know if there are any problems. regards Stefan Schmidt The following changes since commit 981467033a37d916649647fa3afe1fe99bba1817: tc-testing: remove duplicate spaces in skbedit match patterns (2018-08-05 17:39:24 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git ieee802154-for-davem-2018-08-06 for you to fetch changes up to be10d5d1c2d15252624e965202508f30a218a46a: ieee802154: fakelb: add deprecated msg while probe (2018-08-06 11:21:15 +0200) ---------------------------------------------------------------- Alexander Aring (4): net: 6lowpan: fix reserved space for single frames net: mac802154: tx: expand tailroom if necessary ieee802154: hwsim: add replacement for fakelb ieee802154: fakelb: add deprecated msg while probe Colin Ian King (1): net: ieee802154: 6lowpan: remove redundant pointers 'fq' and 'net' Romuald CARI (1): ieee802154: add rx LQI from userspace Stefan Schmidt (1): Merge remote-tracking branch 'net-next/master' drivers/net/ieee802154/Kconfig | 11 + drivers/net/ieee802154/Makefile | 1 + drivers/net/ieee802154/fakelb.c | 3 + drivers/net/ieee802154/mac802154_hwsim.c | 919 +++++++++++++++++++++++++++++++ drivers/net/ieee802154/mac802154_hwsim.h | 73 +++ include/net/af_ieee802154.h | 1 + net/ieee802154/6lowpan/reassembly.c | 5 - net/ieee802154/6lowpan/tx.c | 21 +- net/ieee802154/socket.c | 17 + net/mac802154/tx.c | 15 +- 10 files changed, 1057 insertions(+), 9 deletions(-) create mode 100644 drivers/net/ieee802154/mac802154_hwsim.c create mode 100644 drivers/net/ieee802154/mac802154_hwsim.h --- To unsubscribe from this list: send the line "unsubscribe linux-wpan" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html