All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/21] backports: multiple changes for kernel 3.13-rc6
@ 2017-08-21 22:27 Hauke Mehrtens
  2017-08-21 22:27 ` [PATCH 01/21] copy: do not copy files removed in kernel 4.13 Hauke Mehrtens
                   ` (21 more replies)
  0 siblings, 22 replies; 48+ messages in thread
From: Hauke Mehrtens @ 2017-08-21 22:27 UTC (permalink / raw)
  To: johannes; +Cc: backports, Hauke Mehrtens

This brings backports to kernel 4.13-rc6.

This was build tested with kernel 3.18, 4.4 and 4.9. and runtime tested 
with iwlwifi on kernel 4.9.

Are you planing to to releases in a tar?
Which kernel versions are currently support by backports?
patches/0079-netdev-destructor.cocci takes very long to apply, about 3 
times longer all others together.
Should we remove ssb and bcma from backports and use the in kernel 
versions instead? I do not expect so many changes any more affecting the 
wifi drivers.

Is the compat wireless build server still being used?

Hauke Mehrtens (21):
  copy: do not copy files removed in kernel 4.13
  patches: header fix for st-nci not needed any more
  header: skbuff: add skb_put_zero(), skb_put_data() and skb_put_u8()
  header: skbuff: fix signature of skb_put(), skb_push() and ()
  header: backport mii_ethtool_{get,set}_link_ksettings()
  patches: adapt the stat64 usage for usbnet
  header: add module_param_hw_array()
  header: backport devm_acpi_dev_add_driver_gpios()
  header: add get_random_u32()
  header: rename wait_queue_entry_t to wait_queue_t
  backport: add __print_array()
  compat: avoid usage of kvzalloc() in rhashtable.c
  patch: Allow usage of pci_error_handlers->reset_notify
  header: add offsetofend()
  dependencies: add deps for struct acpi_gpio_mapping
  patches: brcmfmac: fix netdev destructor
  patches: backport the probe_new for i2c drivers
  patches: adapt signature of proto_ops->accept
  header: add linux/refcount.h
  header: add dma_wmb()
  copy-list: add quantenna qtnfmac driver

 backport/backport-include/asm/barrier.h            |   4 +
 backport/backport-include/linux/acpi.h             |   9 +
 backport/backport-include/linux/ftrace_event.h     |  10 +
 backport/backport-include/linux/mii.h              |   7 +
 backport/backport-include/linux/moduleparam.h      |   5 +
 backport/backport-include/linux/random.h           |   7 +
 backport/backport-include/linux/refcount.h         |  47 +++++
 backport/backport-include/linux/skbuff.h           |  44 ++++
 backport/backport-include/linux/stddef.h           |  16 ++
 backport/backport-include/linux/wait.h             |   4 +
 backport/backport-include/trace/ftrace.h           |   9 +
 backport/compat/Makefile                           |   1 +
 backport/compat/backport-4.0.c                     |  46 +++++
 backport/compat/backport-4.10.c                    | 223 +++++++++++++++++++++
 copy-list                                          |   3 +-
 dependencies                                       |  15 +-
 .../0013-fix-makefile-includes/st-nci-spi.patch    |  10 -
 patches/0075-ndo-stats-64.cocci                    |   2 +-
 patches/0075-ndo-stats-64/usbnet.patch             |  26 +++
 patches/0079-netdev-destructor/brcmfmac.patch      |  35 ++++
 patches/0080-i2c-proble-new.cocci                  |  25 +++
 patches/0081-proto_ops-accept/nfc.patch            |  16 ++
 patches/0082-pci_error_handlers.cocci              |  32 +++
 patches/lib-rhashtable.patch                       |  17 +-
 24 files changed, 593 insertions(+), 20 deletions(-)
 create mode 100644 backport/backport-include/linux/ftrace_event.h
 create mode 100644 backport/backport-include/linux/refcount.h
 create mode 100644 backport/backport-include/linux/stddef.h
 create mode 100644 backport/backport-include/trace/ftrace.h
 create mode 100644 backport/compat/backport-4.10.c
 delete mode 100644 patches/0013-fix-makefile-includes/st-nci-spi.patch
 create mode 100644 patches/0075-ndo-stats-64/usbnet.patch
 create mode 100644 patches/0079-netdev-destructor/brcmfmac.patch
 create mode 100644 patches/0080-i2c-proble-new.cocci
 create mode 100644 patches/0081-proto_ops-accept/nfc.patch
 create mode 100644 patches/0082-pci_error_handlers.cocci

