All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hauke Mehrtens <hauke@hauke-m.de>
To: johannes@sipsolutions.net
Cc: backports@vger.kernel.org, Hauke Mehrtens <hauke@hauke-m.de>
Subject: [PATCH 00/12] backports: Multiple fixes for kernel 4.20
Date: Sun,  2 Dec 2018 12:52:14 +0100	[thread overview]
Message-ID: <20181202115226.3594-1-hauke@hauke-m.de> (raw)

This fixes multiple problems in backport when using it with kernel 4.20-rc4.

"ckmake --allyesconfig" results with kernel 4.20-rc4:

1   3.10.108            [  LINK  ]
2   3.11.10             [  LINK  ]
3   3.12.74             [  OK  ]
4   3.13.11             [  LINK  ]
5   3.14.79             [  LINK  ]
6   3.15.10             [  LINK  ]
7   3.16.61             [  OK  ]
8   3.17.8              [  LINK  ]
9   3.18.128            [  OK  ]
10  3.19.8              [  LINK  ]
11  4.0.9               [  LINK  ]
12  4.1.52              [  OK  ]
13  4.2.8               [  LINK  ]
14  4.3.6               [  LINK  ]
15  4.4.166             [  OK  ]
16  4.5.7               [  OK  ]
17  4.6.7               [  OK  ]
18  4.7.10              [  OK  ]
19  4.8.17              [  OK  ]
20  4.9.142             [  OK  ]
21  4.10.17             [  OK  ]
22  4.11.12             [  OK  ]
23  4.12.14             [  OK  ]
24  4.13.16             [  OK  ]
25  4.14.85             [  OK  ]
26  4.15.18             [  OK  ]
27  4.16.18             [  OK  ]
28  4.17.19             [  OK  ]
29  4.18.20             [  OK  ]
30  4.19.6              [  OK  ]


Hauke Mehrtens (12):
  backports: Refresh patches on kernel 4.20-rc4
  backports: Add page_ref_count() and page_ref_sub_and_test()
  backports: Add page_frag_alloc() and __page_frag_cache_drain()
  backports: Add missing include for mt76
  backports: Add device_get_mac_address()
  backports: Remove BPAUTO_CRYPTO_SKCIPHER
  backports: Fix pci_alloc_irq_vectors() backport
  backports: Revert "dependencies: Make WIL6210 depend on kernel >= 4.8"
  backports: Make TI WLCORE depend on kernel >= 4.2
  backports: Remove unused code from backport-public_key.h
  backports: Remove unused default configurations
  backports: Update wifi default configuration

 backport/backport-include/crypto/skcipher.h        | 454 -------------------
 backport/backport-include/linux/gfp.h              |  12 +
 backport/backport-include/linux/page_ref.h         |  10 +
 backport/backport-include/linux/pci.h              |   8 +
 backport/backport-include/linux/property.h         |  15 +
 backport/compat/Kconfig                            |   8 -
 backport/compat/Makefile                           |   2 -
 backport/compat/backport-4.10.c                    |  22 +
 backport/compat/backport-4.3.c                     |  57 +++
 backport/compat/backport-4.8.c                     |  49 +-
 backport/defconfigs/alx                            |   1 -
 backport/defconfigs/ath10k                         |   2 +
 backport/defconfigs/igb                            |   2 -
 backport/defconfigs/media                          | 498 ---------------------
 backport/defconfigs/wifi                           |  13 +
 dependencies                                       |  20 +-
 .../0002-disable-dump-adjust-on-old-kernels.patch  |   4 +-
 .../include_net_cfg80211.patch                     |   2 +-
 .../net_wireless_core.patch                        |   2 +-
 patches/0013-fix-makefile-includes/mt76.patch      |  10 +
 .../0014-netlink_seq/net_wireless_nl80211.patch    |   2 +-
 .../drivers_net_wireless_libertas_if_usb.patch     |   4 +-
 .../drivers_net_wireless_iwlwifi_iwl-debug.patch   |   6 +-
 patches/0021-umode_t-api-change/ath9k.patch        |   2 +-
 patches/0024-led-blink-api/mac80211.patch          |   2 +-
 patches/0025-usb-sg/usbnet.patch                   |   4 +-
 patches/0053-possible_net_t.patch                  |   2 +-
 patches/0055-name_assign_type/brcmfmac.patch       |   2 +-
 patches/0069-iwlwifi-pd-string-fix.patch           |   8 +-
 patches/0070-mac80211-fils.patch                   |   2 +-
 patches/0071-skb-head_frag/wireless.patch          |   2 +-
 patches/0077-genl-ro-after-init/hwsim.patch        |   2 +-
 patches/0077-genl-ro-after-init/nl80211.patch      |   2 +-
 patches/0085-iwlwifi-pci-device-removal.patch      |   4 +-
 patches/0090-use-skb_pad.patch                     |  11 -
 patches/crypto-skcipher.patch                      |  32 --
 patches/verify.patch                               |  37 ++
 37 files changed, 257 insertions(+), 1058 deletions(-)
 delete mode 100644 backport/backport-include/crypto/skcipher.h
 create mode 100644 backport/backport-include/linux/property.h
 delete mode 100644 backport/defconfigs/alx
 delete mode 100644 backport/defconfigs/igb
 delete mode 100644 backport/defconfigs/media
 create mode 100644 patches/0013-fix-makefile-includes/mt76.patch
 delete mode 100644 patches/0090-use-skb_pad.patch
 delete mode 100644 patches/crypto-skcipher.patch

-- 
2.11.0

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

             reply	other threads:[~2018-12-02 11:52 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-02 11:52 Hauke Mehrtens [this message]
2018-12-02 11:52 ` [PATCH 01/12] backports: Refresh patches on kernel 4.20-rc4 Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 02/12] backports: Add page_ref_count() and page_ref_sub_and_test() Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 03/12] backports: Add page_frag_alloc() and __page_frag_cache_drain() Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 04/12] backports: Add missing include for mt76 Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 05/12] backports: Add device_get_mac_address() Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 06/12] backports: Remove BPAUTO_CRYPTO_SKCIPHER Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 07/12] backports: Fix pci_alloc_irq_vectors() backport Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 08/12] backports: Revert "dependencies: Make WIL6210 depend on kernel >= 4.8" Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 09/12] backports: Make TI WLCORE depend on kernel >= 4.2 Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 10/12] backports: Remove unused code from backport-public_key.h Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 11/12] backports: Remove unused default configurations Hauke Mehrtens
2018-12-02 11:52 ` [PATCH 12/12] backports: Update wifi default configuration Hauke Mehrtens
2018-12-07 20:01 ` [PATCH 00/12] backports: Multiple fixes for kernel 4.20 Hauke Mehrtens

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181202115226.3594-1-hauke@hauke-m.de \
    --to=hauke@hauke-m.de \
    --cc=backports@vger.kernel.org \
    --cc=johannes@sipsolutions.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.