This is the start of the stable review cycle for the 4.14.279 release.
There are 14 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, 15 May 2022 14:22:19 +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.279-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.279-rc1
ChenXiaoSong <chenxiaosong2(a)huawei.com>
VFS: Fix memory leak caused by concurrently mounting fs with subtype
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix races among concurrent prealloc proc writes
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix races among concurrent read/write and buffer changes
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix races among concurrent hw_params and hw_free calls
Muchun Song <songmuchun(a)bytedance.com>
mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and __mcopy_atomic()
Muchun Song <songmuchun(a)bytedance.com>
mm: hugetlb: fix missing cache flush in copy_huge_page_from_user()
Ricky WU <ricky_wu(a)realtek.com>
mmc: rtsx: add 74 Clocks in power on flow
Itay Iellin <ieitayie(a)gmail.com>
Bluetooth: Fix the creation of hdev->name
Andreas Larsson <andreas(a)gaisler.com>
can: grcan: only use the NAPI poll budget for RX
Andreas Larsson <andreas(a)gaisler.com>
can: grcan: grcan_probe(): fix broken system id check for errata workaround needs
Lee Jones <lee.jones(a)linaro.org>
block: drbd: drbd_nl: Make conversion to 'enum drbd_ret_code' explicit
Nathan Chancellor <natechancellor(a)gmail.com>
MIPS: Use address-of operator on section symbols
-------------
Diffstat:
Makefile | 4 +-
arch/mips/bmips/setup.c | 2 +-
arch/mips/lantiq/prom.c | 2 +-
arch/mips/pic32/pic32mzda/init.c | 2 +-
arch/mips/ralink/of.c | 2 +-
drivers/block/drbd/drbd_nl.c | 13 +++--
drivers/mmc/host/rtsx_pci_sdmmc.c | 30 +++++++----
drivers/net/can/grcan.c | 38 +++++++------
fs/namespace.c | 9 ++--
include/net/bluetooth/hci_core.h | 3 ++
include/sound/pcm.h | 2 +
mm/memory.c | 2 +
mm/userfaultfd.c | 3 ++
net/bluetooth/hci_core.c | 6 +--
sound/core/pcm.c | 3 ++
sound/core/pcm_lib.c | 5 ++
sound/core/pcm_memory.c | 11 ++--
sound/core/pcm_native.c | 110 +++++++++++++++++++++++++++-----------
18 files changed, 164 insertions(+), 83 deletions(-)
Some mips builds with gcc-12 fails with the error:
arch/mips/jz4740/setup.c:64:25: error: comparison between two arrays
[-Werror=array-compare]
64 | if (__dtb_start != __dtb_end)
'd24f48767d5e ("MIPS: Use address-of operator on section symbols")' has
been applied which fixes most of the error, but it missed one file which
was not available upstream when the change was done.
Fixes: d24f48767d5e ("MIPS: Use address-of operator on section symbols")
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee(a)gmail.com>
---
arch/mips/jz4740/setup.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mips/jz4740/setup.c b/arch/mips/jz4740/setup.c
index dc8ee21e0948e..45e327960a465 100644
--- a/arch/mips/jz4740/setup.c
+++ b/arch/mips/jz4740/setup.c
@@ -61,7 +61,7 @@ void __init plat_mem_setup(void)
jz4740_reset_init();
- if (__dtb_start != __dtb_end)
+ if (&__dtb_start != &__dtb_end)
dtb = __dtb_start;
else
dtb = (void *)fw_passed_dtb;
--
2.30.2
--
A mail was sent to you sometime last week with the expectation of
having a retune mail from you but to my surprise you never bothered to replied.
Kindly reply for further explanations.
Respectfully yours,
Mr. Douglas Felix
This is the start of the stable review cycle for the 4.19.243 release.
There are 15 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, 15 May 2022 14:22:19 +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.243-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.243-rc1
ChenXiaoSong <chenxiaosong2(a)huawei.com>
VFS: Fix memory leak caused by concurrently mounting fs with subtype
Muchun Song <songmuchun(a)bytedance.com>
mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and __mcopy_atomic()
Muchun Song <songmuchun(a)bytedance.com>
mm: hugetlb: fix missing cache flush in copy_huge_page_from_user()
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix races among concurrent prealloc proc writes
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix races among concurrent read/write and buffer changes
Takashi Iwai <tiwai(a)suse.de>
ALSA: pcm: Fix races among concurrent hw_params and hw_free calls
Itay Iellin <ieitayie(a)gmail.com>
Bluetooth: Fix the creation of hdev->name
Andreas Larsson <andreas(a)gaisler.com>
can: grcan: only use the NAPI poll budget for RX
Andreas Larsson <andreas(a)gaisler.com>
can: grcan: grcan_probe(): fix broken system id check for errata workaround needs
Nathan Chancellor <nathan(a)kernel.org>
nfp: bpf: silence bitwise vs. logical OR warning
Lee Jones <lee.jones(a)linaro.org>
drm/amd/display/dc/gpio/gpio_service: Pass around correct dce_{version, environment} types
Lee Jones <lee.jones(a)linaro.org>
block: drbd: drbd_nl: Make conversion to 'enum drbd_ret_code' explicit
Nathan Chancellor <natechancellor(a)gmail.com>
MIPS: Use address-of operator on section symbols
-------------
Diffstat:
Makefile | 4 +-
arch/mips/bmips/setup.c | 2 +-
arch/mips/lantiq/prom.c | 2 +-
arch/mips/pic32/pic32mzda/init.c | 2 +-
arch/mips/ralink/of.c | 2 +-
drivers/block/drbd/drbd_nl.c | 13 ++-
drivers/gpu/drm/amd/display/dc/gpio/gpio_service.c | 12 +--
.../amd/display/include/gpio_service_interface.h | 4 +-
drivers/net/can/grcan.c | 38 ++++---
drivers/net/ethernet/netronome/nfp/nfp_asm.c | 4 +-
fs/namespace.c | 9 +-
include/net/bluetooth/hci_core.h | 3 +
include/sound/pcm.h | 2 +
mm/memory.c | 2 +
mm/userfaultfd.c | 3 +
net/bluetooth/hci_core.c | 6 +-
sound/core/pcm.c | 3 +
sound/core/pcm_lib.c | 5 +
sound/core/pcm_memory.c | 11 ++-
sound/core/pcm_native.c | 110 +++++++++++++++------
20 files changed, 154 insertions(+), 83 deletions(-)
This is the start of the stable review cycle for the 5.17.8 release.
There are 12 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, 15 May 2022 14:22:19 +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.17.8-rc1…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.17.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.17.8-rc1
Peter Xu <peterx(a)redhat.com>
mm: fix invalid page pointer returned with FOLL_PIN gups
Huang Ying <ying.huang(a)intel.com>
mm,migrate: fix establishing demotion target
Miaohe Lin <linmiaohe(a)huawei.com>
mm/mlock: fix potential imbalanced rlimit ucounts adjustment
Naoya Horiguchi <naoya.horiguchi(a)nec.com>
mm/hwpoison: fix error page recovered but reported "not recovered"
Muchun Song <songmuchun(a)bytedance.com>
mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and __mcopy_atomic()
Muchun Song <songmuchun(a)bytedance.com>
mm: shmem: fix missing cache flush in shmem_mfill_atomic_pte()
Muchun Song <songmuchun(a)bytedance.com>
mm: hugetlb: fix missing cache flush in hugetlb_mcopy_atomic_pte()
Muchun Song <songmuchun(a)bytedance.com>
mm: hugetlb: fix missing cache flush in copy_huge_page_from_user()
Muchun Song <songmuchun(a)bytedance.com>
mm: fix missing cache flush for all tail pages of compound page
Jan Kara <jack(a)suse.cz>
udf: Avoid using stale lengthOfImpUse
Gleb Fotengauer-Malinovskiy <glebfm(a)altlinux.org>
rfkill: uapi: fix RFKILL_IOCTL_MAX_SIZE ioctl request definition
Itay Iellin <ieitayie(a)gmail.com>
Bluetooth: Fix the creation of hdev->name
-------------
Diffstat:
Makefile | 4 ++--
fs/udf/namei.c | 8 ++++----
include/net/bluetooth/hci_core.h | 3 +++
include/uapi/linux/rfkill.h | 2 +-
mm/gup.c | 2 +-
mm/hugetlb.c | 3 ++-
mm/memory-failure.c | 4 +++-
mm/memory.c | 2 ++
mm/migrate.c | 14 ++++++++++----
mm/mlock.c | 1 +
mm/shmem.c | 4 +++-
mm/userfaultfd.c | 3 +++
net/bluetooth/hci_core.c | 6 +++---
13 files changed, 38 insertions(+), 18 deletions(-)
This is the start of the stable review cycle for the 5.10.116 release.
There are 10 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, 15 May 2022 14:22:19 +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.116-r…
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(a)linuxfoundation.org>
Linux 5.10.116-rc1
Muchun Song <songmuchun(a)bytedance.com>
mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and __mcopy_atomic()
Muchun Song <songmuchun(a)bytedance.com>
mm: hugetlb: fix missing cache flush in copy_huge_page_from_user()
Muchun Song <songmuchun(a)bytedance.com>
mm: fix missing cache flush for all tail pages of compound page
Itay Iellin <ieitayie(a)gmail.com>
Bluetooth: Fix the creation of hdev->name
Mike Rapoport <rppt(a)kernel.org>
arm: remove CONFIG_ARCH_HAS_HOLES_MEMORYMODEL
Nathan Chancellor <nathan(a)kernel.org>
nfp: bpf: silence bitwise vs. logical OR warning
Lee Jones <lee.jones(a)linaro.org>
drm/amd/display/dc/gpio/gpio_service: Pass around correct dce_{version, environment} types
Lee Jones <lee.jones(a)linaro.org>
block: drbd: drbd_nl: Make conversion to 'enum drbd_ret_code' explicit
Dmitry Osipenko <digetx(a)gmail.com>
regulator: consumer: Add missing stubs to regulator/consumer.h
Nathan Chancellor <natechancellor(a)gmail.com>
MIPS: Use address-of operator on section symbols
-------------
Diffstat:
Documentation/vm/memory-model.rst | 3 +--
Makefile | 4 +--
arch/arm/Kconfig | 8 ++----
arch/arm/mach-bcm/Kconfig | 1 -
arch/arm/mach-davinci/Kconfig | 1 -
arch/arm/mach-exynos/Kconfig | 1 -
arch/arm/mach-highbank/Kconfig | 1 -
arch/arm/mach-omap2/Kconfig | 1 -
arch/arm/mach-s5pv210/Kconfig | 1 -
arch/arm/mach-tango/Kconfig | 1 -
arch/mips/bmips/setup.c | 2 +-
arch/mips/lantiq/prom.c | 2 +-
arch/mips/pic32/pic32mzda/init.c | 2 +-
arch/mips/ralink/of.c | 2 +-
drivers/block/drbd/drbd_nl.c | 13 +++++----
drivers/gpu/drm/amd/display/dc/gpio/gpio_service.c | 12 ++++-----
.../amd/display/include/gpio_service_interface.h | 4 +--
drivers/net/ethernet/netronome/nfp/nfp_asm.c | 4 +--
fs/proc/kcore.c | 2 --
include/linux/mmzone.h | 31 ----------------------
include/linux/regulator/consumer.h | 30 +++++++++++++++++++++
include/net/bluetooth/hci_core.h | 3 +++
mm/memory.c | 2 ++
mm/migrate.c | 7 +++--
mm/mmzone.c | 14 ----------
mm/userfaultfd.c | 3 +++
mm/vmstat.c | 4 ---
net/bluetooth/hci_core.c | 6 ++---
28 files changed, 73 insertions(+), 92 deletions(-)
This is the start of the stable review cycle for the 5.4.194 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 Sun, 15 May 2022 14:22:19 +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.194-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.194-rc1
Muchun Song <songmuchun(a)bytedance.com>
mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and __mcopy_atomic()
Muchun Song <songmuchun(a)bytedance.com>
mm: hugetlb: fix missing cache flush in copy_huge_page_from_user()
Muchun Song <songmuchun(a)bytedance.com>
mm: fix missing cache flush for all tail pages of compound page
Itay Iellin <ieitayie(a)gmail.com>
Bluetooth: Fix the creation of hdev->name
Kyle Huey <me(a)kylehuey.com>
KVM: x86/svm: Account for family 17h event renumberings in amd_pmc_perf_hw_id
Masami Hiramatsu <mhiramat(a)kernel.org>
x86: kprobes: Prohibit probing on instruction which has emulate prefix
Masami Hiramatsu <mhiramat(a)kernel.org>
x86: xen: insn: Decode Xen and KVM emulate-prefix signature
Masami Hiramatsu <mhiramat(a)kernel.org>
x86: xen: kvm: Gather the definition of emulate prefixes
Masami Hiramatsu <mhiramat(a)kernel.org>
x86/asm: Allow to pass macros to __ASM_FORM()
Like Xu <likexu(a)tencent.com>
KVM: x86/pmu: Refactoring find_arch_event() to pmc_perf_hw_id()
Mike Rapoport <rppt(a)linux.ibm.com>
arm: remove CONFIG_ARCH_HAS_HOLES_MEMORYMODEL
Andreas Larsson <andreas(a)gaisler.com>
can: grcan: only use the NAPI poll budget for RX
Andreas Larsson <andreas(a)gaisler.com>
can: grcan: grcan_probe(): fix broken system id check for errata workaround needs
Nathan Chancellor <nathan(a)kernel.org>
nfp: bpf: silence bitwise vs. logical OR warning
Nathan Chancellor <natechancellor(a)gmail.com>
drm/i915: Cast remain to unsigned long in eb_relocate_vma
Lee Jones <lee.jones(a)linaro.org>
drm/amd/display/dc/gpio/gpio_service: Pass around correct dce_{version, environment} types
Lee Jones <lee.jones(a)linaro.org>
block: drbd: drbd_nl: Make conversion to 'enum drbd_ret_code' explicit
Nathan Chancellor <natechancellor(a)gmail.com>
MIPS: Use address-of operator on section symbols
-------------
Diffstat:
Documentation/vm/memory-model.rst | 3 +-
Makefile | 4 +--
arch/arm/Kconfig | 8 ++---
arch/arm/mach-bcm/Kconfig | 1 -
arch/arm/mach-davinci/Kconfig | 1 -
arch/arm/mach-exynos/Kconfig | 1 -
arch/arm/mach-highbank/Kconfig | 1 -
arch/arm/mach-omap2/Kconfig | 2 +-
arch/arm/mach-s5pv210/Kconfig | 1 -
arch/arm/mach-tango/Kconfig | 1 -
arch/mips/bmips/setup.c | 2 +-
arch/mips/lantiq/prom.c | 2 +-
arch/mips/pic32/pic32mzda/init.c | 2 +-
arch/mips/ralink/of.c | 2 +-
arch/x86/include/asm/asm.h | 8 +++--
arch/x86/include/asm/emulate_prefix.h | 14 ++++++++
arch/x86/include/asm/insn.h | 6 ++++
arch/x86/include/asm/xen/interface.h | 11 +++----
arch/x86/kernel/kprobes/core.c | 4 +++
arch/x86/kvm/pmu.c | 8 +----
arch/x86/kvm/pmu.h | 3 +-
arch/x86/kvm/pmu_amd.c | 36 ++++++++++++++++----
arch/x86/kvm/vmx/pmu_intel.c | 9 ++---
arch/x86/kvm/x86.c | 4 ++-
arch/x86/lib/insn.c | 34 +++++++++++++++++++
drivers/block/drbd/drbd_nl.c | 13 +++++---
drivers/gpu/drm/amd/display/dc/gpio/gpio_service.c | 12 +++----
.../amd/display/include/gpio_service_interface.h | 4 +--
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 2 +-
drivers/net/can/grcan.c | 38 ++++++++++------------
drivers/net/ethernet/netronome/nfp/nfp_asm.c | 4 +--
fs/proc/kcore.c | 2 --
include/linux/mmzone.h | 31 ------------------
include/net/bluetooth/hci_core.h | 3 ++
mm/memory.c | 2 ++
mm/migrate.c | 7 ++--
mm/mmzone.c | 14 --------
mm/userfaultfd.c | 3 ++
mm/vmstat.c | 4 ---
net/bluetooth/hci_core.c | 6 ++--
tools/arch/x86/include/asm/emulate_prefix.h | 14 ++++++++
tools/arch/x86/include/asm/insn.h | 6 ++++
tools/arch/x86/lib/insn.c | 34 +++++++++++++++++++
tools/objtool/sync-check.sh | 3 +-
tools/perf/check-headers.sh | 3 +-
45 files changed, 227 insertions(+), 146 deletions(-)
Dear ,
Please can I have your attention and possibly help me for humanity's
sake please. I am writing this message with a heavy heart filled with
sorrows and sadness.
Please if you can respond, i have an issue that i will be most
grateful if you could help me deal with it please.
Julian