lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 29 Oct 2020 22:06:14 +0100
From:   Arnd Bergmann <arnd@...nel.org>
To:     gregkh <gregkh@...uxfoundation.org>,
        Jakub Kicinski <kuba@...nel.org>
Cc:     Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        Networking <netdev@...r.kernel.org>,
        driverdevel <devel@...verdev.osuosl.org>,
        Johannes Berg <johannes@...solutions.net>,
        Inaky Perez-Gonzalez <inaky.perez-gonzalez@...el.com>
Subject: [GIT PULL, staging, net-next] wimax: move to staging

The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec:

  Linux 5.10-rc1 (2020-10-25 15:14:11 -0700)

are available in the Git repository at:

  git://git.kernel.org:/pub/scm/linux/kernel/git/arnd/playground.git
tags/wimax-staging

for you to fetch changes up to f54ec58fee837ec847cb8b50593e81bfaa46107f:

  wimax: move out to staging (2020-10-29 19:27:45 +0100)

----------------------------------------------------------------
wimax: move to staging

After I sent a fix for what appeared to be a harmless warning in
the wimax user interface code, the conclusion was that the whole
thing has most likely not been used in a very long time, and the
user interface possibly been broken since b61a5eea5904 ("wimax: use
genl_register_family_with_ops()").

Using a shared branch between net-next and staging should help
coordinate patches getting submitted against it.

----------------------------------------------------------------
Arnd Bergmann (2):
      wimax: fix duplicate initializer warning
      wimax: move out to staging

 Documentation/admin-guide/index.rst                |  1 -
 Documentation/networking/kapi.rst                  | 21 ----------------
 .../translations/zh_CN/admin-guide/index.rst       |  1 -
 MAINTAINERS                                        | 22 ----------------
 drivers/net/Kconfig                                |  2 --
 drivers/net/Makefile                               |  1 -
 drivers/net/wimax/Kconfig                          | 18 --------------
 drivers/net/wimax/Makefile                         |  2 --
 drivers/staging/Kconfig                            |  2 ++
 drivers/staging/Makefile                           |  1 +
 .../staging/wimax/Documentation}/i2400m.rst        |  0
 .../staging/wimax/Documentation}/index.rst         |  0
 .../staging/wimax/Documentation}/wimax.rst         |  0
 {net => drivers/staging}/wimax/Kconfig             |  6 +++++
 {net => drivers/staging}/wimax/Makefile            |  2 ++
 drivers/staging/wimax/TODO                         | 18 ++++++++++++++
 {net => drivers/staging}/wimax/debug-levels.h      |  2 +-
 {net => drivers/staging}/wimax/debugfs.c           |  2 +-
 drivers/{net => staging}/wimax/i2400m/Kconfig      |  0
 drivers/{net => staging}/wimax/i2400m/Makefile     |  0
 drivers/{net => staging}/wimax/i2400m/control.c    |  2 +-
 .../{net => staging}/wimax/i2400m/debug-levels.h   |  2 +-
 drivers/{net => staging}/wimax/i2400m/debugfs.c    |  0
 drivers/{net => staging}/wimax/i2400m/driver.c     |  2 +-
 drivers/{net => staging}/wimax/i2400m/fw.c         |  0
 drivers/{net => staging}/wimax/i2400m/i2400m-usb.h |  0
 drivers/{net => staging}/wimax/i2400m/i2400m.h     |  4 +--
 .../staging/wimax/i2400m/linux-wimax-i2400m.h      |  0
 drivers/{net => staging}/wimax/i2400m/netdev.c     |  0
 drivers/{net => staging}/wimax/i2400m/op-rfkill.c  |  2 +-
 drivers/{net => staging}/wimax/i2400m/rx.c         |  0
 drivers/{net => staging}/wimax/i2400m/sysfs.c      |  0
 drivers/{net => staging}/wimax/i2400m/tx.c         |  0
 .../wimax/i2400m/usb-debug-levels.h                |  2 +-
 drivers/{net => staging}/wimax/i2400m/usb-fw.c     |  0
 drivers/{net => staging}/wimax/i2400m/usb-notif.c  |  0
 drivers/{net => staging}/wimax/i2400m/usb-rx.c     |  0
 drivers/{net => staging}/wimax/i2400m/usb-tx.c     |  0
 drivers/{net => staging}/wimax/i2400m/usb.c        |  2 +-
 {net => drivers/staging}/wimax/id-table.c          |  2 +-
 .../staging/wimax/linux-wimax-debug.h              |  2 +-
 .../wimax.h => drivers/staging/wimax/linux-wimax.h |  0
 .../wimax.h => drivers/staging/wimax/net-wimax.h   |  2 +-
 {net => drivers/staging}/wimax/op-msg.c            |  2 +-
 {net => drivers/staging}/wimax/op-reset.c          |  4 +--
 {net => drivers/staging}/wimax/op-rfkill.c         |  4 +--
 {net => drivers/staging}/wimax/op-state-get.c      |  4 +--
 {net => drivers/staging}/wimax/stack.c             | 29 ++++++++++++++--------
 {net => drivers/staging}/wimax/wimax-internal.h    |  2 +-
 net/Kconfig                                        |  2 --
 net/Makefile                                       |  1 -
 51 files changed, 68 insertions(+), 103 deletions(-)
 delete mode 100644 drivers/net/wimax/Kconfig
 delete mode 100644 drivers/net/wimax/Makefile
 rename {Documentation/admin-guide/wimax =>
drivers/staging/wimax/Documentation}/i2400m.rst (100%)
 rename {Documentation/admin-guide/wimax =>
drivers/staging/wimax/Documentation}/index.rst (100%)
 rename {Documentation/admin-guide/wimax =>
drivers/staging/wimax/Documentation}/wimax.rst (100%)
 rename {net => drivers/staging}/wimax/Kconfig (94%)
 rename {net => drivers/staging}/wimax/Makefile (83%)
 create mode 100644 drivers/staging/wimax/TODO
 rename {net => drivers/staging}/wimax/debug-levels.h (96%)
 rename {net => drivers/staging}/wimax/debugfs.c (97%)
 rename drivers/{net => staging}/wimax/i2400m/Kconfig (100%)
 rename drivers/{net => staging}/wimax/i2400m/Makefile (100%)
 rename drivers/{net => staging}/wimax/i2400m/control.c (99%)
 rename drivers/{net => staging}/wimax/i2400m/debug-levels.h (96%)
 rename drivers/{net => staging}/wimax/i2400m/debugfs.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/driver.c (99%)
 rename drivers/{net => staging}/wimax/i2400m/fw.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/i2400m-usb.h (100%)
 rename drivers/{net => staging}/wimax/i2400m/i2400m.h (99%)
 rename include/uapi/linux/wimax/i2400m.h =>
