* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review
@ 2022-06-28 20:18 Thomas Backlund
2022-06-28 21:20 ` Ronald Warsow
2022-06-30 9:21 ` Greg KH
0 siblings, 2 replies; 18+ messages in thread
From: Thomas Backlund @ 2022-06-28 20:18 UTC (permalink / raw)
To: Ronald Warsow, linux-kernel; +Cc: stable
Den 2022-06-27 kl. 19:38, skrev Ronald Warsow:
> hallo Greg
>
> 5.18.8-rc1
>
> compiles (see [1]), boots and runs here on x86_64
> (Intel i5-11400, Fedora 36)
>
> [1]
> a regression against 5.18.7:
>
> ...
>
> LD vmlinux.o
> MODPOST vmlinux.symvers
> WARNING: modpost: vmlinux.o(___ksymtab_gpl+tick_nohz_full_setup+0x0):
> Section mismatch in reference from the variable
> __ksymtab_tick_nohz_full_setup to the function
> .init.text:tick_nohz_full_setup()
> The symbol tick_nohz_full_setup is exported and annotated __init
> Fix this by removing the __init annotation of tick_nohz_full_setup or
> drop the export.
Should be fixed by:
From 2390095113e98fc52fffe35c5206d30d9efe3f78 Mon Sep 17 00:00:00 2001
From: Masahiro Yamada <masahiroy@kernel.org>
Date: Mon, 27 Jun 2022 12:22:09 +0900
Subject: [PATCH] tick/nohz: unexport __init-annotated tick_nohz_full_setup()
--
Thomas
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-28 20:18 [PATCH 5.18 000/181] 5.18.8-rc1 review Thomas Backlund @ 2022-06-28 21:20 ` Ronald Warsow 2022-06-30 9:21 ` Greg KH 1 sibling, 0 replies; 18+ messages in thread From: Ronald Warsow @ 2022-06-28 21:20 UTC (permalink / raw) To: Thomas Backlund, linux-kernel; +Cc: stable On 28.06.22 22:18, Thomas Backlund wrote: > Den 2022-06-27 kl. 19:38, skrev Ronald Warsow: >> hallo Greg >> >> 5.18.8-rc1 >> >> compiles (see [1]), boots and runs here on x86_64 >> (Intel i5-11400, Fedora 36) >> >> [1] >> a regression against 5.18.7: >> >> ... >> >> LD vmlinux.o >> MODPOST vmlinux.symvers >> WARNING: modpost: vmlinux.o(___ksymtab_gpl+tick_nohz_full_setup+0x0): >> Section mismatch in reference from the variable >> __ksymtab_tick_nohz_full_setup to the function >> .init.text:tick_nohz_full_setup() >> The symbol tick_nohz_full_setup is exported and annotated __init >> Fix this by removing the __init annotation of tick_nohz_full_setup or >> drop the export. > > > Should be fixed by: > > > From 2390095113e98fc52fffe35c5206d30d9efe3f78 Mon Sep 17 00:00:00 2001 > From: Masahiro Yamada <masahiroy@kernel.org> > Date: Mon, 27 Jun 2022 12:22:09 +0900 > Subject: [PATCH] tick/nohz: unexport __init-annotated tick_nohz_full_setup() > > -- > Thomas > Thanks Thomas -- Ronald ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-28 20:18 [PATCH 5.18 000/181] 5.18.8-rc1 review Thomas Backlund 2022-06-28 21:20 ` Ronald Warsow @ 2022-06-30 9:21 ` Greg KH 1 sibling, 0 replies; 18+ messages in thread From: Greg KH @ 2022-06-30 9:21 UTC (permalink / raw) To: Thomas Backlund; +Cc: Ronald Warsow, linux-kernel, stable On Tue, Jun 28, 2022 at 08:18:34PM +0000, Thomas Backlund wrote: > Den 2022-06-27 kl. 19:38, skrev Ronald Warsow: > > hallo Greg > > > > 5.18.8-rc1 > > > > compiles (see [1]), boots and runs here on x86_64 > > (Intel i5-11400, Fedora 36) > > > > [1] > > a regression against 5.18.7: > > > > ... > > > > LD vmlinux.o > > MODPOST vmlinux.symvers > > WARNING: modpost: vmlinux.o(___ksymtab_gpl+tick_nohz_full_setup+0x0): > > Section mismatch in reference from the variable > > __ksymtab_tick_nohz_full_setup to the function > > .init.text:tick_nohz_full_setup() > > The symbol tick_nohz_full_setup is exported and annotated __init > > Fix this by removing the __init annotation of tick_nohz_full_setup or > > drop the export. > > > Should be fixed by: > > > From 2390095113e98fc52fffe35c5206d30d9efe3f78 Mon Sep 17 00:00:00 2001 > From: Masahiro Yamada <masahiroy@kernel.org> > Date: Mon, 27 Jun 2022 12:22:09 +0900 > Subject: [PATCH] tick/nohz: unexport __init-annotated tick_nohz_full_setup() Great, now queued up, thanks. greg k-h ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review @ 2022-06-27 16:38 Ronald Warsow 0 siblings, 0 replies; 18+ messages in thread From: Ronald Warsow @ 2022-06-27 16:38 UTC (permalink / raw) To: linux-kernel; +Cc: stable hallo Greg 5.18.8-rc1 compiles (see [1]), boots and runs here on x86_64 (Intel i5-11400, Fedora 36) [1] a regression against 5.18.7: ... LD vmlinux.o MODPOST vmlinux.symvers WARNING: modpost: vmlinux.o(___ksymtab_gpl+tick_nohz_full_setup+0x0): Section mismatch in reference from the variable __ksymtab_tick_nohz_full_setup to the function .init.text:tick_nohz_full_setup() The symbol tick_nohz_full_setup is exported and annotated __init Fix this by removing the __init annotation of tick_nohz_full_setup or drop the export. ... Tested-by: Ronald Warsow <rwarsow@gmx.de Thanks Ronald ^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH 5.18 000/181] 5.18.8-rc1 review
@ 2022-06-27 11:19 Greg Kroah-Hartman
2022-06-27 14:44 ` Jon Hunter
` (12 more replies)
0 siblings, 13 replies; 18+ messages in thread
From: Greg Kroah-Hartman @ 2022-06-27 11:19 UTC (permalink / raw)
To: linux-kernel
Cc: Greg Kroah-Hartman, stable, torvalds, akpm, linux, shuah, patches,
lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee,
slade
This is the start of the stable review cycle for the 5.18.8 release.
There are 181 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, 29 Jun 2022 11:19:09 +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.18.8-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.18.y
and the diffstat can be found below.
thanks,
greg k-h
-------------
Pseudo-Shortlog of commits:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linux 5.18.8-rc1
Jason A. Donenfeld <Jason@zx2c4.com>
powerpc/pseries: wire up rng during setup_arch()
Masahiro Yamada <masahiroy@kernel.org>
kbuild: link vmlinux only once for CONFIG_TRIM_UNUSED_KSYMS (2nd attempt)
Dexuan Cui <decui@microsoft.com>
dma-direct: use the correct size for dma_set_encrypted()
Shyam Prasad N <sprasad@microsoft.com>
smb3: use netname when available on secondary channels
Adrian Hunter <adrian.hunter@intel.com>
perf build-id: Fix caching files with a wrong build ID
Jason A. Donenfeld <Jason@zx2c4.com>
random: update comment from copy_to_user() -> copy_to_iter()
Steve French <stfrench@microsoft.com>
smb3: fix empty netname context on secondary channels
Stefan Wahren <stefan.wahren@i2se.com>
ARM: dts: bcm2711-rpi-400: Fix GPIO line names
Masahiro Yamada <masahiroy@kernel.org>
modpost: fix section mismatch check for exported init/exit sections
Miaoqian Lin <linmq006@gmail.com>
ARM: cns3xxx: Fix refcount leak in cns3xxx_init
Miaoqian Lin <linmq006@gmail.com>
memory: samsung: exynos5422-dmc: Fix refcount leak in of_get_dram_timings
Miaoqian Lin <linmq006@gmail.com>
memory: mtk-smi: add missing put_device() call in mtk_smi_device_link_common
Miaoqian Lin <linmq006@gmail.com>
ARM: Fix refcount leak in axxia_boot_secondary
Miaoqian Lin <linmq006@gmail.com>
soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe
David Virag <virag.david003@gmail.com>
arm64: dts: exynos: Correct UART clocks on Exynos7885
Miaoqian Lin <linmq006@gmail.com>
ARM: exynos: Fix refcount leak in exynos_map_pmu
Aswath Govindraju <a-govindraju@ti.com>
arm64: dts: ti: k3-am64-main: Remove support for HS400 speed mode
Lucas Stach <l.stach@pengutronix.de>
ARM: dts: imx6qdl: correct PU regulator ramp delay
Alexander Stein <alexander.stein@ew.tq-group.com>
ARM: dts: imx7: Move hsic_phy power domain to HSIC PHY node
Marcelo Tosatti <mtosatti@redhat.com>
mm: lru_cache_disable: use synchronize_rcu_expedited
zhenwei pi <pizhenwei@bytedance.com>
mm/memory-failure: disable unpoison once hw error happens
Jason A. Donenfeld <Jason@zx2c4.com>
powerpc/powernv: wire up rng during setup_arch
Andrew Donnellan <ajd@linux.ibm.com>
powerpc/rtas: Allow ibm,platform-dump RTAS call with null buffer address
Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
powerpc: Enable execve syscall exit tracepoint
Jason A. Donenfeld <Jason@zx2c4.com>
powerpc/microwatt: wire up rng during setup_arch()
Matt Ranostay <mranostay@ti.com>
arm64: dts: ti: k3-j721s2: Fix overlapping GICD memory region
Helge Deller <deller@gmx.de>
parisc: Enable ARCH_HAS_STRICT_MODULE_RWX
John David Anglin <dave.anglin@bell.net>
parisc: Fix flush_anon_page on PA8800/PA8900
Helge Deller <deller@gmx.de>
parisc/stifb: Fix fb_is_primary_device() only available with CONFIG_FB_STI
Liang He <windhl@126.com>
xtensa: Fix refcount leak bug in time.c
Liang He <windhl@126.com>
xtensa: xtfpga: Fix refcount leak bug in setup
Jialin Zhang <zhangjialin11@huawei.com>
iio: adc: ti-ads131e08: add missing fwnode_handle_put() in ads131e08_alloc_channels()
Miaoqian Lin <linmq006@gmail.com>
iio: adc: adi-axi-adc: Fix refcount leak in adi_axi_adc_attach_client
Jialin Zhang <zhangjialin11@huawei.com>
iio: adc: rzg2l_adc: add missing fwnode_handle_put() in rzg2l_adc_parse_properties()
Hans de Goede <hdegoede@redhat.com>
iio: adc: axp288: Override TS pin bias current for some models
Olivier Moysan <olivier.moysan@foss.st.com>
iio: adc: stm32: fix vrefint wrong calibration value handling
Yannick Brosseau <yannick.brosseau@gmail.com>
iio: adc: stm32: Fix IRQs on STM32F4 by removing custom spurious IRQs message
Yannick Brosseau <yannick.brosseau@gmail.com>
iio: adc: stm32: Fix ADCs iteration in irq handler
Miaoqian Lin <linmq006@gmail.com>
iio: adc: aspeed: Fix refcount leak in aspeed_adc_set_trim_data
Liam Beguin <liambeguin@gmail.com>
iio: test: fix missing MODULE_LICENSE for IIO_RESCALE=m
Linus Walleij <linus.walleij@linaro.org>
iio: afe: rescale: Fix boolean logic bug
Jean-Baptiste Maneyrol <jean-baptiste.maneyrol@tdk.com>
iio: imu: inv_icm42600: Fix broken icm42600 (chip id 0 value)
Olivier Moysan <olivier.moysan@foss.st.com>
iio: adc: stm32: fix maximum clock rate for stm32mp15x
Vincent Whitchurch <vincent.whitchurch@axis.com>
iio: trigger: sysfs: fix use-after-free on remove
Zheyu Ma <zheyuma97@gmail.com>
iio: gyro: mpu3050: Fix the error handling in mpu3050_power_up()
Haibo Chen <haibo.chen@nxp.com>
iio: accel: mma8452: ignore the return value of reset operation
Dmitry Rokosov <DDRokosov@sberdevices.ru>
iio:accel:mxc4005: rearrange iio trigger get and register
Dmitry Rokosov <DDRokosov@sberdevices.ru>
iio:accel:bma180: rearrange iio trigger get and register
Dmitry Rokosov <DDRokosov@sberdevices.ru>
iio:accel:kxcjk-1013: rearrange iio trigger get and register
Dmitry Rokosov <DDRokosov@sberdevices.ru>
iio:chemical:ccs811: rearrange iio trigger get and register
Aashish Sharma <shraash@google.com>
iio:proximity:sx9324: Check ret value of device_property_read_u32_array()
Dmitry Rokosov <DDRokosov@sberdevices.ru>
iio:humidity:hts221: rearrange iio trigger get and register
Jaegeuk Kim <jaegeuk@kernel.org>
f2fs: do not count ENOENT for error case
Daeho Jeong <daehojeong@google.com>
f2fs: fix iostat related lock protection
Jaegeuk Kim <jaegeuk@kernel.org>
f2fs: attach inline_data after setting compression
Josef Bacik <josef@toxicpanda.com>
btrfs: fix deadlock with fsync+fiemap+transaction commit
Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
btrfs: don't set lock_owner when locking extent buffer for reading
Filipe Manana <fdmanana@suse.com>
btrfs: fix race between reflinking and ordered extent completion
Geert Uytterhoeven <geert+renesas@glider.be>
dt-bindings: usb: ehci: Increase the number of PHYs
Geert Uytterhoeven <geert+renesas@glider.be>
dt-bindings: usb: ohci: Increase the number of PHYs
Xu Yang <xu.yang_2@nxp.com>
usb: chipidea: udc: check request status before setting device address
Alan Stern <stern@rowland.harvard.edu>
USB: gadget: Fix double-free bug in raw_gadget driver
Alan Stern <stern@rowland.harvard.edu>
usb: gadget: Fix non-unique driver names in raw-gadget driver
Dan Vacura <w36195@motorola.com>
usb: gadget: uvc: fix list double add in uvcg_video_pump
Utkarsh Patel <utkarsh.h.patel@intel.com>
xhci-pci: Allow host runtime PM as default for Intel Meteor Lake xHCI
Tanveer Alam <tanveer1.alam@intel.com>
xhci-pci: Allow host runtime PM as default for Intel Raptor Lake xHCI
Mathias Nyman <mathias.nyman@linux.intel.com>
xhci: turn off port power in shutdown
Alexander Gordeev <agordeev@linux.ibm.com>
s390/crash: make copy_oldmem_page() return number of bytes copied
Alexander Gordeev <agordeev@linux.ibm.com>
s390/crash: add missing iterator advance in copy_oldmem_page()
Matthew Wilcox (Oracle) <willy@infradead.org>
vmcore: convert copy_oldmem_page() to take an iov_iter
Pavel Begunkov <asml.silence@gmail.com>
io_uring: fix wrong arm_poll error handling
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
usb: typec: wcove: Drop wrong dependency to INTEL_SOC_PMIC
Pavel Begunkov <asml.silence@gmail.com>
io_uring: fix req->apoll_events
Christoph Hellwig <hch@lst.de>
io_uring: make apoll_events a __poll_t
Baruch Siach <baruch@tkos.co.il>
iio: adc: vf610: fix conversion mode sysfs node name
Lv Ruyi <lv.ruyi@zte.com.cn>
iio: adc: xilinx-ams: fix return error variable
Linus Walleij <linus.walleij@linaro.org>
iio: magnetometer: yas530: Fix memchr_inv() misuse
Haibo Chen <haibo.chen@nxp.com>
iio: mma8452: fix probe fail when device tree compatible is used.
Peter Gonda <pgonda@google.com>
KVM: SEV: Init target VMCBs in sev_migrate_from
Alistair Popple <apopple@nvidia.com>
filemap: Fix serialization adding transparent huge pages to page cache
Thomas Richter <tmricht@linux.ibm.com>
s390/cpumf: Handle events cycles and instructions identical
Dan Carpenter <dan.carpenter@oracle.com>
gpio: winbond: Fix error code in winbond_gpio_get()
Christoph Hellwig <hch@lst.de>
nvme: move the Samsung X5 quirk entry to the core quirks
Jakub Kicinski <kuba@kernel.org>
sock: redo the psock vs ULP protection check
Jakub Kicinski <kuba@kernel.org>
Revert "net/tls: fix tls_sk_proto_close executed repeatedly"
Stephan Gerhold <stephan.gerhold@kernkonzept.com>
virtio_net: fix xdp_rxq_info bug after suspend/resume
Kai-Heng Feng <kai.heng.feng@canonical.com>
igb: Make DMA faster when CPU is active on the PCIe link
Christian Marangi <ansuelsmth@gmail.com>
net: dsa: qca8k: reduce mgmt ethernet timeout
Mario Limonciello <mario.limonciello@amd.com>
drm/amd: Revert "drm/amd/display: keep eDP Vdd on when eDP stream is already enabled"
Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
iommu/ipmmu-vmsa: Fix compatible for rcar-gen4
Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
regmap-irq: Fix offset/index mismatch in read_sub_irq_data()
Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
regmap-irq: Fix a bug in regmap_irq_enable() for type_in_mask chips
Pavel Begunkov <asml.silence@gmail.com>
io_uring: fail links when poll fails
Anatolii Gerasymenko <anatolii.gerasymenko@intel.com>
ice: ethtool: Prohibit improper channel config for DCB
Anatolii Gerasymenko <anatolii.gerasymenko@intel.com>
ice: ethtool: advertise 1000M speeds properly
Wojciech Drewek <wojciech.drewek@intel.com>
ice: Fix switchdev rules book keeping
Marcin Szycik <marcin.szycik@linux.intel.com>
ice: ignore protocol field in GTP offload
Jens Axboe <axboe@kernel.dk>
block: pop cached rq before potentially blocking rq_qos_throttle()
David Howells <dhowells@redhat.com>
afs: Fix dynamic root getattr
huhai <huhai@kylinos.cn>
MIPS: Remove repetitive increase irq_err_count
Julien Grall <jgrall@amazon.com>
x86/xen: Remove undefined behavior in setup_features()
Jason Andryuk <jandryuk@gmail.com>
xen-blkfront: Handle NULL gendisk
Florian Westphal <fw@strlen.de>
netfilter: nf_dup_netdev: add and use recursion counter
Florian Westphal <fw@strlen.de>
netfilter: nf_dup_netdev: do not push mac header a second time
Jie2x Zhou <jie2x.zhou@intel.com>
selftests: netfilter: correct PKTGEN_SCRIPT_PATHS in nft_concat_range.sh
Gerd Hoffmann <kraxel@redhat.com>
udmabuf: add back sanity check
Ziyang Xuan <william.xuanziyang@huawei.com>
net/tls: fix tls_sk_proto_close executed repeatedly
Eric Dumazet <edumazet@google.com>
erspan: do not assume transport header is always set
Riccardo Paolo Bestetti <pbl@bestov.io>
ipv4: fix bind address validity regression tests
Leo Yan <leo.yan@linaro.org>
perf arm-spe: Don't set data source if it's not a memory operation
Athira Rajeev <atrajeev@linux.vnet.ibm.com>
perf test topology: Use !strncmp(right platform) to fix guest PPC comparision check
Michael Petlan <mpetlan@redhat.com>
perf test: Record only user callchains on the "Check Arm64 callgraphs are complete in fp mode" test
Oleksij Rempel <linux@rempel-privat.de>
net: phy: at803x: fix NULL pointer dereference on AR9331 PHY
Kuogee Hsieh <quic_khsieh@quicinc.com>
drm/msm/dp: force link training for display resolution change
Kuogee Hsieh <quic_khsieh@quicinc.com>
drm/msm/dp: check core_initialized before disable interrupts at dp_display_unbind()
Miaoqian Lin <linmq006@gmail.com>
drm/msm/mdp4: Fix refcount leak in mdp4_modeset_init_intf
Peilin Ye <peilin.ye@bytedance.com>
net/sched: sch_netem: Fix arithmetic in netem_dump() for 32-bit platforms
Ivan Vecera <ivecera@redhat.com>
ethtool: Fix get module eeprom fallback
Jay Vosburgh <jay.vosburgh@canonical.com>
bonding: ARP monitor spams NETDEV_NOTIFY_PEERS notifiers
Lorenzo Bianconi <lorenzo@kernel.org>
igb: fix a use-after-free issue in igb_clean_tx_ring
Masami Hiramatsu (Google) <mhiramat@kernel.org>
rethook: Reject getting a rethook if RCU is not watching
Christoph Hellwig <hch@lst.de>
block: disable the elevator int del_gendisk
Hoang Le <hoang.h.le@dektech.com.au>
tipc: fix use-after-free Read in tipc_named_reinit
Jay Vosburgh <jay.vosburgh@canonical.com>
veth: Add updating of trans_start
Eric Dumazet <edumazet@google.com>
net: fix data-race in dev_isalive()
Quentin Perret <qperret@google.com>
KVM: arm64: Prevent kmemleak from accessing pKVM memory
Claudiu Manoil <claudiu.manoil@nxp.com>
phy: aquantia: Fix AN when higher speeds than 1G are not advertised
Saurabh Sengar <ssengar@linux.microsoft.com>
scsi: storvsc: Correct reporting of Hyper-V I/O size limits
Yu Liao <liaoyu15@huawei.com>
selftests dma: fix compile error for dma_map_benchmark
Jakub Sitnicki <jakub@cloudflare.com>
bpf, x86: Fix tail call count offset calculation on bpf2bpf call
Samuel Holland <samuel@sholland.org>
drm/sun4i: Fix crash during suspend after component bind failure
Jon Maxwell <jmaxwell37@gmail.com>
bpf: Fix request_sock leak in sk lookup helpers
Jonathan Marek <jonathan@marek.ca>
drm/msm: use for_each_sgtable_sg to iterate over scatterlist
Ciara Loftus <ciara.loftus@intel.com>
xsk: Fix generic transmit when completion queue reservation fails
Sergey Gorenko <sergeygo@nvidia.com>
scsi: iscsi: Exclude zero from the endpoint ID range
Rob Clark <robdclark@chromium.org>
drm/msm: Switch ordering of runpm put vs devfreq_idle
Damien Le Moal <damien.lemoal@opensource.wdc.com>
scsi: scsi_debug: Fix zone transition to full condition
Florian Westphal <fw@strlen.de>
netfilter: use get_random_u32 instead of prandom
Maximilian Luz <luzmaximilian@gmail.com>
drm/msm: Fix double pm_runtime_disable() call
Rob Clark <robdclark@chromium.org>
drm/msm: Ensure mmap offset is initialized
Macpaul Lin <macpaul.lin@mediatek.com>
USB: serial: option: add Quectel RM500K module support
Yonglin Tan <yonglin.tan@outlook.com>
USB: serial: option: add Quectel EM05-G modem
Carlo Lobrano <c.lobrano@gmail.com>
USB: serial: option: add Telit LE910Cx 0x1250 composition
Johan Hovold <johan@kernel.org>
USB: serial: pl2303: add support for more HXN (G) types
George Shen <george.shen@amd.com>
drm/amd/display: Fix typo in override_lane_settings
Joshua Ashton <joshua@froggi.es>
amd/display/dc: Fix COLOR_ENCODING and COLOR_RANGE doing nothing for DCN20+
Ville Syrjälä <ville.syrjala@linux.intel.com>
drm/i915: Implement w/a 22010492432 for adl-s
Jann Horn <jannh@google.com>
mm/slub: add missing TID updates on slab deactivation
Matthew Wilcox (Oracle) <willy@infradead.org>
filemap: Handle sibling entries in filemap_get_read_batch()
Masami Hiramatsu (Google) <mhiramat@kernel.org>
tracing/kprobes: Check whether get_kretprobe() returns NULL in kretprobe_dispatcher()
Mikulas Patocka <mpatocka@redhat.com>
dm mirror log: clear log bits up to BITS_PER_LONG boundary
Mike Snitzer <snitzer@kernel.org>
dm: do not return early from dm_io_complete if BLK_STS_AGAIN without polling
Nikos Tsironis <ntsironis@arrikto.com>
dm era: commit metadata in postsuspend after worker stops
Edward Wu <edwardwu@realtek.com>
ata: libata: add qc->flags in ata_qc_complete_template tracepoint
Sascha Hauer <s.hauer@pengutronix.de>
mtd: rawnand: gpmi: Fix setting busy timeout setting
Joerg Roedel <jroedel@suse.de>
MAINTAINERS: Add new IOMMU development mailing list
Demi Marie Obenour <demi@invisiblethingslab.com>
xen/gntdev: Avoid blocking in unmap_grant_pages()
Mengqi Zhang <mengqi.zhang@mediatek.com>
mmc: mediatek: wait dma stop bit reset to 0
Chevron Li <chevron.li@bayhubtech.com>
mmc: sdhci-pci-o2micro: Fix card detect by dealing with debouncing
Tyrel Datwyler <tyreld@linux.ibm.com>
scsi: ibmvfc: Allocate/free queue resource only during probe/remove
Tyrel Datwyler <tyreld@linux.ibm.com>
scsi: ibmvfc: Store vhost pointer during subcrq allocation
David Sterba <dsterba@suse.com>
btrfs: add error messages to all unrecognized mount options
Qu Wenruo <wqu@suse.com>
btrfs: prevent remounting to v1 space cache for subpage mount
Filipe Manana <fdmanana@suse.com>
btrfs: fix hang during unmount when block group reclaim task is running
Dominique Martinet <asmadeus@codewreck.org>
9p: fix EBADF errors in cached mode
Dominique Martinet <asmadeus@codewreck.org>
9p: fix fid refcount leak in v9fs_vfs_get_link
Dominique Martinet <asmadeus@codewreck.org>
9p: fix fid refcount leak in v9fs_vfs_atomic_open_dotl
Tyler Hicks <tyhicks@linux.microsoft.com>
9p: Fix refcounting during full path walks for fid lookups
Riccardo Paolo Bestetti <pbl@bestov.io>
ipv4: ping: fix bind address validity check
Rosemarie O'Riorden <roriorden@redhat.com>
net: openvswitch: fix parsing of nw_proto for IPv6 fragments
Tim Crawford <tcrawford@system76.com>
ALSA: hda/realtek: Add quirk for Clevo NS50PU
Tim Crawford <tcrawford@system76.com>
ALSA: hda/realtek: Add quirk for Clevo PD70PNT
Takashi Iwai <tiwai@suse.de>
ALSA: hda/realtek: Apply fixup for Lenovo Yoga Duet 7 properly
Kailang Yang <kailang@realtek.com>
ALSA: hda/realtek - ALC897 headset MIC no sound
Soham Sen <contact@sohamsen.me>
ALSA: hda/realtek: Add mute LED quirk for HP Omen laptop
Takashi Iwai <tiwai@suse.de>
ALSA: hda/conexant: Fix missing beep setup
Takashi Iwai <tiwai@suse.de>
ALSA: hda: Fix discovery of i915 graphics PCI device
Takashi Iwai <tiwai@suse.de>
ALSA: hda/via: Fix missing beep setup
Takashi Iwai <tiwai@suse.de>
ALSA: memalloc: Drop x86-specific hack for WC allocations
Jason A. Donenfeld <Jason@zx2c4.com>
random: quiet urandom warning ratelimit suppression message
Jason A. Donenfeld <Jason@zx2c4.com>
random: schedule mix_interrupt_randomness() less often
-------------
Diffstat:
Documentation/ABI/testing/sysfs-bus-iio-vf610 | 2 +-
.../devicetree/bindings/usb/generic-ehci.yaml | 3 +-
.../devicetree/bindings/usb/generic-ohci.yaml | 3 +-
Documentation/vm/hwpoison.rst | 3 +-
MAINTAINERS | 11 ++
Makefile | 6 +-
arch/arm/boot/dts/bcm2711-rpi-400.dts | 6 +-
arch/arm/boot/dts/imx6qdl.dtsi | 2 +-
arch/arm/boot/dts/imx7s.dtsi | 2 +-
arch/arm/kernel/crash_dump.c | 27 +---
arch/arm/mach-axxia/platsmp.c | 1 +
arch/arm/mach-cns3xxx/core.c | 2 +
arch/arm/mach-exynos/exynos.c | 1 +
arch/arm64/boot/dts/exynos/exynos7885.dtsi | 12 +-
arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 2 -
arch/arm64/boot/dts/ti/k3-j721s2-main.dtsi | 2 +-
arch/arm64/kernel/crash_dump.c | 29 +---
arch/arm64/kvm/arm.c | 6 +-
arch/ia64/kernel/crash_dump.c | 32 +----
arch/mips/kernel/crash_dump.c | 27 +---
arch/mips/vr41xx/common/icu.c | 2 -
arch/parisc/Kconfig | 1 +
arch/parisc/include/asm/fb.h | 2 +-
arch/parisc/kernel/cache.c | 5 +-
arch/powerpc/kernel/crash_dump.c | 35 +----
arch/powerpc/kernel/process.c | 2 +-
arch/powerpc/kernel/rtas.c | 11 +-
arch/powerpc/platforms/microwatt/microwatt.h | 7 +
arch/powerpc/platforms/microwatt/rng.c | 10 +-
arch/powerpc/platforms/microwatt/setup.c | 8 ++
arch/powerpc/platforms/powernv/powernv.h | 2 +
arch/powerpc/platforms/powernv/rng.c | 52 ++++---
arch/powerpc/platforms/powernv/setup.c | 2 +
arch/powerpc/platforms/pseries/pseries.h | 2 +
arch/powerpc/platforms/pseries/rng.c | 11 +-
arch/powerpc/platforms/pseries/setup.c | 2 +
arch/riscv/kernel/crash_dump.c | 26 +---
arch/s390/kernel/crash_dump.c | 23 ++-
arch/s390/kernel/perf_cpum_cf.c | 22 ++-
arch/sh/kernel/crash_dump.c | 29 +---
arch/x86/kernel/crash_dump_32.c | 29 +---
arch/x86/kernel/crash_dump_64.c | 41 ++----
arch/x86/kvm/svm/sev.c | 68 ++++++---
arch/x86/kvm/svm/svm.c | 11 +-
arch/x86/kvm/svm/svm.h | 2 +-
arch/x86/net/bpf_jit_comp.c | 3 +-
arch/xtensa/kernel/time.c | 1 +
arch/xtensa/platforms/xtfpga/setup.c | 1 +
block/blk-core.c | 13 --
block/blk-mq.c | 11 +-
block/genhd.c | 39 ++---
drivers/base/memory.c | 2 +-
drivers/base/regmap/regmap-irq.c | 8 +-
drivers/block/xen-blkfront.c | 19 ++-
drivers/char/random.c | 6 +-
drivers/dma-buf/udmabuf.c | 5 +-
drivers/gpio/gpio-vr41xx.c | 2 -
drivers/gpio/gpio-winbond.c | 7 +-
drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 2 +-
.../amd/display/dc/dce110/dce110_hw_sequencer.c | 24 +---
drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dpp.c | 3 +
drivers/gpu/drm/amd/display/dc/dcn201/dcn201_dpp.c | 3 +
drivers/gpu/drm/amd/display/dc/dcn30/dcn30_dpp.c | 3 +
drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 4 +-
drivers/gpu/drm/msm/adreno/adreno_gpu.c | 3 +-
drivers/gpu/drm/msm/disp/mdp4/mdp4_kms.c | 2 +
drivers/gpu/drm/msm/dp/dp_ctrl.c | 33 +++--
drivers/gpu/drm/msm/dp/dp_ctrl.h | 2 +-
drivers/gpu/drm/msm/dp/dp_display.c | 16 +--
drivers/gpu/drm/msm/msm_drv.c | 2 +-
drivers/gpu/drm/msm/msm_drv.h | 1 +
drivers/gpu/drm/msm/msm_gem_prime.c | 15 ++
drivers/gpu/drm/msm/msm_gpu.c | 3 +-
drivers/gpu/drm/msm/msm_iommu.c | 2 +-
drivers/gpu/drm/sun4i/sun4i_drv.c | 4 +-
drivers/iio/accel/bma180.c | 3 +-
drivers/iio/accel/kxcjk-1013.c | 4 +-
drivers/iio/accel/mma8452.c | 22 +--
drivers/iio/accel/mxc4005.c | 4 +-
drivers/iio/adc/adi-axi-adc.c | 3 +
drivers/iio/adc/aspeed_adc.c | 1 +
drivers/iio/adc/axp288_adc.c | 8 ++
drivers/iio/adc/rzg2l_adc.c | 8 +-
drivers/iio/adc/stm32-adc-core.c | 9 +-
drivers/iio/adc/stm32-adc.c | 37 +++--
drivers/iio/adc/ti-ads131e08.c | 10 +-
drivers/iio/adc/xilinx-ams.c | 2 +-
drivers/iio/afe/iio-rescale.c | 2 +-
drivers/iio/chemical/ccs811.c | 4 +-
drivers/iio/gyro/mpu3050-core.c | 1 +
drivers/iio/humidity/hts221_buffer.c | 5 +-
drivers/iio/imu/inv_icm42600/inv_icm42600.h | 1 +
drivers/iio/imu/inv_icm42600/inv_icm42600_core.c | 2 +-
drivers/iio/magnetometer/yamaha-yas530.c | 2 +-
drivers/iio/proximity/sx9324.c | 3 +
drivers/iio/test/Kconfig | 2 +-
drivers/iio/test/Makefile | 2 +-
drivers/iio/trigger/iio-trig-sysfs.c | 1 +
drivers/iommu/ipmmu-vmsa.c | 2 +-
drivers/md/dm-era-target.c | 8 +-
drivers/md/dm-log.c | 2 +-
drivers/md/dm.c | 4 +-
drivers/memory/mtk-smi.c | 5 +-
drivers/memory/samsung/exynos5422-dmc.c | 29 ++--
drivers/mmc/host/mtk-sd.c | 20 +--
drivers/mmc/host/sdhci-pci-o2micro.c | 2 +
drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c | 2 +-
drivers/net/bonding/bond_main.c | 4 +-
drivers/net/dsa/qca8k.h | 2 +-
drivers/net/ethernet/intel/ice/ice_ethtool.c | 49 ++++++-
drivers/net/ethernet/intel/ice/ice_lib.c | 42 +++++-
drivers/net/ethernet/intel/ice/ice_tc_lib.c | 5 +-
drivers/net/ethernet/intel/igb/igb_main.c | 19 +--
drivers/net/phy/aquantia_main.c | 15 +-
drivers/net/phy/at803x.c | 6 +
drivers/net/veth.c | 4 +
drivers/net/virtio_net.c | 25 +---
drivers/nvme/host/core.c | 14 ++
drivers/nvme/host/pci.c | 4 -
drivers/scsi/ibmvscsi/ibmvfc.c | 82 ++++++++---
drivers/scsi/ibmvscsi/ibmvfc.h | 2 +-
drivers/scsi/scsi_debug.c | 22 ++-
drivers/scsi/scsi_transport_iscsi.c | 7 +-
drivers/scsi/storvsc_drv.c | 27 +++-
drivers/soc/bcm/brcmstb/pm/pm-arm.c | 1 +
drivers/usb/chipidea/udc.c | 3 +
drivers/usb/gadget/function/uvc_video.c | 3 +
drivers/usb/gadget/legacy/raw_gadget.c | 63 ++++++---
drivers/usb/host/xhci-hub.c | 2 +-
drivers/usb/host/xhci-pci.c | 6 +-
drivers/usb/host/xhci.c | 15 +-
drivers/usb/host/xhci.h | 2 +
drivers/usb/serial/option.c | 6 +
drivers/usb/serial/pl2303.c | 29 ++--
drivers/usb/typec/tcpm/Kconfig | 1 -
drivers/video/console/sticore.c | 2 +
drivers/xen/features.c | 2 +-
drivers/xen/gntdev-common.h | 7 +
drivers/xen/gntdev.c | 157 ++++++++++++++-------
fs/9p/fid.c | 22 ++-
fs/9p/vfs_addr.c | 13 ++
fs/9p/vfs_inode.c | 8 +-
fs/9p/vfs_inode_dotl.c | 3 +
fs/afs/inode.c | 3 +-
fs/btrfs/disk-io.c | 13 +-
fs/btrfs/file.c | 67 +++++++--
fs/btrfs/locking.c | 3 -
fs/btrfs/reflink.c | 15 +-
fs/btrfs/super.c | 47 +++++-
fs/cifs/smb2pdu.c | 21 ++-
fs/f2fs/iostat.c | 31 ++--
fs/f2fs/namei.c | 17 ++-
fs/f2fs/node.c | 4 +-
fs/io_uring.c | 20 ++-
fs/proc/vmcore.c | 54 ++++---
include/linux/crash_dump.h | 9 +-
include/linux/mm.h | 1 +
include/linux/ratelimit_types.h | 12 +-
include/net/inet_sock.h | 5 +
include/trace/events/libata.h | 1 +
kernel/dma/direct.c | 5 +-
kernel/trace/rethook.c | 9 ++
kernel/trace/trace_kprobe.c | 11 +-
mm/filemap.c | 2 +
mm/hwpoison-inject.c | 2 +-
mm/madvise.c | 2 +-
mm/memory-failure.c | 12 ++
mm/readahead.c | 2 +
mm/slub.c | 2 +
mm/swap.c | 2 +-
net/core/dev.c | 25 ++--
net/core/filter.c | 34 ++++-
net/core/net-sysfs.c | 1 +
net/core/skmsg.c | 5 +
net/ethtool/eeprom.c | 2 +-
net/ipv4/ip_gre.c | 15 +-
net/ipv4/ping.c | 10 +-
net/ipv4/tcp_bpf.c | 3 -
net/ipv6/ip6_gre.c | 15 +-
net/netfilter/nf_dup_netdev.c | 25 +++-
net/netfilter/nft_meta.c | 13 +-
net/netfilter/nft_numgen.c | 12 +-
net/openvswitch/flow.c | 2 +-
net/sched/sch_netem.c | 4 +-
net/tipc/core.c | 3 +-
net/tls/tls_main.c | 2 +
net/xdp/xsk.c | 16 ++-
scripts/mod/modpost.c | 2 +-
sound/core/memalloc.c | 23 +--
sound/hda/hdac_i915.c | 15 +-
sound/pci/hda/hda_auto_parser.c | 7 +-
sound/pci/hda/hda_local.h | 1 +
sound/pci/hda/patch_conexant.c | 4 +-
sound/pci/hda/patch_realtek.c | 36 ++++-
sound/pci/hda/patch_via.c | 4 +-
tools/perf/tests/shell/test_arm_callgraph_fp.sh | 2 +-
tools/perf/tests/topology.c | 2 +-
tools/perf/util/arm-spe.c | 22 ++-
tools/perf/util/build-id.c | 28 ++++
tools/testing/selftests/dma/Makefile | 1 +
tools/testing/selftests/dma/dma_map_benchmark.c | 2 +-
tools/testing/selftests/net/fcnal-test.sh | 61 +++++++-
.../selftests/netfilter/nft_concat_range.sh | 2 +-
203 files changed, 1558 insertions(+), 920 deletions(-)
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman @ 2022-06-27 14:44 ` Jon Hunter 2022-06-27 15:54 ` Fenil Jain ` (11 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Jon Hunter @ 2022-06-27 14:44 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Greg Kroah-Hartman, stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade, linux-tegra On Mon, 27 Jun 2022 13:19:33 +0200, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +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.18.8-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.18.y > and the diffstat can be found below. > > thanks, > > greg k-h All tests passing for Tegra ... Test results for stable-v5.18: 10 builds: 10 pass, 0 fail 28 boots: 28 pass, 0 fail 130 tests: 130 pass, 0 fail Linux version: 5.18.8-rc1-g188f58194f3c Boards tested: tegra124-jetson-tk1, tegra186-p2771-0000, tegra194-p2972-0000, tegra194-p3509-0000+p3668-0000, tegra20-ventana, tegra210-p2371-2180, tegra210-p3450-0000, tegra30-cardhu-a04 Tested-by: Jon Hunter <jonathanh@nvidia.com> Jon ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman 2022-06-27 14:44 ` Jon Hunter @ 2022-06-27 15:54 ` Fenil Jain 2022-06-27 17:49 ` Florian Fainelli ` (10 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Fenil Jain @ 2022-06-27 15:54 UTC (permalink / raw) To: Greg Kroah-Hartman; +Cc: Shuah Khan, stable Hey Greg, Ran tests and boot tested on my system, no regression found Tested-by: Fenil Jain <fkjainco@gmail.com> ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman 2022-06-27 14:44 ` Jon Hunter 2022-06-27 15:54 ` Fenil Jain @ 2022-06-27 17:49 ` Florian Fainelli 2022-06-27 18:08 ` Daniel Díaz ` (9 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Florian Fainelli @ 2022-06-27 17:49 UTC (permalink / raw) To: Greg Kroah-Hartman, linux-kernel Cc: stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, sudipm.mukherjee, slade On 6/27/22 04:19, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +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.18.8-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.18.y > and the diffstat can be found below. > > thanks, > > greg k-h On ARCH_BRCMSTB using 32-bit and 64-bit ARM kernels: Tested-by: Florian Fainelli <f.fainelli@gmail.com> -- Florian ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (2 preceding siblings ...) 2022-06-27 17:49 ` Florian Fainelli @ 2022-06-27 18:08 ` Daniel Díaz 2022-06-27 21:44 ` Rudi Heitbaum ` (8 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Daniel Díaz @ 2022-06-27 18:08 UTC (permalink / raw) To: Greg Kroah-Hartman, linux-kernel Cc: stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade Hello! On 27/06/22 06:19, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +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.18.8-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.18.y > and the diffstat can be found below. > > thanks, > > greg k-h Results from Linaro's test farm. The following new warnings have been found while building ixp4xx_defconfig for Arm combinations with GCC: WARNING: modpost: vmlinux.o(___ksymtab_gpl+ixp4xx_irq_init+0x0): Section mismatch in reference from the variable __ksymtab_ixp4xx_irq_init to the function .init.text:ixp4xx_irq_init() The symbol ixp4xx_irq_init is exported and annotated __init Fix this by removing the __init annotation of ixp4xx_irq_init or drop the export. WARNING: modpost: vmlinux.o(___ksymtab_gpl+ixp4xx_timer_setup+0x0): Section mismatch in reference from the variable __ksymtab_ixp4xx_timer_setup to the function .init.text:ixp4xx_timer_setup() The symbol ixp4xx_timer_setup is exported and annotated __init Fix this by removing the __init annotation of ixp4xx_timer_setup or drop the export. ## Build * kernel: 5.18.8-rc1 * git: https://gitlab.com/Linaro/lkft/mirrors/stable/linux-stable-rc * git branch: linux-5.18.y * git commit: 188f58194f3c72f6d47077c7dfe205b4f62d01ba * git describe: v5.18.7-182-g188f58194f3c * test details: https://qa-reports.linaro.org/lkft/linux-stable-rc-linux-5.18.y/build/v5.18.7-182-g188f58194f3c ## No test regressions (compared to v5.18.7) ## Metric regressions (compared to v5.18.7) * arm, build - gcc-8-ixp4xx_defconfig-warnings - gcc-9-ixp4xx_defconfig-warnings - gcc-10-ixp4xx_defconfig-warnings - gcc-11-ixp4xx_defconfig-warnings Reported-by: Linux Kernel Functional Testing <lkft@linaro.org> ## No test fixes (compared to v5.18.7) ## No metric fixes (compared to v5.18.7) ## Test result summary total: 122034, pass: 110497, fail: 531, skip: 10313, xfail: 693 ## Build Summary * arc: 10 total, 10 passed, 0 failed * arm: 319 total, 316 passed, 3 failed * arm64: 64 total, 62 passed, 2 failed * i386: 57 total, 50 passed, 7 failed * mips: 41 total, 38 passed, 3 failed * parisc: 14 total, 14 passed, 0 failed * powerpc: 65 total, 56 passed, 9 failed * riscv: 32 total, 27 passed, 5 failed * s390: 23 total, 20 passed, 3 failed * sh: 26 total, 24 passed, 2 failed * sparc: 14 total, 14 passed, 0 failed * x86_64: 62 total, 58 passed, 4 failed ## Test suites summary * fwts * igt-gpu-tools * kselftest-android * kselftest-breakpoints * kselftest-capabilities * kselftest-cgroup * kselftest-clone3 * kselftest-core * kselftest-cpu-hotplug * kselftest-cpufreq * kselftest-drivers-dma-buf * kselftest-efivarfs * kselftest-filesystems * kselftest-filesystems-binderfs * kselftest-firmware * kselftest-fpu * kselftest-gpio * kselftest-ipc * kselftest-ir * kselftest-kcmp * kselftest-lib * kselftest-membarrier * kselftest-netfilter * kselftest-nsfs * kselftest-openat2 * kselftest-pid_namespace * kselftest-pidfd * kselftest-proc * kselftest-pstore * kselftest-rseq * kselftest-rtc * kselftest-seccomp * kselftest-sigaltstack * kselftest-size * kselftest-splice * kselftest-static_keys * kselftest-sync * kselftest-sysctl * kselftest-tc-testing * kselftest-timens * kselftest-timers * kselftest-tmpfs * kselftest-tpm2 * kselftest-user * kselftest-vm * kselftest-zram * kunit * kvm-unit-tests * libgpiod * libhugetlbfs * log-parser-boot * log-parser-test * ltp-cap_bounds * ltp-commands * ltp-containers * ltp-controllers * ltp-cpuhotplug * ltp-crypto * ltp-cve * ltp-dio * ltp-fcntl-locktests * ltp-filecaps * ltp-fs * ltp-fs_bind * ltp-fs_perms_simple * ltp-fsx * ltp-hugetlb * ltp-io * ltp-ipc * ltp-math * ltp-mm * ltp-nptl * ltp-open-posix-tests * ltp-pty * ltp-sched * ltp-securebits * ltp-smoke * ltp-syscalls * ltp-tracing * network-basic-tests * packetdrill * perf * rcutorture * ssuite * v4l2-compliance * vdso Greetings! Daniel Díaz daniel.diaz@linaro.org -- Linaro LKFT https://lkft.linaro.org ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (3 preceding siblings ...) 2022-06-27 18:08 ` Daniel Díaz @ 2022-06-27 21:44 ` Rudi Heitbaum 2022-06-27 21:50 ` Shuah Khan ` (7 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Rudi Heitbaum @ 2022-06-27 21:44 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade On Mon, Jun 27, 2022 at 01:19:33PM +0200, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +0000. > Anything received after that time might be too late. Hi Greg, 5.18.8-rc1 tested. Run tested on: - Allwinner H6 (Tanix TX6) - Intel Tiger Lake x86_64 (nuc11 i7-1165G7) In addition - build tested for: - Allwinner A64 - Allwinner H3 - Allwinner H5 - NXP iMX6 - NXP iMX8 - Qualcomm Dragonboard - Rockchip RK3288 - Rockchip RK3328 - Rockchip RK3399pro - Samsung Exynos Tested-by: Rudi Heitbaum <rudi@heitbaum.com> -- Rudi ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (4 preceding siblings ...) 2022-06-27 21:44 ` Rudi Heitbaum @ 2022-06-27 21:50 ` Shuah Khan 2022-06-27 21:52 ` Ron Economos ` (6 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Shuah Khan @ 2022-06-27 21:50 UTC (permalink / raw) To: Greg Kroah-Hartman, linux-kernel Cc: stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade, Shuah Khan On 6/27/22 5:19 AM, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +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.18.8-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.18.y > and the diffstat can be found below. > > thanks, > > greg k-h > Compiled and booted on my test system. No dmesg regressions. Tested-by: Shuah Khan <skhan@linuxfoundation.org> thanks, -- Shuah ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (5 preceding siblings ...) 2022-06-27 21:50 ` Shuah Khan @ 2022-06-27 21:52 ` Ron Economos 2022-06-27 23:42 ` Guenter Roeck ` (5 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Ron Economos @ 2022-06-27 21:52 UTC (permalink / raw) To: Greg Kroah-Hartman, linux-kernel Cc: stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade On 6/27/22 4:19 AM, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +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.18.8-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.18.y > and the diffstat can be found below. > > thanks, > > greg k-h Built and booted successfully on RISC-V RV64 (HiFive Unmatched). Tested-by: Ron Economos <re@w6rz.net> ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (6 preceding siblings ...) 2022-06-27 21:52 ` Ron Economos @ 2022-06-27 23:42 ` Guenter Roeck 2022-06-28 2:49 ` Justin Forbes ` (4 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Guenter Roeck @ 2022-06-27 23:42 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, stable, torvalds, akpm, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade On Mon, Jun 27, 2022 at 01:19:33PM +0200, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +0000. > Anything received after that time might be too late. > Build results: total: 154 pass: 154 fail: 0 Qemu test results: total: 489 pass: 489 fail: 0 Tested-by: Guenter Roeck <linux@roeck-us.net> Guenter ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (7 preceding siblings ...) 2022-06-27 23:42 ` Guenter Roeck @ 2022-06-28 2:49 ` Justin Forbes 2022-06-28 6:28 ` Bagas Sanjaya ` (3 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Justin Forbes @ 2022-06-28 2:49 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade On Mon, Jun 27, 2022 at 01:19:33PM +0200, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +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.18.8-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.18.y > and the diffstat can be found below. > > thanks, > > greg k-h Tested rc1 against the Fedora build system (aarch64, armv7, ppc64le, s390x, x86_64), and boot tested x86_64. No regressions noted. Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (8 preceding siblings ...) 2022-06-28 2:49 ` Justin Forbes @ 2022-06-28 6:28 ` Bagas Sanjaya 2022-06-28 13:23 ` Sudip Mukherjee ` (2 subsequent siblings) 12 siblings, 0 replies; 18+ messages in thread From: Bagas Sanjaya @ 2022-06-28 6:28 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade On Mon, Jun 27, 2022 at 01:19:33PM +0200, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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. > Successfully cross-compiled for arm (multi_v7_defconfig, GCC 12.1.0, armv7 with neon FPU) and arm64 (bcm2711_defconfig, GCC 12.1.0). Tested-by: Bagas Sanjaya <bagasdotme@gmail.com> -- An old man doll... just what I always wanted! - Clara ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (9 preceding siblings ...) 2022-06-28 6:28 ` Bagas Sanjaya @ 2022-06-28 13:23 ` Sudip Mukherjee 2022-07-06 7:41 ` Bagas Sanjaya 2022-07-06 23:51 ` Shuah Khan 12 siblings, 0 replies; 18+ messages in thread From: Sudip Mukherjee @ 2022-06-28 13:23 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, slade Hi Greg, On Mon, Jun 27, 2022 at 01:19:33PM +0200, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +0000. > Anything received after that time might be too late. Build test (gcc version 12.1.1 20220627): mips: 59 configs -> no failure arm: 99 configs -> no failure arm64: 3 configs -> no failure x86_64: 4 configs -> no failure alpha allmodconfig -> no failure csky allmodconfig -> no failure powerpc allmodconfig -> no failure riscv allmodconfig -> no failure s390 allmodconfig -> no failure xtensa allmodconfig -> no failure Boot test: x86_64: Booted on my test laptop. No regression. x86_64: Booted on qemu. No regression. [1] arm64: Booted on rpi4b (4GB model). No regression. [2] mips: Booted on ci20 board. No regression. [3] [1]. https://openqa.qa.codethink.co.uk/tests/1405 [2]. https://openqa.qa.codethink.co.uk/tests/1409 [3]. https://openqa.qa.codethink.co.uk/tests/1411 Tested-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> -- Regards Sudip ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (10 preceding siblings ...) 2022-06-28 13:23 ` Sudip Mukherjee @ 2022-07-06 7:41 ` Bagas Sanjaya 2022-07-06 23:51 ` Shuah Khan 12 siblings, 0 replies; 18+ messages in thread From: Bagas Sanjaya @ 2022-07-06 7:41 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade On Mon, Jun 27, 2022 at 01:19:33PM +0200, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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. > Successfully cross-compiled for arm64 (bcm2711_defconfig, GCC 10.2.0) and powerpc (ps3_defconfig, GCC 12.1.0). Tested-by: Bagas Sanjaya <bagasdotme@gmail.com> -- An old man doll... just what I always wanted! - Clara ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5.18 000/181] 5.18.8-rc1 review 2022-06-27 11:19 Greg Kroah-Hartman ` (11 preceding siblings ...) 2022-07-06 7:41 ` Bagas Sanjaya @ 2022-07-06 23:51 ` Shuah Khan 12 siblings, 0 replies; 18+ messages in thread From: Shuah Khan @ 2022-07-06 23:51 UTC (permalink / raw) To: Greg Kroah-Hartman, linux-kernel Cc: stable, torvalds, akpm, linux, shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli, sudipm.mukherjee, slade, Shuah Khan On 6/27/22 5:19 AM, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 5.18.8 release. > There are 181 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, 29 Jun 2022 11:19:09 +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.18.8-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.18.y > and the diffstat can be found below. > > thanks, > > greg k-h > Compiled and booted on my test system. No dmesg regressions. Tested-by: Shuah Khan <skhan@linuxfoundation.org> thanks, -- Shuah ^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2022-07-06 23:51 UTC | newest] Thread overview: 18+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-06-28 20:18 [PATCH 5.18 000/181] 5.18.8-rc1 review Thomas Backlund 2022-06-28 21:20 ` Ronald Warsow 2022-06-30 9:21 ` Greg KH -- strict thread matches above, loose matches on Subject: below -- 2022-06-27 16:38 Ronald Warsow 2022-06-27 11:19 Greg Kroah-Hartman 2022-06-27 14:44 ` Jon Hunter 2022-06-27 15:54 ` Fenil Jain 2022-06-27 17:49 ` Florian Fainelli 2022-06-27 18:08 ` Daniel Díaz 2022-06-27 21:44 ` Rudi Heitbaum 2022-06-27 21:50 ` Shuah Khan 2022-06-27 21:52 ` Ron Economos 2022-06-27 23:42 ` Guenter Roeck 2022-06-28 2:49 ` Justin Forbes 2022-06-28 6:28 ` Bagas Sanjaya 2022-06-28 13:23 ` Sudip Mukherjee 2022-07-06 7:41 ` Bagas Sanjaya 2022-07-06 23:51 ` Shuah Khan
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.