-- 
2.11.0

--
To unsubscribe from this list: send the line "unsubscribe backports" in

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

end of thread, other threads:[~2017-09-18  7:16 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-21 22:27 [PATCH 00/21] backports: multiple changes for kernel 3.13-rc6 Hauke Mehrtens
2017-08-21 22:27 ` [PATCH 01/21] copy: do not copy files removed in kernel 4.13 Hauke Mehrtens
2017-09-06 14:56   ` Johannes Berg
2017-08-21 22:27 ` [PATCH 02/21] patches: header fix for st-nci not needed any more Hauke Mehrtens
2017-08-21 22:27 ` [PATCH 03/21] header: skbuff: add skb_put_zero(), skb_put_data() and skb_put_u8() Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 04/21] header: skbuff: fix signature of skb_put(), skb_push() and () Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 05/21] header: backport mii_ethtool_{get,set}_link_ksettings() Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 06/21] patches: adapt the stat64 usage for usbnet Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 07/21] header: add module_param_hw_array() Hauke Mehrtens
2017-09-06 15:00   ` Johannes Berg
2017-08-21 22:28 ` [PATCH 08/21] header: backport devm_acpi_dev_add_driver_gpios() Hauke Mehrtens
2017-09-06 15:01   ` Johannes Berg
2017-09-06 21:58     ` Hauke Mehrtens
2017-09-08  9:25       ` Johannes Berg
2017-09-08  9:28         ` Johannes Berg
2017-08-21 22:28 ` [PATCH 09/21] header: add get_random_u32() Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 10/21] header: rename wait_queue_entry_t to wait_queue_t Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 11/21] backport: add __print_array() Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 12/21] compat: avoid usage of kvzalloc() in rhashtable.c Hauke Mehrtens
2017-09-06 15:05   ` Johannes Berg
2017-09-06 22:12     ` Hauke Mehrtens
2017-09-08  9:25       ` Johannes Berg
2017-08-21 22:28 ` [PATCH 13/21] patch: Allow usage of pci_error_handlers->reset_notify Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 14/21] header: add offsetofend() Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 15/21] dependencies: add deps for struct acpi_gpio_mapping Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 16/21] patches: brcmfmac: fix netdev destructor Hauke Mehrtens
2017-09-06 15:05   ` Johannes Berg
2017-09-07  7:48     ` Arend van Spriel
2017-09-07  9:04       ` compilation errors in ath10k driver with latest backports git KAVITA MATHUR
2017-09-07  9:17         ` Arend van Spriel
2017-09-13 19:36   ` [PATCH 16/21] patches: brcmfmac: fix netdev destructor Arend van Spriel
2017-09-14  7:21     ` Johannes Berg
2017-09-17 22:00       ` Hauke Mehrtens
2017-09-18  7:16         ` Arend van Spriel
2017-08-21 22:28 ` [PATCH 17/21] patches: backport the probe_new for i2c drivers Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 18/21] patches: adapt signature of proto_ops->accept Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 19/21] header: add linux/refcount.h Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 20/21] header: add dma_wmb() Hauke Mehrtens
2017-08-21 22:28 ` [PATCH 21/21] copy-list: add quantenna qtnfmac driver Hauke Mehrtens
2017-09-06 15:10   ` Johannes Berg
2017-09-06 15:13     ` Johannes Berg
2017-09-06 22:14       ` Hauke Mehrtens
2017-09-06 15:14     ` Johannes Berg
2017-09-05  9:00 ` [PATCH 00/21] backports: multiple changes for kernel 3.13-rc6 Johannes Berg
2017-09-05 21:41   ` Hauke Mehrtens
2017-09-06  7:23     ` Johannes Berg
2017-09-13 20:00   ` Arend van Spriel
2017-09-17 22:07     ` Hauke Mehrtens

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.