backports.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/12] backports: Update to kernel 5.3-rc3
@ 2019-08-05 12:06 Hauke Mehrtens
  2019-08-05 12:06 ` [PATCH 01/12] patches: Refresh patches against " Hauke Mehrtens
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Hauke Mehrtens @ 2019-08-05 12:06 UTC (permalink / raw)
  To: backports; +Cc: johannes, Hauke Mehrtens

This adapts backports for kernel 5.3-rc3, most of the changes are minor.

This also contains an update of KConfig which now generates some files 
with lex and yacc.

1   3.12.74             [  OK  ]
2   3.13.11             [  LINK  ]
3   3.14.79             [  LINK  ]
4   3.16.71             [  OK  ]
5   3.18.140            [  OK  ]
6   4.0.9               [  LINK  ]
7   4.1.52              [  OK  ]
8   4.2.8               [  LINK  ]
9   4.3.6               [  LINK  ]
10  4.4.186             [  OK  ]
11  4.5.7               [  OK  ]
12  4.6.7               [  OK  ]
13  4.7.10              [  OK  ]
14  4.8.17              [  OK  ]
15  4.9.186             [  OK  ]
16  4.10.17             [  OK  ]
17  4.11.12             [  OK  ]
18  4.12.14             [  OK  ]
19  4.13.16             [  OK  ]
20  4.14.134            [  OK  ]
21  4.15.18             [  OK  ]
22  4.16.18             [  OK  ]
23  4.17.19             [  OK  ]
24  4.18.20             [  OK  ]
25  4.19.63             [  OK  ]
26  4.20.17             [  OK  ]
27  5.0.21              [  OK  ]
28  5.1.21              [  OK  ]
29  5.2.5               [  OK  ]

Hauke Mehrtens (12):
  patches: Refresh patches against kernel 5.3-rc3
  header: Add BITS_PER_TYPE()
  header: Add ktime_get_boottime_ns()
  header: Add nl80211_validate_nested()
  header: Add trace_##name##_enabled()
  header: Remove skb_xmit_more()
  backport: Add genl_callback_extack() function
  backport: Add arc4 library
  patches: Add include in cfg80211.h
  patches: Do not use GRO_CONSUMED on kernel < 4.11
  dependencies: Make AIRO depend on kernel 4.20
  kconfig: Update to KConfig to version from kernel 4.17

 backport/.gitignore                           |    2 -
 backport/backport-include/linux/bitops.h      |    4 +
 backport/backport-include/linux/skbuff.h      |    9 -
 backport/backport-include/linux/timekeeping.h |   10 +-
 backport/backport-include/linux/tracepoint.h  |  132 +
 backport/backport-include/net/genetlink.h     |   10 +
 backport/backport-include/net/netlink.h       |   12 +
 backport/compat/Kconfig                       |   10 +
 backport/kconf/.gitignore                     |   17 +
 backport/kconf/Makefile                       |    8 +
 backport/kconf/conf.c                         |  110 +-
 backport/kconf/confdata.c                     |   10 +-
 backport/kconf/expr.c                         |  193 +-
 backport/kconf/expr.h                         |   93 +-
 backport/kconf/kconf_id.c                     |   53 +
 backport/kconf/list.h                         |    1 +
 backport/kconf/lkc.h                          |    6 +-
 backport/kconf/lkc_proto.h                    |    3 +-
 backport/kconf/lxdialog/.gitignore            |    4 +
 backport/kconf/lxdialog/BIG.FAT.WARNING       |    4 +
 backport/kconf/lxdialog/check-lxdialog.sh     |    4 +-
 backport/kconf/mconf.c                        |    2 +-
 backport/kconf/menu.c                         |  195 +-
 backport/kconf/symbol.c                       |   82 +-
 backport/kconf/util.c                         |   26 +-
 backport/kconf/zconf.hash.c                   |  297 --
 backport/kconf/zconf.l                        |  372 +++
 backport/kconf/zconf.lex.c                    | 2473 -----------------
 backport/kconf/zconf.tab.c                    | 2471 ----------------
 backport/kconf/zconf.y                        |  782 ++++++
 dependencies                                  |    4 +
 ...2-disable-dump-adjust-on-old-kernels.patch |    4 +-
 .../include_net_cfg80211.patch                |    2 +-
 .../net_wireless_core.patch                   |    2 +-
 .../0013-fix-makefile-includes/brcmfmac.patch |    2 +-
 .../0013-fix-makefile-includes/cfg80211.patch |   16 +
 .../net_wireless_nl80211.patch                |    2 +-
 patches/0028-select_queue/mwifiex.patch       |    2 +-
 patches/0028-select_queue/rtl8188eu.patch     |    2 +-
 patches/0028-select_queue/rtl8723bs.patch     |    2 +-
 patches/0053-possible_net_t.patch             |    2 +-
 patches/0055-name_assign_type/brcmfmac.patch  |    2 +-
 .../0059-skb_xmit_more/skb_no_xmit_more.cocci |    5 -
 patches/0069-iwlwifi-pd-string-fix.patch      |    2 +-
 patches/0070-mac80211-fils.patch              |    2 +-
 patches/0077-genl-ro-after-init/hwsim.patch   |    2 +-
 patches/0077-genl-ro-after-init/nl80211.patch |    2 +-
 patches/0078-genl-extack.cocci                |    6 +
 patches/0079-netdev-destructor/brcmfmac.patch |    4 +-
 patches/0085-iwlwifi-pci-device-removal.patch |    4 +-
 patches/0089-unknown-dmi/brcmfmac.patch       |    4 +-
 patches/0090-remove-GRO_CONSUMED.patch        |   16 +
 52 files changed, 2031 insertions(+), 5453 deletions(-)
 create mode 100644 backport/kconf/.gitignore
 create mode 100644 backport/kconf/kconf_id.c
 create mode 100644 backport/kconf/lxdialog/.gitignore
 create mode 100644 backport/kconf/lxdialog/BIG.FAT.WARNING
 delete mode 100644 backport/kconf/zconf.hash.c
 create mode 100644 backport/kconf/zconf.l
 delete mode 100644 backport/kconf/zconf.lex.c
 delete mode 100644 backport/kconf/zconf.tab.c
 create mode 100644 backport/kconf/zconf.y
 create mode 100644 patches/0013-fix-makefile-includes/cfg80211.patch
 delete mode 100644 patches/0059-skb_xmit_more/skb_no_xmit_more.cocci
 create mode 100644 patches/0090-remove-GRO_CONSUMED.patch

-- 
2.20.1

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

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

end of thread, other threads:[~2019-08-05 12:08 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-05 12:06 [PATCH 00/12] backports: Update to kernel 5.3-rc3 Hauke Mehrtens
2019-08-05 12:06 ` [PATCH 01/12] patches: Refresh patches against " Hauke Mehrtens
2019-08-05 12:06 ` [PATCH 02/12] header: Add BITS_PER_TYPE() Hauke Mehrtens
2019-08-05 12:06 ` [PATCH 03/12] header: Add ktime_get_boottime_ns() Hauke Mehrtens
2019-08-05 12:06 ` [PATCH 04/12] header: Add nl80211_validate_nested() Hauke Mehrtens
2019-08-05 12:06 ` [PATCH 05/12] header: Add trace_##name##_enabled() Hauke Mehrtens
2019-08-05 12:06 ` [PATCH 06/12] header: Remove skb_xmit_more() Hauke Mehrtens
2019-08-05 12:06 ` [PATCH 07/12] backport: Add genl_callback_extack() function Hauke Mehrtens
2019-08-05 12:07 ` [PATCH 08/12] backport: Add arc4 library Hauke Mehrtens
2019-08-05 12:07 ` [PATCH 09/12] patches: Add include in cfg80211.h Hauke Mehrtens
2019-08-05 12:07 ` [PATCH 10/12] patches: Do not use GRO_CONSUMED on kernel < 4.11 Hauke Mehrtens
2019-08-05 12:07 ` [PATCH 11/12] dependencies: Make AIRO depend on kernel 4.20 Hauke Mehrtens
2019-08-05 12:07 ` [PATCH 12/12] kconfig: Update to KConfig to version from kernel 4.17 Hauke Mehrtens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).