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]
Message-Id: <20211119171443.892729043@linuxfoundation.org>
Date:   Fri, 19 Nov 2021 18:37:35 +0100
From:   Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To:     linux-kernel@...r.kernel.org
Cc:     Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        torvalds@...ux-foundation.org, akpm@...ux-foundation.org,
        linux@...ck-us.net, shuah@...nel.org, patches@...nelci.org,
        lkft-triage@...ts.linaro.org, pavel@...x.de, jonathanh@...dia.com,
        f.fainelli@...il.com, stable@...r.kernel.org
Subject: [PATCH 5.10 00/21] 5.10.81-rc1 review

This is the start of the stable review cycle for the 5.10.81 release.
There are 21 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 Sun, 21 Nov 2021 17:14:35 +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.10.81-rc1.gz
or in the git tree and branch at:
	git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.10.y
and the diffstat can be found below.

thanks,

greg k-h

-------------
Pseudo-Shortlog of commits:

Greg Kroah-Hartman <gregkh@...uxfoundation.org>
    Linux 5.10.81-rc1

Subbaraman Narayanamurthy <quic_subbaram@...cinc.com>
    thermal: Fix NULL pointer dereferences in of_thermal_ functions

Greg Thelen <gthelen@...gle.com>
    perf/core: Avoid put_page() when GUP fails

Nathan Chancellor <nathan@...nel.org>
    scripts/lld-version.sh: Rewrite based on upstream ld-version.sh

Gao Xiang <hsiangkao@...ux.alibaba.com>
    erofs: fix unsafe pagevec reuse of hooked pclusters

Yue Hu <huyue2@...ong.com>
    erofs: remove the occupied parameter from z_erofs_pagevec_enqueue()

Marc Zyngier <maz@...nel.org>
    PCI: Add MSI masking quirk for Nvidia ION AHCI

Marc Zyngier <maz@...nel.org>
    PCI/MSI: Deal with devices lying about their MSI mask capability

Thomas Gleixner <tglx@...utronix.de>
    PCI/MSI: Destroy sysfs before freeing entries

Sven Schnelle <svens@...ckframe.org>
    parisc/entry: fix trace test in syscall exit path

Peter Zijlstra <peterz@...radead.org>
    x86/iopl: Fake iopl(3) CLI/STI usage

Nick Desaulniers <ndesaulniers@...gle.com>
    arm64: vdso32: suppress error message for 'make mrproper'

Michael Riesch <michael.riesch@...fvision.net>
    net: stmmac: dwmac-rk: fix unbalanced pm_runtime_enable warnings

Wong Vee Khee <vee.khee.wong@...ux.intel.com>
    net: stmmac: fix issue where clk is being unprepared twice

Joakim Zhang <qiangqing.zhang@....com>
    net: stmmac: fix system hang if change mac address after interface ifdown

Yang Yingliang <yangyingliang@...wei.com>
    net: stmmac: fix missing unlock on error in stmmac_suspend()

Wei Yongjun <weiyongjun1@...wei.com>
    net: stmmac: platform: fix build error with !CONFIG_PM_SLEEP

Joakim Zhang <qiangqing.zhang@....com>
    net: stmmac: add clocks management for gmac driver

Masami Hiramatsu <mhiramat@...nel.org>
    bootconfig: init: Fix memblock leak in xbc_make_cmdline()

Xie Yongji <xieyongji@...edance.com>
    loop: Use blk_validate_block_size() to validate block size

Xie Yongji <xieyongji@...edance.com>
    block: Add a helper to validate the block size

Kees Cook <keescook@...omium.org>
    fortify: Explicitly disable Clang support


-------------

Diffstat:

 Makefile                                           |   4 +-
 arch/arm64/kernel/vdso32/Makefile                  |   3 +-
 arch/parisc/kernel/entry.S                         |   2 +-
 arch/x86/include/asm/insn-eval.h                   |   1 +
 arch/x86/include/asm/processor.h                   |   1 +
 arch/x86/kernel/process.c                          |   1 +
 arch/x86/kernel/traps.c                            |  34 +++++++
 arch/x86/lib/insn-eval.c                           |   2 +-
 drivers/block/loop.c                               |  17 +---
 drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c     |   9 --
 drivers/net/ethernet/stmicro/stmmac/stmmac.h       |   1 +
 drivers/net/ethernet/stmicro/stmmac/stmmac_main.c  |  87 ++++++++++++++--
 drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c  | 111 ++++++++++++++++-----
 .../net/ethernet/stmicro/stmmac/stmmac_platform.c  |  30 ++++--
 drivers/pci/msi.c                                  |  27 ++---
 drivers/pci/quirks.c                               |   6 ++
 drivers/thermal/thermal_of.c                       |   9 +-
 fs/erofs/zdata.c                                   |  15 ++-
 fs/erofs/zpvec.h                                   |  14 ++-
 include/linux/blkdev.h                             |   8 ++
 include/linux/pci.h                                |   2 +
 init/main.c                                        |   1 +
 kernel/events/core.c                               |  10 +-
 scripts/lld-version.sh                             |  35 +++++--
 security/Kconfig                                   |   3 +
 25 files changed, 320 insertions(+), 113 deletions(-)


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