drivers/staging/wimax/i2400m/linux-wimax-i2400m.h (100%)
 rename drivers/{net => staging}/wimax/i2400m/netdev.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/op-rfkill.c (99%)
 rename drivers/{net => staging}/wimax/i2400m/rx.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/sysfs.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/tx.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/usb-debug-levels.h (95%)
 rename drivers/{net => staging}/wimax/i2400m/usb-fw.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/usb-notif.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/usb-rx.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/usb-tx.c (100%)
 rename drivers/{net => staging}/wimax/i2400m/usb.c (99%)
 rename {net => drivers/staging}/wimax/id-table.c (99%)
 rename include/linux/wimax/debug.h =>
drivers/staging/wimax/linux-wimax-debug.h (99%)
 rename include/uapi/linux/wimax.h => drivers/staging/wimax/linux-wimax.h (100%)
 rename include/net/wimax.h => drivers/staging/wimax/net-wimax.h (99%)
 rename {net => drivers/staging}/wimax/op-msg.c (99%)
 rename {net => drivers/staging}/wimax/op-reset.c (98%)
 rename {net => drivers/staging}/wimax/op-rfkill.c (99%)
 rename {net => drivers/staging}/wimax/op-state-get.c (96%)
 rename {net => drivers/staging}/wimax/stack.c (97%)
 rename {net => drivers/staging}/wimax/wimax-internal.h (99%)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