This is the start of the stable review cycle for the 5.16.14 release.
There are 37 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Fri, 11 Mar 2022 15:58:48 +0000.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v5.x/stable-review/patch-5.16.14-rc…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.16.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 5.16.14-rc1
Emmanuel Gil Peyrot <linkmauve(a)linkmauve.fr>
ARM: fix build error when BPF_SYSCALL is disabled
James Morse <james.morse(a)arm.com>
arm64: proton-pack: Include unprivileged eBPF status in Spectre v2 mitigation reporting
James Morse <james.morse(a)arm.com>
arm64: Use the clearbhb instruction in mitigations
James Morse <james.morse(a)arm.com>
KVM: arm64: Allow SMCCC_ARCH_WORKAROUND_3 to be discovered and migrated
James Morse <james.morse(a)arm.com>
arm64: Mitigate spectre style branch history side channels
James Morse <james.morse(a)arm.com>
arm64: proton-pack: Report Spectre-BHB vulnerabilities as part of Spectre-v2
James Morse <james.morse(a)arm.com>
arm64: Add percpu vectors for EL1
James Morse <james.morse(a)arm.com>
arm64: entry: Add macro for reading symbol addresses from the trampoline
James Morse <james.morse(a)arm.com>
arm64: entry: Add vectors that have the bhb mitigation sequences
James Morse <james.morse(a)arm.com>
arm64: entry: Add non-kpti __bp_harden_el1_vectors for mitigations
James Morse <james.morse(a)arm.com>
arm64: entry: Allow the trampoline text to occupy multiple pages
James Morse <james.morse(a)arm.com>
arm64: entry: Make the kpti trampoline's kpti sequence optional
James Morse <james.morse(a)arm.com>
arm64: entry: Move trampoline macros out of ifdef'd section
James Morse <james.morse(a)arm.com>
arm64: entry: Don't assume tramp_vectors is the start of the vectors
James Morse <james.morse(a)arm.com>
arm64: entry: Allow tramp_alias to access symbols after the 4K boundary
James Morse <james.morse(a)arm.com>
arm64: entry: Move the trampoline data page before the text page
James Morse <james.morse(a)arm.com>
arm64: entry: Free up another register on kpti's tramp_exit path
James Morse <james.morse(a)arm.com>
arm64: entry: Make the trampoline cleanup optional
James Morse <james.morse(a)arm.com>
KVM: arm64: Allow indirect vectors to be used without SPECTRE_V3A
James Morse <james.morse(a)arm.com>
arm64: spectre: Rename spectre_v4_patch_fw_mitigation_conduit
James Morse <james.morse(a)arm.com>
arm64: entry.S: Add ventry overflow sanity checks
Joey Gouly <joey.gouly(a)arm.com>
arm64: cpufeature: add HWCAP for FEAT_RPRES
Joey Gouly <joey.gouly(a)arm.com>
arm64: cpufeature: add HWCAP for FEAT_AFP
Joey Gouly <joey.gouly(a)arm.com>
arm64: add ID_AA64ISAR2_EL1 sys register
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: include unprivileged BPF status in Spectre V2 reporting
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: Spectre-BHB workaround
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: use LOADADDR() to get load address of sections
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: early traps initialisation
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: report Spectre v2 status through sysfs
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Warn about eIBRS + LFENCE + Unprivileged eBPF + SMT
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Warn about Spectre v2 LFENCE mitigation
Kim Phillips <kim.phillips(a)amd.com>
x86/speculation: Update link to AMD speculation whitepaper
Kim Phillips <kim.phillips(a)amd.com>
x86/speculation: Use generic retpoline by default on AMD
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Include unprivileged eBPF status in Spectre v2 mitigation reporting
Peter Zijlstra <peterz(a)infradead.org>
Documentation/hw-vuln: Update spectre doc
Peter Zijlstra <peterz(a)infradead.org>
x86/speculation: Add eIBRS + Retpoline options
Peter Zijlstra (Intel) <peterz(a)infradead.org>
x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE
-------------
Diffstat:
Documentation/admin-guide/hw-vuln/spectre.rst | 50 +--
Documentation/admin-guide/kernel-parameters.txt | 8 +-
Documentation/arm64/cpu-feature-registers.rst | 17 ++
Documentation/arm64/elf_hwcaps.rst | 8 +
Makefile | 4 +-
arch/arm/include/asm/assembler.h | 10 +
arch/arm/include/asm/spectre.h | 32 ++
arch/arm/include/asm/vmlinux.lds.h | 35 ++-
arch/arm/kernel/Makefile | 2 +
arch/arm/kernel/entry-armv.S | 79 ++++-
arch/arm/kernel/entry-common.S | 24 ++
arch/arm/kernel/spectre.c | 71 +++++
arch/arm/kernel/traps.c | 65 +++-
arch/arm/mm/Kconfig | 11 +
arch/arm/mm/proc-v7-bugs.c | 207 ++++++++++---
arch/arm64/Kconfig | 9 +
arch/arm64/include/asm/assembler.h | 53 ++++
arch/arm64/include/asm/cpu.h | 1 +
arch/arm64/include/asm/cpufeature.h | 29 ++
arch/arm64/include/asm/cputype.h | 8 +
arch/arm64/include/asm/fixmap.h | 6 +-
arch/arm64/include/asm/hwcap.h | 2 +
arch/arm64/include/asm/insn.h | 1 +
arch/arm64/include/asm/kvm_host.h | 5 +
arch/arm64/include/asm/sections.h | 5 +
arch/arm64/include/asm/spectre.h | 4 +
arch/arm64/include/asm/sysreg.h | 18 ++
arch/arm64/include/asm/vectors.h | 73 +++++
arch/arm64/include/uapi/asm/hwcap.h | 2 +
arch/arm64/include/uapi/asm/kvm.h | 5 +
arch/arm64/kernel/cpu_errata.c | 7 +
arch/arm64/kernel/cpufeature.c | 25 ++
arch/arm64/kernel/cpuinfo.c | 3 +
arch/arm64/kernel/entry.S | 214 +++++++++----
arch/arm64/kernel/image-vars.h | 4 +
arch/arm64/kernel/proton-pack.c | 391 +++++++++++++++++++++++-
arch/arm64/kernel/vmlinux.lds.S | 2 +-
arch/arm64/kvm/arm.c | 5 +-
arch/arm64/kvm/hyp/hyp-entry.S | 9 +
arch/arm64/kvm/hyp/nvhe/mm.c | 4 +-
arch/arm64/kvm/hyp/vhe/switch.c | 9 +-
arch/arm64/kvm/hypercalls.c | 12 +
arch/arm64/kvm/psci.c | 18 +-
arch/arm64/kvm/sys_regs.c | 2 +-
arch/arm64/mm/mmu.c | 12 +-
arch/arm64/tools/cpucaps | 1 +
arch/x86/include/asm/cpufeatures.h | 2 +-
arch/x86/include/asm/nospec-branch.h | 16 +-
arch/x86/kernel/alternative.c | 8 +-
arch/x86/kernel/cpu/bugs.c | 204 ++++++++++---
arch/x86/lib/retpoline.S | 2 +-
arch/x86/net/bpf_jit_comp.c | 2 +-
include/linux/arm-smccc.h | 5 +
include/linux/bpf.h | 12 +
kernel/sysctl.c | 7 +
tools/arch/x86/include/asm/cpufeatures.h | 2 +-
56 files changed, 1606 insertions(+), 216 deletions(-)
This is the start of the stable review cycle for the 4.14.271 release.
There are 18 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Fri, 11 Mar 2022 15:58:48 +0000.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.14.271-r…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.14.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 4.14.271-rc1
Emmanuel Gil Peyrot <linkmauve(a)linkmauve.fr>
ARM: fix build error when BPF_SYSCALL is disabled
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: include unprivileged BPF status in Spectre V2 reporting
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: Spectre-BHB workaround
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: use LOADADDR() to get load address of sections
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: early traps initialisation
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: report Spectre v2 status through sysfs
Mark Rutland <mark.rutland(a)arm.com>
arm/arm64: smccc/psci: add arm_smccc_1_1_get_conduit()
Steven Price <steven.price(a)arm.com>
arm/arm64: Provide a wrapper for SMCCC 1.1 calls
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Warn about eIBRS + LFENCE + Unprivileged eBPF + SMT
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Warn about Spectre v2 LFENCE mitigation
Kim Phillips <kim.phillips(a)amd.com>
x86/speculation: Update link to AMD speculation whitepaper
Kim Phillips <kim.phillips(a)amd.com>
x86/speculation: Use generic retpoline by default on AMD
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Include unprivileged eBPF status in Spectre v2 mitigation reporting
Peter Zijlstra <peterz(a)infradead.org>
Documentation/hw-vuln: Update spectre doc
Peter Zijlstra <peterz(a)infradead.org>
x86/speculation: Add eIBRS + Retpoline options
Peter Zijlstra (Intel) <peterz(a)infradead.org>
x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE
Peter Zijlstra <peterz(a)infradead.org>
x86,bugs: Unconditionally allow spectre_v2=retpoline,amd
Borislav Petkov <bp(a)suse.de>
x86/speculation: Merge one test in spectre_v2_user_select_mitigation()
-------------
Diffstat:
Documentation/admin-guide/hw-vuln/spectre.rst | 48 ++++--
Documentation/admin-guide/kernel-parameters.txt | 8 +-
Makefile | 4 +-
arch/arm/include/asm/assembler.h | 10 ++
arch/arm/include/asm/spectre.h | 32 ++++
arch/arm/kernel/Makefile | 2 +
arch/arm/kernel/entry-armv.S | 79 ++++++++-
arch/arm/kernel/entry-common.S | 24 +++
arch/arm/kernel/spectre.c | 71 ++++++++
arch/arm/kernel/traps.c | 65 ++++++-
arch/arm/kernel/vmlinux-xip.lds.S | 37 ++--
arch/arm/kernel/vmlinux.lds.S | 37 ++--
arch/arm/mm/Kconfig | 11 ++
arch/arm/mm/proc-v7-bugs.c | 198 +++++++++++++++++++---
arch/x86/include/asm/cpufeatures.h | 2 +-
arch/x86/include/asm/nospec-branch.h | 16 +-
arch/x86/kernel/cpu/bugs.c | 214 +++++++++++++++++-------
drivers/firmware/psci.c | 15 ++
include/linux/arm-smccc.h | 74 ++++++++
include/linux/bpf.h | 11 ++
kernel/sysctl.c | 8 +
tools/arch/x86/include/asm/cpufeatures.h | 2 +-
22 files changed, 822 insertions(+), 146 deletions(-)
This is the start of the stable review cycle for the 5.4.184 release.
There are 18 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Fri, 11 Mar 2022 15:58:48 +0000.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v5.x/stable-review/patch-5.4.184-rc…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.4.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 5.4.184-rc1
Emmanuel Gil Peyrot <linkmauve(a)linkmauve.fr>
ARM: fix build error when BPF_SYSCALL is disabled
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: include unprivileged BPF status in Spectre V2 reporting
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: Spectre-BHB workaround
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: use LOADADDR() to get load address of sections
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: early traps initialisation
Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk>
ARM: report Spectre v2 status through sysfs
Mark Rutland <mark.rutland(a)arm.com>
arm/arm64: smccc/psci: add arm_smccc_1_1_get_conduit()
Steven Price <steven.price(a)arm.com>
arm/arm64: Provide a wrapper for SMCCC 1.1 calls
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Warn about eIBRS + LFENCE + Unprivileged eBPF + SMT
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Warn about Spectre v2 LFENCE mitigation
Kim Phillips <kim.phillips(a)amd.com>
x86/speculation: Update link to AMD speculation whitepaper
Kim Phillips <kim.phillips(a)amd.com>
x86/speculation: Use generic retpoline by default on AMD
Josh Poimboeuf <jpoimboe(a)redhat.com>
x86/speculation: Include unprivileged eBPF status in Spectre v2 mitigation reporting
Peter Zijlstra <peterz(a)infradead.org>
Documentation/hw-vuln: Update spectre doc
Peter Zijlstra <peterz(a)infradead.org>
x86/speculation: Add eIBRS + Retpoline options
Peter Zijlstra (Intel) <peterz(a)infradead.org>
x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE
Peter Zijlstra <peterz(a)infradead.org>
x86,bugs: Unconditionally allow spectre_v2=retpoline,amd
Borislav Petkov <bp(a)suse.de>
x86/speculation: Merge one test in spectre_v2_user_select_mitigation()
-------------
Diffstat:
Documentation/admin-guide/hw-vuln/spectre.rst | 48 ++++--
Documentation/admin-guide/kernel-parameters.txt | 8 +-
Makefile | 4 +-
arch/arm/include/asm/assembler.h | 10 ++
arch/arm/include/asm/spectre.h | 32 ++++
arch/arm/kernel/Makefile | 2 +
arch/arm/kernel/entry-armv.S | 79 ++++++++-
arch/arm/kernel/entry-common.S | 24 +++
arch/arm/kernel/spectre.c | 71 ++++++++
arch/arm/kernel/traps.c | 65 ++++++-
arch/arm/kernel/vmlinux.lds.h | 35 +++-
arch/arm/mm/Kconfig | 11 ++
arch/arm/mm/proc-v7-bugs.c | 199 +++++++++++++++++++---
arch/x86/include/asm/cpufeatures.h | 2 +-
arch/x86/include/asm/nospec-branch.h | 16 +-
arch/x86/kernel/cpu/bugs.c | 216 +++++++++++++++++-------
drivers/firmware/psci/psci.c | 15 ++
include/linux/arm-smccc.h | 74 ++++++++
include/linux/bpf.h | 12 ++
kernel/sysctl.c | 8 +
tools/arch/x86/include/asm/cpufeatures.h | 2 +-
21 files changed, 796 insertions(+), 137 deletions(-)
Dear Sir or Madam,
It is our pleasure to learn your company from Google,hoping
our belowed introduction letter would not take much of your time!
We,Chaozhou FTD Ceramic Co.,Ltd,as one of the leading
trading company in sanitary ware.Our core business is to have resources
integration of our local sanitary ware factories and offer our
customers good quality products basd on reasonable price.The reason why
we can compete with factories,survive and grow up is because we have
good resources and our professional QC do 100% on quality control and
make sure that all the products offered by us are within quality
standard,which can minimize the complain from quality.
To learn more about our products,you are welcome to visit
our website any time.
Look forward to hearing from you soon,thank you!
Best regards
Ivan
Chaozhou FTD Ceramic Cooperation Limited
Liya Indu.Zone,Guxiang,Chaozhou,Guangdong,China
Tel: 0086-768-2338905
Fax: 0086-768-2338905
Cell: 0086-186 8805 0197
E-mail: [1]ivan(a)ftdceramic.net
Website: [2]www.ftdceramic.com
References
1. mailto:ivan@ftdceramic.net
2. file:///C:/Users/Administrator/AppData/Roaming/Foxmail7/Temp-5164-202103051…
This is the start of the stable review cycle for the 4.14.270 release.
There are 42 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Wed, 09 Mar 2022 09:16:25 +0000.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.14.270-r…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.14.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 4.14.270-rc1
Vladimir Oltean <vladimir.oltean(a)nxp.com>
net: dcb: disable softirqs in dcbnl_flush_dev()
Hugh Dickins <hughd(a)google.com>
memfd: fix F_SEAL_WRITE after shmem huge page allocated
William Mahon <wmahon(a)chromium.org>
HID: add mapping for KEY_ALL_APPLICATIONS
Hans de Goede <hdegoede(a)redhat.com>
Input: elan_i2c - fix regulator enable count imbalance after suspend/resume
Hans de Goede <hdegoede(a)redhat.com>
Input: elan_i2c - move regulator_[en|dis]able() out of elan_[en|dis]able_power()
Jiasheng Jiang <jiasheng(a)iscas.ac.cn>
nl80211: Handle nla_memdup failures in handle_nan_filter
Jia-Ju Bai <baijiaju1990(a)gmail.com>
net: chelsio: cxgb3: check the return value of pci_find_capability()
Jiasheng Jiang <jiasheng(a)iscas.ac.cn>
soc: fsl: qe: Check of ioremap return value
Randy Dunlap <rdunlap(a)infradead.org>
ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions
Vincent Mailhol <mailhol.vincent(a)wanadoo.fr>
can: gs_usb: change active_channels's type from atomic_t to u8
Jann Horn <jannh(a)google.com>
efivars: Respect "block" flag in efivar_entry_set_safe()
Zheyu Ma <zheyuma97(a)gmail.com>
net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()
Randy Dunlap <rdunlap(a)infradead.org>
net: sxgbe: fix return value of __setup handler
Randy Dunlap <rdunlap(a)infradead.org>
net: stmmac: fix return value of __setup handler
Nicolas Escande <nico.escande(a)gmail.com>
mac80211: fix forwarded mesh frames AC & queue selection
Johan Hovold <johan(a)kernel.org>
firmware: qemu_fw_cfg: fix kobject leak in probe error path
Qiushi Wu <wu000273(a)umn.edu>
firmware: Fix a reference count leak.
D. Wythe <alibuda(a)linux.alibaba.com>
net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error cause by server
D. Wythe <alibuda(a)linux.alibaba.com>
net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error generated by client
Vladimir Oltean <vladimir.oltean(a)nxp.com>
net: dcb: flush lingering app table entries for unregistered devices
Sven Eckelmann <sven(a)narfation.org>
batman-adv: Don't expect inter-netns unique iflink indices
Sven Eckelmann <sven(a)narfation.org>
batman-adv: Request iflink once in batadv_get_real_netdevice
Sven Eckelmann <sven(a)narfation.org>
batman-adv: Request iflink once in batadv-on-batadv check
Florian Westphal <fw(a)strlen.de>
netfilter: nf_queue: fix possible use-after-free
Florian Westphal <fw(a)strlen.de>
netfilter: nf_queue: don't assume sk is full socket
Leon Romanovsky <leonro(a)nvidia.com>
xfrm: enforce validity of offload input flags
Eric Dumazet <edumazet(a)google.com>
netfilter: fix use-after-free in __nf_register_net_hook()
Jiri Bohac <jbohac(a)suse.cz>
xfrm: fix MTU regression
Marek Vasut <marex(a)denx.de>
ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min
Zhen Ni <nizhen(a)uniontech.com>
ALSA: intel_hdmi: Fix reference to PCM buffer address
Sergey Shtylyov <s.shtylyov(a)omp.ru>
ata: pata_hpt37x: fix PCI clock detection
Hangyu Hua <hbh25y(a)gmail.com>
usb: gadget: clear related members when goto fail
Hangyu Hua <hbh25y(a)gmail.com>
usb: gadget: don't release an existing dev->buf
Daniele Palmas <dnlplm(a)gmail.com>
net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990
Wolfram Sang <wsa(a)kernel.org>
i2c: qup: allow COMPILE_TEST
Wolfram Sang <wsa(a)kernel.org>
i2c: cadence: allow COMPILE_TEST
Yongzhi Liu <lyz_cs(a)pku.edu.cn>
dmaengine: shdma: Fix runtime PM imbalance on error
Ronnie Sahlberg <lsahlber(a)redhat.com>
cifs: fix double free race when mount fails in cifs_get_root()
José Expósito <jose.exposito89(a)gmail.com>
Input: clear BTN_RIGHT/MIDDLE on buttonpads
Eric Anholt <eric(a)anholt.net>
i2c: bcm2835: Avoid clock stretching timeouts
JaeMan Park <jaeman(a)google.com>
mac80211_hwsim: initialize ieee80211_tx_info at hw_scan_work
Benjamin Beichler <benjamin.beichler(a)uni-rostock.de>
mac80211_hwsim: report NOACK frames in tx_status
-------------
Diffstat:
Makefile | 4 +-
arch/arm/mm/mmu.c | 2 +
drivers/ata/pata_hpt37x.c | 4 +-
drivers/dma/sh/shdma-base.c | 4 +-
drivers/firmware/efi/vars.c | 5 +-
drivers/firmware/qemu_fw_cfg.c | 10 ++--
drivers/hid/hid-debug.c | 4 +-
drivers/hid/hid-input.c | 2 +
drivers/i2c/busses/Kconfig | 4 +-
drivers/i2c/busses/i2c-bcm2835.c | 11 ++++
drivers/input/input.c | 6 +++
drivers/input/mouse/elan_i2c_core.c | 64 ++++++++---------------
drivers/net/arcnet/com20020-pci.c | 3 ++
drivers/net/can/usb/gs_usb.c | 10 ++--
drivers/net/ethernet/chelsio/cxgb3/t3_hw.c | 2 +
drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c | 6 +--
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 6 +--
drivers/net/usb/cdc_mbim.c | 5 ++
drivers/net/wireless/mac80211_hwsim.c | 13 +++++
drivers/soc/fsl/qe/qe_io.c | 2 +
drivers/usb/gadget/legacy/inode.c | 10 ++--
fs/cifs/cifsfs.c | 1 +
include/net/netfilter/nf_queue.h | 2 +-
include/uapi/linux/input-event-codes.h | 3 +-
include/uapi/linux/xfrm.h | 6 +++
mm/shmem.c | 7 +--
net/batman-adv/hard-interface.c | 29 ++++++----
net/dcb/dcbnl.c | 44 ++++++++++++++++
net/ipv6/ip6_output.c | 11 ++--
net/mac80211/rx.c | 4 +-
net/netfilter/core.c | 5 +-
net/netfilter/nf_queue.c | 23 ++++++--
net/netfilter/nfnetlink_queue.c | 12 +++--
net/smc/smc_core.c | 5 +-
net/wireless/nl80211.c | 12 +++++
net/xfrm/xfrm_device.c | 6 ++-
sound/soc/soc-ops.c | 4 +-
sound/x86/intel_hdmi_audio.c | 2 +-
38 files changed, 250 insertions(+), 103 deletions(-)
This is the start of the stable review cycle for the 4.9.305 release.
There are 32 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Wed, 09 Mar 2022 09:16:25 +0000.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.9.305-rc…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.9.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 4.9.305-rc1
Vladimir Oltean <vladimir.oltean(a)nxp.com>
net: dcb: disable softirqs in dcbnl_flush_dev()
Hugh Dickins <hughd(a)google.com>
memfd: fix F_SEAL_WRITE after shmem huge page allocated
William Mahon <wmahon(a)chromium.org>
HID: add mapping for KEY_ALL_APPLICATIONS
Hans de Goede <hdegoede(a)redhat.com>
Input: elan_i2c - fix regulator enable count imbalance after suspend/resume
Hans de Goede <hdegoede(a)redhat.com>
Input: elan_i2c - move regulator_[en|dis]able() out of elan_[en|dis]able_power()
Jia-Ju Bai <baijiaju1990(a)gmail.com>
net: chelsio: cxgb3: check the return value of pci_find_capability()
Jiasheng Jiang <jiasheng(a)iscas.ac.cn>
soc: fsl: qe: Check of ioremap return value
Randy Dunlap <rdunlap(a)infradead.org>
ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions
Vincent Mailhol <mailhol.vincent(a)wanadoo.fr>
can: gs_usb: change active_channels's type from atomic_t to u8
Jann Horn <jannh(a)google.com>
efivars: Respect "block" flag in efivar_entry_set_safe()
Zheyu Ma <zheyuma97(a)gmail.com>
net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()
Randy Dunlap <rdunlap(a)infradead.org>
net: sxgbe: fix return value of __setup handler
Randy Dunlap <rdunlap(a)infradead.org>
net: stmmac: fix return value of __setup handler
Nicolas Escande <nico.escande(a)gmail.com>
mac80211: fix forwarded mesh frames AC & queue selection
Johan Hovold <johan(a)kernel.org>
firmware: qemu_fw_cfg: fix kobject leak in probe error path
Qiushi Wu <wu000273(a)umn.edu>
firmware: Fix a reference count leak.
Vladimir Oltean <vladimir.oltean(a)nxp.com>
net: dcb: flush lingering app table entries for unregistered devices
Florian Westphal <fw(a)strlen.de>
netfilter: nf_queue: fix possible use-after-free
Florian Westphal <fw(a)strlen.de>
netfilter: nf_queue: don't assume sk is full socket
Jiri Bohac <jbohac(a)suse.cz>
xfrm: fix MTU regression
Marek Vasut <marex(a)denx.de>
ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min
Sergey Shtylyov <s.shtylyov(a)omp.ru>
ata: pata_hpt37x: fix PCI clock detection
Hangyu Hua <hbh25y(a)gmail.com>
usb: gadget: clear related members when goto fail
Hangyu Hua <hbh25y(a)gmail.com>
usb: gadget: don't release an existing dev->buf
Daniele Palmas <dnlplm(a)gmail.com>
net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990
Wolfram Sang <wsa(a)kernel.org>
i2c: qup: allow COMPILE_TEST
Yongzhi Liu <lyz_cs(a)pku.edu.cn>
dmaengine: shdma: Fix runtime PM imbalance on error
Ronnie Sahlberg <lsahlber(a)redhat.com>
cifs: fix double free race when mount fails in cifs_get_root()
José Expósito <jose.exposito89(a)gmail.com>
Input: clear BTN_RIGHT/MIDDLE on buttonpads
Eric Anholt <eric(a)anholt.net>
i2c: bcm2835: Avoid clock stretching timeouts
JaeMan Park <jaeman(a)google.com>
mac80211_hwsim: initialize ieee80211_tx_info at hw_scan_work
Benjamin Beichler <benjamin.beichler(a)uni-rostock.de>
mac80211_hwsim: report NOACK frames in tx_status
-------------
Diffstat:
Makefile | 4 +-
arch/arm/mm/mmu.c | 2 +
drivers/ata/pata_hpt37x.c | 4 +-
drivers/dma/sh/shdma-base.c | 4 +-
drivers/firmware/efi/vars.c | 5 +-
drivers/firmware/qemu_fw_cfg.c | 10 ++--
drivers/hid/hid-debug.c | 4 +-
drivers/hid/hid-input.c | 2 +
drivers/i2c/busses/Kconfig | 2 +-
drivers/i2c/busses/i2c-bcm2835.c | 11 ++++
drivers/input/input.c | 6 +++
drivers/input/mouse/elan_i2c_core.c | 64 ++++++++---------------
drivers/net/arcnet/com20020-pci.c | 3 ++
drivers/net/can/usb/gs_usb.c | 10 ++--
drivers/net/ethernet/chelsio/cxgb3/t3_hw.c | 2 +
drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c | 6 +--
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 6 +--
drivers/net/usb/cdc_mbim.c | 5 ++
drivers/net/wireless/mac80211_hwsim.c | 13 +++++
drivers/soc/fsl/qe/qe_io.c | 2 +
drivers/usb/gadget/legacy/inode.c | 10 ++--
fs/cifs/cifsfs.c | 1 +
include/net/netfilter/nf_queue.h | 2 +-
include/uapi/linux/input-event-codes.h | 3 +-
mm/shmem.c | 7 +--
net/dcb/dcbnl.c | 44 ++++++++++++++++
net/ipv6/ip6_output.c | 11 ++--
net/mac80211/rx.c | 4 +-
net/netfilter/nf_queue.c | 23 ++++++--
net/netfilter/nfnetlink_queue.c | 12 +++--
sound/soc/soc-ops.c | 4 +-
31 files changed, 199 insertions(+), 87 deletions(-)
This is the start of the stable review cycle for the 4.19.233 release.
There are 51 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let me know.
Responses should be made by Wed, 09 Mar 2022 09:16:25 +0000.
Anything received after that time might be too late.
The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.19.233-r…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.19.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh(a)linuxfoundation.org>
Linux 4.19.233-rc1
Vladimir Oltean <vladimir.oltean(a)nxp.com>
net: dcb: disable softirqs in dcbnl_flush_dev()
Filipe Manana <fdmanana(a)suse.com>
btrfs: add missing run of delayed items after unlink during log replay
Steven Rostedt (Google) <rostedt(a)goodmis.org>
tracing/histogram: Fix sorting on old "cpu" value
Hugh Dickins <hughd(a)google.com>
memfd: fix F_SEAL_WRITE after shmem huge page allocated
William Mahon <wmahon(a)chromium.org>
HID: add mapping for KEY_ALL_APPLICATIONS
Hans de Goede <hdegoede(a)redhat.com>
Input: elan_i2c - fix regulator enable count imbalance after suspend/resume
Hans de Goede <hdegoede(a)redhat.com>
Input: elan_i2c - move regulator_[en|dis]able() out of elan_[en|dis]able_power()
Jiasheng Jiang <jiasheng(a)iscas.ac.cn>
nl80211: Handle nla_memdup failures in handle_nan_filter
Jia-Ju Bai <baijiaju1990(a)gmail.com>
net: chelsio: cxgb3: check the return value of pci_find_capability()
Jiasheng Jiang <jiasheng(a)iscas.ac.cn>
soc: fsl: qe: Check of ioremap return value
Sukadev Bhattiprolu <sukadev(a)linux.ibm.com>
ibmvnic: free reset-work-item when flushing
Randy Dunlap <rdunlap(a)infradead.org>
ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions
Brian Norris <briannorris(a)chromium.org>
arm64: dts: rockchip: Switch RK3399-Gru DP to SPDIF output
Vincent Mailhol <mailhol.vincent(a)wanadoo.fr>
can: gs_usb: change active_channels's type from atomic_t to u8
Alyssa Ross <hi(a)alyssa.is>
firmware: arm_scmi: Remove space in MODULE_ALIAS name
Jann Horn <jannh(a)google.com>
efivars: Respect "block" flag in efivar_entry_set_safe()
Zheyu Ma <zheyuma97(a)gmail.com>
net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()
Randy Dunlap <rdunlap(a)infradead.org>
net: sxgbe: fix return value of __setup handler
Randy Dunlap <rdunlap(a)infradead.org>
net: stmmac: fix return value of __setup handler
Nicolas Escande <nico.escande(a)gmail.com>
mac80211: fix forwarded mesh frames AC & queue selection
Marek Marczykowski-Górecki <marmarek(a)invisiblethingslab.com>
xen/netfront: destroy queues before real_num_tx_queues is zeroed
Lukas Wunner <lukas(a)wunner.de>
PCI: pciehp: Fix infinite loop in IRQ handler upon power fault
Ye Bin <yebin10(a)huawei.com>
block: Fix fsync always failed if once failed
D. Wythe <alibuda(a)linux.alibaba.com>
net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error cause by server
D. Wythe <alibuda(a)linux.alibaba.com>
net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error generated by client
Vladimir Oltean <vladimir.oltean(a)nxp.com>
net: dcb: flush lingering app table entries for unregistered devices
Sven Eckelmann <sven(a)narfation.org>
batman-adv: Don't expect inter-netns unique iflink indices
Sven Eckelmann <sven(a)narfation.org>
batman-adv: Request iflink once in batadv_get_real_netdevice
Sven Eckelmann <sven(a)narfation.org>
batman-adv: Request iflink once in batadv-on-batadv check
Florian Westphal <fw(a)strlen.de>
netfilter: nf_queue: fix possible use-after-free
Florian Westphal <fw(a)strlen.de>
netfilter: nf_queue: don't assume sk is full socket
Leon Romanovsky <leonro(a)nvidia.com>
xfrm: enforce validity of offload input flags
Antony Antony <antony.antony(a)secunet.com>
xfrm: fix the if_id check in changelink
Eric Dumazet <edumazet(a)google.com>
netfilter: fix use-after-free in __nf_register_net_hook()
Jiri Bohac <jbohac(a)suse.cz>
xfrm: fix MTU regression
Marek Vasut <marex(a)denx.de>
ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min
Zhen Ni <nizhen(a)uniontech.com>
ALSA: intel_hdmi: Fix reference to PCM buffer address
Sergey Shtylyov <s.shtylyov(a)omp.ru>
ata: pata_hpt37x: fix PCI clock detection
Hangyu Hua <hbh25y(a)gmail.com>
usb: gadget: clear related members when goto fail
Hangyu Hua <hbh25y(a)gmail.com>
usb: gadget: don't release an existing dev->buf
Daniele Palmas <dnlplm(a)gmail.com>
net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990
Wolfram Sang <wsa(a)kernel.org>
i2c: qup: allow COMPILE_TEST
Wolfram Sang <wsa(a)kernel.org>
i2c: cadence: allow COMPILE_TEST
Yongzhi Liu <lyz_cs(a)pku.edu.cn>
dmaengine: shdma: Fix runtime PM imbalance on error
Ronnie Sahlberg <lsahlber(a)redhat.com>
cifs: fix double free race when mount fails in cifs_get_root()
José Expósito <jose.exposito89(a)gmail.com>
Input: clear BTN_RIGHT/MIDDLE on buttonpads
Kai Vehmanen <kai.vehmanen(a)linux.intel.com>
ASoC: rt5682: do not block workqueue if card is unbound
Kai Vehmanen <kai.vehmanen(a)linux.intel.com>
ASoC: rt5668: do not block workqueue if card is unbound
Eric Anholt <eric(a)anholt.net>
i2c: bcm2835: Avoid clock stretching timeouts
JaeMan Park <jaeman(a)google.com>
mac80211_hwsim: initialize ieee80211_tx_info at hw_scan_work
Benjamin Beichler <benjamin.beichler(a)uni-rostock.de>
mac80211_hwsim: report NOACK frames in tx_status
-------------
Diffstat:
Makefile | 4 +-
arch/arm/mm/mmu.c | 2 +
arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi | 17 ++++--
block/blk-flush.c | 4 +-
drivers/ata/pata_hpt37x.c | 4 +-
drivers/dma/sh/shdma-base.c | 4 +-
drivers/firmware/arm_scmi/driver.c | 2 +-
drivers/firmware/efi/vars.c | 5 +-
drivers/hid/hid-debug.c | 4 +-
drivers/hid/hid-input.c | 2 +
drivers/i2c/busses/Kconfig | 4 +-
drivers/i2c/busses/i2c-bcm2835.c | 11 ++++
drivers/input/input.c | 6 +++
drivers/input/mouse/elan_i2c_core.c | 64 ++++++++---------------
drivers/net/arcnet/com20020-pci.c | 3 ++
drivers/net/can/usb/gs_usb.c | 10 ++--
drivers/net/ethernet/chelsio/cxgb3/t3_hw.c | 2 +
drivers/net/ethernet/ibm/ibmvnic.c | 4 +-
drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c | 6 +--
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 6 +--
drivers/net/usb/cdc_mbim.c | 5 ++
drivers/net/wireless/mac80211_hwsim.c | 13 +++++
drivers/net/xen-netfront.c | 39 ++++++++------
drivers/pci/hotplug/pciehp_hpc.c | 7 +--
drivers/soc/fsl/qe/qe_io.c | 2 +
drivers/usb/gadget/legacy/inode.c | 10 ++--
fs/btrfs/tree-log.c | 18 +++++++
fs/cifs/cifsfs.c | 1 +
include/net/netfilter/nf_queue.h | 2 +-
include/uapi/linux/input-event-codes.h | 3 +-
include/uapi/linux/xfrm.h | 6 +++
kernel/trace/trace_events_hist.c | 6 +--
mm/memfd.c | 30 ++++++++---
net/batman-adv/hard-interface.c | 29 ++++++----
net/dcb/dcbnl.c | 44 ++++++++++++++++
net/ipv6/ip6_output.c | 11 ++--
net/mac80211/rx.c | 4 +-
net/netfilter/core.c | 5 +-
net/netfilter/nf_queue.c | 22 ++++++--
net/netfilter/nfnetlink_queue.c | 12 +++--
net/smc/smc_core.c | 5 +-
net/wireless/nl80211.c | 12 +++++
net/xfrm/xfrm_device.c | 6 ++-
net/xfrm/xfrm_interface.c | 2 +-
sound/soc/codecs/rt5668.c | 12 +++--
sound/soc/codecs/rt5682.c | 12 +++--
sound/soc/soc-ops.c | 4 +-
sound/x86/intel_hdmi_audio.c | 2 +-
48 files changed, 344 insertions(+), 144 deletions(-)