| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
| |
Disable lfs aliases since they are not needed when LFS is enabled
(From OE-Core rev: a999fe86f2ea34d1b7ba3958d5b54b89ab7a884f)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
To avoid working with undeterministic config files, remove all the
temporary files to start from scratch.
(From OE-Core rev: 74cd440c4e3df0ed3b81cf5c60a3f92e0dd3fe6c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When compiling busybox a second time (e.g. with `compile -f`), busybox
can use an altered autoconf.h file for compiling, which can ultimately
produces different and unwanted binaries.
This can produce errors like this one:
ERROR: busybox-1.35.0-r0 do_package: Error executing a python function in exec_func_python() autogenerated:
The stack trace of python calls that resulted in this exception/failure was:
File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
0001:
*** 0002:ptest_update_alternatives(d)
0003:
File: '…/poky/meta/classes/ptest.bbclass', lineno: 100, function: ptest_update_alternatives
0096: for alt_name, alt_link, alt_target, _ in alternatives:
0097: # Some alternatives are for man pages,
0098: # check if the alternative is in PATH
0099: if os.path.dirname(alt_link) in bin_paths:
*** 0100: os.symlink(alt_target, os.path.join(ptest_bindir, alt_name))
0101:}
0102:
0103:do_configure_ptest_base[dirs] = "${B}"
0104:do_compile_ptest_base[dirs] = "${B}"
Exception: FileExistsError: [Errno 17] File exists: '/bin/busybox.suid' -> '…/busybox/1.35.0-r0/package/usr/lib/busybox/ptest/bin/login'
This happens because ALTERNATIVE:busybox contains `/bin/login` twice,
initially that's because `/bin/login` is present in both
busybox.links.suid and busybox.links.nosuid. The reason for that is
because of the altered autoconf.h.
Steps to reproduce above error:
<add ptest to distro configs>
bitbake busybox -c clean
bitbake busybox -c package -f
bitbake busybox -c compile -f
bitbake busybox -c package -f
This patch guards against potential bugs by:
- making a backup of .config and autoconf.h that have matching
timestamps.
- make sure do_compile always starts with these files.
- restore .config and autoconf.h at the end of do_compile.
(From OE-Core rev: 6b4a0f063edcfe0a5a4f418842e86ac0c46d9cad)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
This option is no longer required in 6.1+, so we grab the following
kernel-cache change:
fa5b537b0e6 qemuarm: drop CONFIG_ARM_CRYPTO
(From OE-Core rev: 6bd8f0a916104bf650af931661a4f1b38a16d087)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
4adc0fbe03a6 Linux 6.1.3
6a0ef7326e1e kcsan: Instrument memcpy/memset/memmove with newer Clang
c9ded831e255 SUNRPC: Don't leak netobj memory when gss_read_proxy_verf() fails
e60fa800a32a tpm: tpm_tis: Add the missed acpi_put_table() to fix memory leak
b0785edaf649 tpm: tpm_crb: Add the missed acpi_put_table() to fix memory leak
bf31e3f8077a tpm: acpi: Call acpi_put_table() to fix memory leak
ba2e7d07dd06 mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING
a35b4bcb4389 block: Do not reread partition table on exclusively open device
01bb48573069 f2fs: allow to read node block after shutdown
6028ec01c4f7 f2fs: should put a page when checking the summary info
b3b3212725ed mm, compaction: fix fast_isolate_around() to stay within boundaries
97ce99984be1 md: fix a crash in mempool_free
e9d055b8dfca mfd: mt6360: Add bounds checking in Regmap read/write call-backs
784a4f995ee2 pnode: terminate at peers of source
f9aafff5448b ALSA: hda/hdmi: Static PCM mapping again with AMD HDMI codecs
389d34c2a8b5 ALSA: line6: fix stack overflow in line6_midi_transmit
e58d1d2eb31b ALSA: line6: correct midi status byte when receiving data from podxt
bc2e0c5bb97c ovl: update ->f_iocb_flags when ovl_change_flags() modifies ->f_flags
d84a696c86ac ovl: Use ovl mounter's fsuid and fsgid in ovl_link()
703fd753a0ba binfmt: Fix error return code in load_elf_fdpic_binary()
e6d180a35bc0 ACPI: x86: s2idle: Stop using AMD specific codepath for Rembrandt+
577821f756cf ACPI: x86: s2idle: Force AMD GUID/_REV 2 on HP Elitebook 865
0478b94c6f91 hfsplus: fix bug causing custom uid and gid being unable to be assigned with mount
23ac2a31c54f pstore/zone: Use GFP_ATOMIC to allocate zone buffer
5c3a4cdc5363 pstore: Properly assign mem_type property
2cec280c4915 kmsan: include linux/vmalloc.h
dace33a1896e kmsan: export kmsan_handle_urb
0ce4cc6d269d mm/mempolicy: fix memory leak in set_mempolicy_home_node system call
4d528dab403b mm, mremap: fix mremap() expanding vma with addr inside vma
97e14ae08204 rtmutex: Add acquire semantics for rtmutex lock acquisition slow path
09727bc32f67 futex: Fix futex_waitv() hrtimer debug object leak on kcalloc error
c86c5cf67f38 HID: plantronics: Additional PIDs for double volume key presses quirk
79f9b467b8b5 HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint
d465fa2a9add kprobes: kretprobe events missing on 2-core KVM guest
650b69b17cfd NFSD: fix use-after-free in __nfs42_ssc_open()
ba50fee6b41b rtc: msc313: Fix function prototype mismatch in msc313_rtc_probe()
482d990a5dd1 powerpc/rtas: avoid scheduling in rtas_os_term()
464d10e8d797 powerpc/rtas: avoid device tree lookups in rtas_os_term()
85cc8a187f2d iommu/mediatek: Fix crash on isr after kexec()
fcee8a2d4db4 objtool: Fix SEGFAULT
6d076293e5bf fs/ntfs3: Fix slab-out-of-bounds in r_page
4d744cee4ca1 fs/ntfs3: Delete duplicate condition in ntfs_read_mft()
fd8aa71b6571 fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_fill_super()
590a6943a1d1 fs/ntfs3: Use __GFP_NOWARN allocation at wnd_init()
d6379ce24296 fs/ntfs3: Validate index root when initialize NTFS security
fe5c3915c373 phy: sun4i-usb: Add support for the H616 USB PHY
1eacd1fd41b7 phy: sun4i-usb: Introduce port2 SIDDQ quirk
0da27d8efcdb soundwire: dmi-quirks: add quirk variant for LAPBC710 NUC15
d34485d40b6a fs/ntfs3: Fix slab-out-of-bounds read in run_unpack
2f041a19f4eb fs/ntfs3: Validate resident attribute name
3f6f75e8863f fs/ntfs3: Validate buffer length while parsing index
b343c40bb7ff fs/ntfs3: Validate attribute name offset
a7b23037b38b fs/ntfs3: Add null pointer check for inode operations
2600c80ea7b3 fs/ntfs3: Fix memory leak on ntfs_fill_super() error path
1621734cd304 fs/ntfs3: Add null pointer check to attr_load_runs_vcn
9173b89c16a6 fs/ntfs3: Validate data run offset
0bb9f93ba63a fs/ntfs3: Add overflow check for attribute size
db91a9c59162 fs/ntfs3: Validate BOOT record_size
2df487537c77 nvmet: don't defer passthrough commands with trivial effects to the workqueue
a574e81b37c0 nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition
aa9732dae4bc ata: ahci: Fix PCS quirk application for suspend
1ed959fef5b1 block, bfq: fix uaf for bfqq in bfq_exit_icq_bfqq
5fe70f9683f8 ACPI: video: Fix Apple GMUX backlight detection
ba074330a487 ACPI: resource: Add Asus ExpertBook B2502 to Asus quirks
33b7f0ef4aaf ACPI: resource: do IRQ override on Lenovo 14ALC7
ee8ec50b9269 ACPI: resource: do IRQ override on XMG Core 15
d1136b10944e nvme-pci: fix page size checks
b1814724e0d7 nvme-pci: fix mempool alloc size
a72f318c704e nvme-pci: fix doorbell buffer value endianness
ff46a46b7a30 io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeups
3b2728881dcd eventfd: provide a eventfd_signal_mask() helper
717ed90a6614 eventpoll: add EPOLL_URING_WAKE poll wakeup flag
d6a980a0da6c Linux 6.1.2
5f3d8993e095 pwm: tegra: Fix 32 bit build
70c6f7025014 mfd: qcom_rpm: Use devm_of_platform_populate() to simplify code
5c692f1ed39d drm/amd/display: revert Disable DRR actions during state commit
e970e4ee3fc2 media: dvbdev: fix refcnt bug
539479d00c51 media: dvbdev: fix build warning due to comments
882056ef3384 net: stmmac: fix errno when create_singlethread_workqueue() fails
69c2ad94fd0b io_uring: remove iopoll spinlock
9b5d3f21f1ab io_uring: protect cq_timeouts with timeout_lock
f9ef51a7055c io_uring/net: fix cleanup after recycle
b87006265a16 io_uring/net: ensure compat import handlers clear free_iov
e2c22a38fe29 io_uring: improve io_double_lock_ctx fail handling
f6a5cada4ff6 io_uring: dont remove file from msg_ring reqs
16225abb3cbc io_uring: add completion locking for iopoll
3a6ee45e3ceb io_uring/net: introduce IORING_SEND_ZC_REPORT_USAGE flag
215f9437dda0 blk-iolatency: Fix memory leak on add_disk() failures
05382ed9142c scsi: qla2xxx: Fix crash when I/O abort times out
5cfb9a60ed2d mm/gup: disallow FOLL_FORCE|FOLL_WRITE on hugetlb mappings
1baf3370e2dc btrfs: do not BUG_ON() on ENOMEM when dropping extent items for a range
ac551b1f500b ovl: fix use inode directly in rcu-walk mode
a609bfc1e644 fbdev: fbcon: release buffer when fbcon_do_set_font() failed
9c9e8be758c6 maple_tree: fix mas_spanning_rebalance() on insufficient data
8034a1ad67b8 test_maple_tree: add test for mas_spanning_rebalance() on insufficient data
b7334223cc7e gcov: add support for checksum field
55b3c66a0d44 floppy: Fix memory leak in do_floppy_init()
d01f65ac191e spi: fsl_spi: Don't change speed while chipselect is active
9e977e2642a1 regulator: core: fix deadlock on regulator enable
1665c3aa251f iio: addac: ad74413r: fix integer promotion bug in ad74413_get_input_current_offset()
d04481ee5e15 iio: adc128s052: add proper .data members in adc128_of_match table
49cfd1f61f44 iio: adc: ad_sigma_delta: do not use internal iio_dev lock
a154b1c139fb iio: fix memory leak in iio_device_register_eventset()
02ed209aa6f1 reiserfs: Add missing calls to reiserfs_security_free()
21ca0bfa11bb security: Restrict CONFIG_ZERO_CALL_USED_REGS to gcc or clang > 15.0.6
967fc34f297e 9p: set req refcount to zero to avoid uninitialized usage
1f572877e0ea loop: Fix the max_loop commandline argument treatment when it is set to 0
24117ea4303c HID: mcp2221: don't connect hidraw
608c6aed7136 HID: wacom: Ensure bootloader PID is usable in hidraw mode
c3c115368ef9 xhci: Prevent infinite loop in transaction errors recovery for streams
2f3b51189f7a usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init
2fd6ad7bc560 usb: dwc3: core: defer probe on ulpi_read_id timeout
d2837c6a1dbc usb: dwc3: Fix race between dwc3_set_mode and __dwc3_set_mode
1ba53c9c7995 clk: imx: imx8mp: add shared clk gate for usb suspend clk
7579645760a4 dt-bindings: clocks: imx8mp: Add ID for usb suspend clock
1a77a5bfe821 arm64: dts: qcom: sm8250: fix USB-DP PHY registers
299f141f90cd arm64: dts: qcom: sm6350: fix USB-DP PHY registers
c8e746384488 usb: xhci-mtk: fix leakage of shared hcd when fail to set wakeup irq
dfbbc47d8672 usb: cdnsp: fix lack of ZLP for ep0
5b7c3061067e HID: logitech-hidpp: Guard FF init code against non-USB devices
d95d83041b87 ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list
05d30f4b6cbe ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB
80202ef4f7cc ALSA: usb-audio: add the quirk for KT0206 device
67fd112b4b04 ALSA: usb-audio: Workaround for XRUN at prepare
b669bd94a1c8 dt-bindings: input: iqs7222: Add support for IQS7222A v1.13+
2ca347287d3f dt-bindings: input: iqs7222: Correct minimum slider size
78e01a98860e dt-bindings: input: iqs7222: Reduce 'linux,code' to optional
c8ab62f13d66 Input: iqs7222 - add support for IQS7222A v1.13+
fa25c90ee9a7 Input: iqs7222 - report malformed properties
201d1baa9a45 Input: iqs7222 - drop unused device node references
26e69e719a2f ima: Simplify ima_lsm_copy_rule
475add46170d pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES
810f2cfdfe4e cfi: Fix CFI failure with KASAN
b4a59fd2e50b afs: Fix lost servers_outstanding count
6c7b9d12578d perf test: Fix "all PMU test" to skip parametrized events
a7a2d258101d MIPS: ralink: mt7621: avoid to init common ralink reset controller
59871742b481 perf probe: Check -v and -q options in the right place
5d098b5080cb perf tools: Make quiet mode consistent between tools
01c4004e40b6 perf debug: Set debug_peo_args and redirect_to_stderr variable to correct values in perf_quiet_option()
86777de67a85 drm/amd/pm: avoid large variable on kernel stack
e84276c8dd88 pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion
d7d99f1a0af0 lkdtm: cfi: Make PAC test work with GCC 7 and 8
2c5e64f0a8d3 LoadPin: Ignore the "contents" argument of the LSM hooks
2d57269cabeb drm/i915/display: Don't disable DDI/Transcoder when setting phy test pattern
7ed4007347b5 ASoC: rt5670: Remove unbalanced pm_runtime_put()
0fe3a0cd2699 ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in rk_spdif_runtime_resume()
6df3ccb6aff0 ASoC: wm8994: Fix potential deadlock
f64bb48f27fb ALSA: hda/hdmi: fix stream-id config keep-alive for rt suspend
b4b2c4305cf4 ALSA: hda/hdmi: set default audio parameters for KAE silent-stream
1cc133bee40f ALSA: hda/hdmi: fix i915 silent stream programming flow
156b0c19c1a4 ASoC: mediatek: mt8183: fix refcount leak in mt8183_mt6358_ts3a227_max98357_dev_probe()
bebbba710321 ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in rockchip_pdm_runtime_resume()
4cc8431ec77a ASoC: audio-graph-card: fix refcount leak of cpu_ep in __graph_for_each_link()
a22cfbf78a87 ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in mt8173_rt5650_rt5514_dev_probe()
18a548fdecca ASoC: Intel: Skylake: Fix driver hang during shutdown
390a1a98288a ASoC: sof_es8336: fix possible use-after-free in sof_es8336_remove()
48c509f3f121 hwmon: (jc42) Fix missing unlock on error in jc42_write()
0cd303aad220 orangefs: Fix kmemleak in orangefs_{kernel,client}_debug_init()
224094902941 orangefs: Fix kmemleak in orangefs_sysfs_init()
19be31668552 orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string()
3ecdca49ca49 scsi: target: iscsi: Fix a race condition between login_work and the login thread
04371a75a584 drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid()
23d2bed04159 drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid()
d1c8b86b4ab7 scsi: smartpqi: Correct device removal for multi-actuator devices
41d8a934e2ea scsi: smartpqi: Add new controller PCI IDs
f2207145693a hugetlbfs: fix null-ptr-deref in hugetlbfs_parse_param()
74de6f6c8479 scsi: elx: libefc: Fix second parameter type in state callbacks
cbb17d7087ce Revert "PCI: Clear PCI_STATUS when setting up device"
fc521abb6ee4 crypto: hisilicon/qm - increase the memory of local variables
fc80b877f1d0 scsi: ufs: Reduce the START STOP UNIT timeout
39761417ea7b scsi: lpfc: Fix hard lockup when reading the rx_monitor from debugfs
cb873c93a7ad crypto: hisilicon/hpre - fix resource leak in remove process
65a1a20caf72 regulator: core: Fix resolve supply lookup issue
077bff242c13 Bluetooth: Add quirk to disable MWS Transport Configuration
9c89dcd53c64 Bluetooth: Add quirk to disable extended scanning
619523c1ab53 Bluetooth: hci_bcm: Add CYW4373A0 support
e070ef957b13 ice: synchronize the misc IRQ when tearing down Tx tracker
b0f25ca1ff9b regulator: core: Use different devices for resource allocation and DT lookup
f4731395d6db clk: st: Fix memory leak in st_of_quadfs_setup()
92b0888398e4 media: si470x: Fix use-after-free in si470x_int_in_callback()
43e5c20a8b44 mmc: sdhci-tegra: Issue CMD and DAT resets together
11ca98a1ed04 mmc: renesas_sdhi: better reset from HS400 mode
63604e820f15 mmc: renesas_sdhi: add quirk for broken register layout
c490e8c3d500 mmc: f-sdh30: Add quirks for broken timeout clock capability
55513864b418 nfs: fix possible null-ptr-deref when parsing param
96521aa5bc76 selftests/bpf: Fix conflicts with built-in functions in bpf_iter_ksym
a4fe51cd6894 hwmon: (nct6775) add ASUS CROSSHAIR VIII/TUF/ProArt B550M
f5ac749a0b21 wifi: mt76: do not run mt76u_status_worker if the device is not running
bc6c381df579 regulator: core: fix use_count leakage when handling boot-on
66d2f118d7d7 libbpf: Avoid enum forward-declarations in public API in C++ mode
ec58eae6c93a ASoC: amd: yc: Add Xiaomi Redmi Book Pro 14 2022 into DMI table
62db9242c1ca drm/amd/display: Fix DTBCLK disable requests and SRC_SEL programming
ec7475a20ceb drm/amd/display: Use the largest vready_offset in pipe group
b9f8ed9b01c4 drm/amdgpu: Fix potential double free and null pointer dereference
3759ae6600e4 ALSA: usb-audio: Add quirk for Tascam Model 12
33e8a3f61814 blk-mq: fix possible memleak when register 'hctx' failed
66d26ed30056 media: mediatek: vcodec: Can't set dst buffer to done when lat decode error
93bbf2ed4281 media: dvb-usb: fix memory leak in dvb_usb_adapter_init()
9945d05d6693 media: dvbdev: adopts refcnt to avoid UAF
669fb90507db media: dvb-frontends: fix leak of memory fw
f299f97a8e29 ethtool: avoiding integer overflow in ethtool_phys_id()
e6d276dcc920 bpf: Prevent decl_tag from being referenced in func_proto arg
8f4fb3844a0d bpf: Fix a BTF_ID_LIST bug with CONFIG_DEBUG_INFO_BTF not set
a866d6fe65ba drm/amd/display: Fix display corruption w/ VSR enable
ee678b1f52f9 ppp: associate skb with a device at tx
ba5dd4d3a339 bpf/verifier: Use kmalloc_size_roundup() to match ksize() usage
f51617c41da1 net: ethernet: mtk_eth_soc: drop packets to WDMA if the ring is full
563e45fd5046 mrp: introduce active flags to prevent UAF when applicant uninit
207501a98683 ipv6/sit: use DEV_STATS_INC() to avoid data-races
9921d1b68c46 net: add atomic_long_t to net_device_stats fields
1f116dfd114f nvme-auth: don't override ctrl keys before validation
43a819c467a1 drm/amd/display: fix array index out of bound error in bios parser
2ed52650a287 drm/amd/display: Workaround to increase phantom pipe vactive in pipesplit
d26364596db8 md/raid1: stop mdx_raid1 thread when raid1 array run failed
27e5d61a8e69 md/raid0, raid10: Don't set discard sectors for request queue
99bef41f8e8d drivers/md/md-bitmap: check the return value of md_bitmap_get_counter()
302c0a8ed3bc drm/mediatek: Fix return type of mtk_hdmi_bridge_mode_valid()
a29f8af3e45f drm/sti: Use drm_mode_copy()
e398c0ad0c56 drm/rockchip: Use drm_mode_copy()
b6ebe51e836e drm/msm: Use drm_mode_copy()
cf0dcf0e8746 drm/amd/display: Disable DRR actions during state commit
d5368e054eb8 drm/amd/display: Use min transition for SubVP into MPO
cda74cdc280b s390/lcs: Fix return type of lcs_start_xmit()
d034fa43af92 s390/netiucv: Fix return type of netiucv_tx()
636f8534a772 s390/ctcm: Fix return type of ctc{mp,}m_tx()
36217f676b55 drm/amdgpu: Fix type of second parameter in odn_edit_dpm_table() callback
1cae33c8f995 drm/amdgpu: Fix type of second parameter in trans_msg() callback
56483aecf6b2 igb: Do not free q_vector unless new one was allocated
46675bdbbb5e HID: uclogic: Add support for XP-PEN Deco LW
84bc0fe76182 HID: input: do not query XP-PEN Deco LW battery
630ab215956e wifi: brcmfmac: Fix potential NULL pointer dereference in 'brcmf_c_preinit_dcmds()'
ffb589963df1 wifi: brcmfmac: Fix potential shift-out-of-bounds in brcmf_fw_alloc_request()
1adbbdce22aa hamradio: baycom_epp: Fix return type of baycom_send_packet()
1e4953b826e1 net: ethernet: ti: Fix return type of netcp_ndo_start_xmit()
f186303845a0 bpf: make sure skb->len != 0 when redirecting to a tunneling device
ab576e2f1c5b drm/meson: Fix return type of meson_encoder_cvbs_mode_valid()
7dccd53ec7dc qed (gcc13): use u16 for fid to be big enough
a10e1530c424 wifi: ath11k: Fix qmi_msg_handler data structure initialization
15e6830642e6 HID: apple: enable APPLE_ISO_TILDE_QUIRK for the keyboards of Macs with the T2 chip
508cc67f9449 HID: apple: fix key translations where multiple quirks attempt to translate the same key
8b3d6b029a55 blk-mq: avoid double ->queue_rq() because of early timeout
6ec50ce315f4 drm/rockchip: use pm_runtime_resume_and_get() instead of pm_runtime_get_sync()
22c4f8ef9c62 Revert "drm/amd/display: Limit max DSC target bpp for specific monitors"
dd76b1c9f692 drm/edid: add a quirk for two LG monitors to get them to work on 10bpc
2b7e54cdda3f drm/amd/display: prevent memory leak
f97e6d4af8ea drm/amd/display: skip commit minimal transition state
6cfa68c7d2ce bnx2: Use kmalloc_size_roundup() to match ksize() usage
bde272c8758d openvswitch: Use kmalloc_size_roundup() to match ksize() usage
79a124b588aa wifi: ath10k: Delay the unmapping of the buffer
34cfc4f03274 ipmi: fix memleak when unload ipmi driver
488c3ad53ac9 ASoC: Intel: avs: Add quirk for KBL-R RVP platform
82f4b57e2624 ASoC: codecs: rt298: Add quirk for KBL-R RVP platform
9aef34e1ae35 wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out
0b7e6d681e00 wifi: ath9k: verify the expected usb_endpoints are present
200347eb3b26 brcmfmac: return error when getting invalid max_flowrings from dongle
35591c246995 media: imx-jpeg: Disable useless interrupt to avoid kernel panic
da4113e63f17 drm/etnaviv: add missing quirks for GC300
bfc9d8f27f89 hfs: fix OOB Read in __hfs_brec_find
96d66b7074cb ACPI: x86: Add skip i2c clients quirk for Medion Lifetab S10346
ef7cf3c92382 btrfs: do not panic if we can't allocate a prealloc extent state
a1f90b9a333c ACPI: x86: Add skip i2c clients quirk for Lenovo Yoga Tab 3 Pro (YT3-X90F)
87c51832b7af x86/apic: Handle no CONFIG_X86_X2APIC on systems with x2APIC enabled by BIOS
0aac6e60c464 acct: fix potential integer overflow in encode_comp_t()
a16731fa1b96 nilfs2: fix shift-out-of-bounds due to too large exponent of block size
62d11ec205ef nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset()
64958e12bb98 ACPI: video: Add force_native quirk for Sony Vaio VPCY11S1E
218c556cded5 ACPI: video: Add force_vendor quirk for Sony Vaio PCG-FRV35
c6b9b3200298 ACPI: video: Change Sony Vaio VPCEH3U1E quirk to force_native
478412161af4 ACPI: video: Change GIGABYTE GB-BXBT-2807 quirk to force_none
c547d7ee0455 thermal/core: Ensure that thermal device is registered in thermal_zone_get_temp
799881db3e03 ACPICA: Fix error code path in acpi_ds_call_control_method()
f72e95c2204f ACPI: EC: Add quirk for the HP Pavilion Gaming 15-cx0041ur
b85f0e292f73 ACPI: processor: idle: Check acpi_fetch_acpi_dev() return value
3d340b684dce fs: jfs: fix shift-out-of-bounds in dbDiscardAG
ccb6bdf0b7b6 jfs: Fix fortify moan in symlink
090bf49833c5 udf: Avoid double brelse() in udf_rename()
67973caae78e fs: jfs: fix shift-out-of-bounds in dbAllocAG
aaf8770746da arm64: dts: qcom: sm6350: Add apps_smmu with streamID to SDHCI 1/2 nodes
a10ff5b8cf86 arm64: dts: qcom: sm8450: disable SDHCI SDR104/SDR50 on all boards
a91123d4bda4 binfmt_misc: fix shift-out-of-bounds in check_special_flags
46db95e714ac x86/hyperv: Remove unregister syscore call from Hyper-V cleanup
16fed31153ce video: hyperv_fb: Avoid taking busy spinlock on panic path
2e356d6de4c7 ARM: dts: aspeed: rainier,everest: Move reserved memory regions
992469fb6ca0 arm64: make is_ttbrX_addr() noinstr-safe
80a3e7ab477b rcu: Fix __this_cpu_read() lockdep warning in rcu_force_quiescent_state()
1373e1b7206d net: fec: check the return value of build_skb()
8a37cf11dc78 HID: amd_sfh: Add missing check for dma_alloc_coherent
7b606804bbf0 mctp: Remove device type check at unregister
96ea05df9ed5 net: dsa: microchip: remove IRQF_TRIGGER_FALLING in request_threaded_irq
ae6fb31c0086 cifs: don't leak -ENOMEM in smb2_open_file()
a37f6d5541b2 mctp: serial: Fix starting value for frame check sequence
b458d349f875 net: stream: purge sk_error_queue in sk_stream_kill_queues()
70c8fcab6bf2 myri10ge: Fix an error handling path in myri10ge_probe()
7d88da597173 rxrpc: Fix missing unlock in rxrpc_do_sendmsg()
233bfb28d0fa net_sched: reject TCF_EM_SIMPLE case for complex ematch module
3fcf079958c0 mailbox: zynq-ipi: fix error handling while device_register() fails
525e54789c2b mailbox: arm_mhuv2: Fix return value check in mhuv2_probe()
cca61191a894 mailbox: mpfs: read the system controller's status
331615d837f4 skbuff: Account for tail adjustment during pull operations
ce321a1cd66b devlink: protect devlink dump by the instance lock
2838f0736cf0 arm64: dts: mt8183: Fix Mali GPU clock
6207862836ae soc: mediatek: pm-domains: Fix the power glitch issue
32d5fa5bdcce openvswitch: Fix flow lookup to use unmasked key
a02f965d828f selftests: devlink: fix the fd redirect in dummy_reporter_test
6298cab4d80b devlink: hold region lock when flushing snapshots
71e000446281 rtc: mxc_v2: Add missing clk_disable_unprepare()
a7316d07f087 igc: Set Qbv start_time and end_time to end_time if not being configured in GCL
4a3c071ff325 igc: recalculate Qbv end_time by considering cycle time
e0d11cda89a2 igc: allow BaseTime 0 enrollment for Qbv
3770bdee9640 igc: Add checking for basetime less than zero
94a033ae7d77 igc: Use strict cycles for Qbv scheduling
99dd830903d6 igc: Enhance Qbv scheduling by using first flag bit
c13d65dca354 net: dsa: mv88e6xxx: avoid reg_lock deadlock in mv88e6xxx_setup_port()
5944c25c67de r6040: Fix kmemleak in probe and remove
1d033ec2d179 unix: Fix race in SOCK_SEQPACKET's unix_dgram_sendmsg()
e491285b4d08 nfc: pn533: Clear nfc_target before being used
306526331e7a net: enetc: avoid buffer leaks on xdp_do_redirect() failure
a44053cf3b9c media: v4l2-ctrls-api.c: add back dropped ctrl->is_new = 1
6a1504dd36cd bpf: prevent leak of lsm program after failed attach
146891d1af80 selftests/bpf: Select CONFIG_FUNCTION_ERROR_INJECTION
761564d93c82 block, bfq: fix possible uaf for 'bfqq->bic'
27f94fc22305 mISDN: hfcmulti: don't call dev_kfree_skb/kfree_skb() under spin_lock_irqsave()
06fcc7543f30 mISDN: hfcpci: don't call dev_kfree_skb/kfree_skb() under spin_lock_irqsave()
793f872866d6 mISDN: hfcsusb: don't call dev_kfree_skb/kfree_skb() under spin_lock_irqsave()
b316841b6bdc bonding: do failover when high prio link up
2d31c6ed4428 bonding: add missed __rcu annotation for curr_active_slave
ba44c1fe8234 net: macsec: fix net device access prior to holding a lock
d843ebd860c5 nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure
f8059a2a2bdf iommu/mediatek: Fix forever loop in error handling
8a1a38289583 rtc: pcf85063: fix pcf85063_clkout_control
ed829c3b79b4 rtc: pic32: Move devm_rtc_allocate_device earlier in pic32_rtc_probe()
abfa5dd91453 rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe()
75b2692c90ce netfilter: flowtable: really fix NAT IPv6 offload
7f47c91e465a mfd: pm8008: Fix return value check in pm8008_probe()
b8d07df9ede9 mfd: qcom_rpm: Fix an error handling path in qcom_rpm_probe()
e295ac85d618 mfd: bd957x: Fix Kconfig dependency on REGMAP_IRQ
3bcc06c5fd48 mfd: axp20x: Do not sleep in the power off handler
d387d36fcc54 dt-bindings: mfd: qcom,spmi-pmic: Drop PWM reg dependency
0ab849944365 powerpc/pseries/eeh: use correct API for error log size
bce7d8e9596d remoteproc: qcom: q6v5: Fix missing clk_disable_unprepare() in q6v5_wcss_qcs404_power_on()
add474591d6e remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in adsp_alloc_memory_region()
f09a52e44263 remoteproc: qcom_q6v5_pas: detach power domains on remove
4458ed2d9570 remoteproc: qcom_q6v5_pas: disable wakeup on probe fail or remove
0903a87490a9 remoteproc: qcom: q6v5: Fix potential null-ptr-deref in q6v5_wcss_init_mmio()
ec97e9a5c2f2 remoteproc: sysmon: fix memory leak in qcom_add_sysmon_subdev()
b773e86fc196 RISC-V: KVM: Fix reg_val check in kvm_riscv_vcpu_set_reg_config()
c786f2ac3010 pwm: mediatek: always use bus clock for PWM on MT7622
24cc0c9b591a pwm: mtk-disp: Fix the parameters calculated by the enabled flag of disp_pwm
0bdadab07430 pwm: sifive: Call pwm_sifive_update_clock() while mutex is held
9a87b1562c37 iommu/sun50i: Remove IOMMU_DOMAIN_IDENTITY
942218128976 iommu/mediatek: Validate number of phandles associated with "mediatek,larbs"
8412e5dd24ff iommu/mediatek: Add error path for loop of mm_dts_parse
21f56af86583 iommu/mediatek: Use component_match_add
44d7712267d1 iommu/mediatek: Add platform_device_put for recovering the device refcnt
b5dd27890c6d selftests/powerpc: Fix resource leaks
01e3641b168c powerpc/hv-gpci: Fix hv_gpci event list
983e28974755 powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in of_fsl_spi_probe()
5429722209ea powerpc/perf: callchain validate kernel stack pointer bounds
e45e3aae8df8 powerpc: dts: turris1x.dts: Add channel labels for temperature sensor
c909985dd0c0 kprobes: Fix check for probe enabled in kill_kprobe()
03d7168103f3 powerpc/pseries: fix plpks_read_var() code for different consumers
c156df808e11 powerpc/pseries: Return -EIO instead of -EINTR for H_ABORTED error
1a7657adb06b powerpc/pseries: Fix the H_CALL error code in PLPKS driver
b38e5a3c469e powerpc/pseries: fix the object owners enum value in plpks driver
8240299519db powerpc/xive: add missing iounmap() in error path in xive_spapr_populate_irq_data()
028631dd53a0 powerpc/xmon: Fix -Wswitch-unreachable warning in bpt_cmds
2d7b6580384e cxl: Fix refcount leak in cxl_calc_capp_routing
fb3ef6a5af4b powerpc/52xx: Fix a resource leak in an error handling path
65572a13163f macintosh/macio-adb: check the return value of ioremap()
76837e7f6b30 macintosh: fix possible memory leak in macio_add_one_device()
de7eb5500979 iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe()
b0637f4bd426 iommu/amd: Fix pci device refcount leak in ppr_notifier()
26427454bebf iommu: Avoid races around device probe
feca90441248 iommu/mediatek: Check return value after calling platform_get_resource()
51a7fbc59845 rtc: pcf85063: Fix reading alarm
6d4dacd4a91a rtc: snvs: Allow a time difference on clock register read
421091ae0e27 rtc: cmos: Disable ACPI RTC event on removal
93893e25d979 rtc: cmos: Rename ACPI-related functions
fbf866b150df rtc: cmos: Eliminate forward declarations of some functions
fd8b7f41a416 rtc: cmos: Call rtc_wake_setup() from cmos_do_probe()
054d6b32c576 rtc: cmos: Call cmos_wake_setup() from cmos_do_probe()
9ba808aec5a1 rtc: pcf2127: Convert to .probe_new()
59457a0f079e rtc: class: Fix potential memleak in devm_rtc_allocate_device()
6cb7ea142620 rtc: rzn1: Check return value in rzn1_rtc_probe
9f2a53f143e8 dmaengine: idxd: Fix crc_val field for completion record
f2e58e95273c fs/ntfs3: Fix slab-out-of-bounds read in ntfs_trim_fs
cf66351484ad phy: qcom-qmp-pcie: Fix sm8450_qmp_gen4x2_pcie_pcs_tbl[] register names
c5ca087f47de phy: qcom-qmp-pcie: Fix high latency with 4x2 PHY when ASPM is enabled
5d39a1d9a243 phy: qcom-qmp-pcie: Support SM8450 PCIe1 PHY in EP mode
e83821af6471 phy: qcom-qmp-pcie: support separate tables for EP mode
d1945ec03ca6 phy: qcom-qmp-pcie: split pcs_misc init cfg for ipq8074 pcs table
814cd5ca1c77 phy: qcom-qmp-pcie: split register tables into common and extra parts
984f35f57f74 pwm: tegra: Ensure the clock rate is not less than needed
49c8cc208464 pwm: tegra: Improve required rate calculation
67edfd980731 include/uapi/linux/swab: Fix potentially missing __always_inline
238a935ac0a7 phy: usb: Fix clock imbalance for suspend/resume
d19f1664c843 phy: usb: Use slow clock for wake enabled suspend
0bceef84f716 phy: usb: s2 WoL wakeup_count not incremented for USB->Eth devices
c40b86861146 phy: qcom-qmp-usb: fix sc8280xp PCS_USB offset
c91e4513bc18 dmaengine: idxd: Make read buffer sysfs attributes invisible for Intel IAA
f2f10a2db278 iommu/rockchip: fix permission bits in page table entries v2
92af3bbeb918 iommu/sun50i: Implement .iotlb_sync_map
9b25137905c8 iommu/sun50i: Fix flush size
3b95b7b0ddec iommu/sun50i: Fix R/W permission check
5ad5a837c364 iommu/sun50i: Consider all fault sources for reset
b4d8bf6c2a77 iommu/sun50i: Fix reset release
9b5569846a34 iommu/s390: Fix duplicate domain attachments
6792416576ff phy: qcom-qmp-usb: correct registers layout for IPQ8074 USB3 PHY
655d02663482 phy: qcom-qmp-usb: drop start and pwrdn-ctrl abstraction
f674ef5bf4e1 phy: qcom-qmp-usb: clean up status polling
71c03e6a0525 phy: qcom-qmp-usb: drop power-down delay config
71098933ea1b phy: qcom-qmp-usb: drop sc8280xp power-down delay
c6f0977eaa19 phy: qcom-qmp-usb: clean up power-down handling
d668d34df96a phy: qcom-qmp-pcie: fix ipq6018 initialisation
73af0c169079 phy: qcom-qmp-pcie: fix ipq8074-gen3 initialisation
abe9bf8c9501 phy: qcom-qmp-pcie: fix sc8180x initialisation
0b2e4f939450 phy: qcom-qmp-pcie: replace power-down delay
b52920f887e6 phy: qcom-qmp-pcie: drop power-down delay config
aa51fd765fe5 remoteproc: core: Auto select rproc-virtio device id
d53171d1d0e7 dmaengine: apple-admac: Allocate cache SRAM to channels
cc743a1d832d dmaengine: idxd: Make max batch size attributes in sysfs invisible for Intel IAA
0d0382b9c0d5 phy: qcom-qmp-pcie: drop bogus register update
cd1e1735aeab phy: marvell: phy-mvebu-a3700-comphy: Reset COMPHY registers before USB 3.0 power on
b259e31d150a fs/ntfs3: Harden against integer overflows
95afb464c86c fs/ntfs3: Avoid UBSAN error on true_sectors_per_clst()
2246ac03dd59 RDMA/siw: Fix pointer cast warning
54af75ddf3c6 perf stat: Do not delay the workload with --delay
9f4c997cd123 ftrace: Allow WITH_ARGS flavour of graph tracer with shadow call stack
616c17a2ef99 perf off_cpu: Fix a typo in BTF tracepoint name, it should be 'btf_trace_sched_switch'
75f7820de933 leds: is31fl319x: Fix setting current limit for is31fl319{0,1,3}
308eef3e16fd gfs2: Partially revert gfs2_inode_lookup change
b8131efb89d9 power: supply: fix null pointer dereferencing in power_supply_get_battery_info
301e40552833 perf branch: Fix interpretation of branch records
64245114c072 power: supply: bq25890: Ensure pump_express_work is cancelled on remove
81b0e5d5aa0c power: supply: bq25890: Convert to i2c's .probe_new()
ebf085a725b6 power: supply: bq25890: Factor out regulator registration code
7d1e3961725e power: supply: Fix refcount leak in rk817_charger_probe
b866e8a0b7dc power: supply: ab8500: Fix error handling in ab8500_charger_init()
42d976bd9766 HSI: omap_ssi_core: Fix error handling in ssi_init()
5150b76aa2eb power: supply: cw2015: Fix potential null-ptr-deref in cw_bat_probe()
be11e0951314 power: supply: z2_battery: Fix possible memleak in z2_batt_probe()
38d35aae1b27 perf symbol: correction while adjusting symbol
bc05eb64a10c perf trace: Handle failure when trace point folder is missed
27e9c2ca24ce perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number
01673142a679 perf trace: Return error if a system call doesn't exist
0fd13791feb6 watchdog: iTCO_wdt: Set NO_REBOOT if the watchdog is not already running
a9b65ba1afcc power: supply: fix residue sysfs file in error handle route of __power_supply_register()
fa80f145e543 HSI: omap_ssi_core: fix possible memory leak in ssi_probe()
8159e2f8b60e HSI: omap_ssi_core: fix unbalanced pm_runtime_disable()
8a9c05d988cc perf stat: Move common code in print_metric_headers()
1b2a63c33106 perf stat: Use evsel__is_hybrid() more
6c8d5578180c perf tools: Fix "kernel lock contention analysis" test by not printing warnings in quiet mode
380304391fa7 led: qcom-lpg: Fix sleeping in atomic
7aca1cea8fcc fbdev: uvesafb: Fixes an error handling path in uvesafb_probe()
5976889098e6 fbdev: uvesafb: don't build on UML
e268a5792536 fbdev: geode: don't build on UML
4c0d613d7999 fbdev: ep93xx-fb: Add missing clk_disable_unprepare in ep93xxfb_probe()
1fb436db9c87 fbdev: vermilion: decrease reference count in error path
e94ae434f659 fbdev: via: Fix error in via_core_init()
85255669ce72 fbdev: pm2fb: fix missing pci_disable_device()
3be1f7545369 fbdev: ssd1307fb: Drop optional dependency
ba9550952f20 thermal/drivers/qcom/lmh: Fix irq handler return value
f7f3721c78a2 thermal/drivers/qcom/temp-alarm: Fix inaccurate warning for gen2
6ddc86823973 thermal/of: Fix memory leak on thermal_of_zone_register() failure
8eeda6567cc4 thermal/drivers/k3_j72xx_bandgap: Fix the debug print message
db9d0e74a663 thermal/drivers/imx8mm_thermal: Validate temperature range
5cba61bcd2f7 samples: vfio-mdev: Fix missing pci_disable_device() in mdpy_fb_probe()
f9ed133381eb ksmbd: Fix resource leak in ksmbd_session_rpc_open()
7f09fe9fc6ea tracing/hist: Fix issue of losting command info in error_log
82d1211f673b usb: typec: wusb3801: fix fwnode refcount leak in wusb3801_probe()
94cca9c33941 usb: storage: Add check for kcalloc
233348a04bec i2c: ismt: Fix an out-of-bounds bug in ismt_access()
f7a440c89b6d i2c: mux: reg: check return value after calling platform_get_resource()
86fdf151b9b8 gpiolib: protect the GPIO device against being dropped while in use by user-space
ac6ce3cd7a3e gpiolib: cdev: fix NULL-pointer dereferences
60ff9bd4ffc8 vme: Fix error not catched in fake_init()
7155f549dbca staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor()
73df1172bbcc staging: rtl8192u: Fix use after free in ieee80211_rx()
c8889afcd829 i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe
ba090c6debb5 vfio/iova_bitmap: refactor iova_bitmap_set() to better handle page boundaries
85a5660491b5 chardev: fix error handling in cdev_device_add()
4a9f1a8b3af2 mcb: mcb-parse: fix error handing in chameleon_parse_gdd()
0468a585710b drivers: mcb: fix resource leak in mcb_probe()
216437dd64fc usb: gadget: f_hid: fix refcount leak on error path
9e08b7f5fa00 usb: gadget: f_hid: fix f_hidg lifetime vs cdev
6fe1adeabc2a usb: core: hcd: Fix return value check in usb_hcd_setup_local_mem()
b3862858b678 usb: roles: fix of node refcount leak in usb_role_switch_is_parent()
0a022b756f74 tracing/user_events: Fix call print_fmt leak
e4b7d7297d37 coresight: cti: Fix null pointer error on CTI init before ETM
3c18888bc0b5 coresight: trbe: remove cpuhp instance node before remove cpuhp state
064bdc340526 counter: stm32-lptimer-cnt: fix the check on arr and cmp registers update
bc34896cd75a iio: adis: add '__adis_enable_irq()' implementation
49ac222945d7 iio: temperature: ltc2983: make bulk write buffer DMA-safe
2f5fd31b2f24 cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter()
ab44c182353b cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter()
71d2abab374f firmware: raspberrypi: fix possible memory leak in rpi_firmware_probe()
4e947fc71bec misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault and gru_handle_user_call_os
ef843ee20576 misc: tifm: fix possible memory leak in tifm_7xx1_switch_media()
40ff4c2335a9 ocxl: fix pci device refcount leak when calling get_function_0()
2fce8b3583d1 misc: ocxl: fix possible name leak in ocxl_file_register_afu()
6dd5fbd243f1 test_firmware: fix memory leak in test_firmware_init()
a4b84c112d8e habanalabs: fix return value check in hl_fw_get_sec_attest_data()
03dbb9e2e975 serial: sunsab: Fix error handling in sunsab_init()
ca89c2eb36ed serial: altera_uart: fix locking in polling mode
516614a371c2 serial: pch: Fix PCI device refcount leak in pch_request_dma()
408f64a6de74 serial: stm32: move dma_request_chan() before clk_prepare_enable()
898a162d5fc4 serial: pl011: Do not clear RX FIFO & RX interrupt in unthrottle.
64bc5dbc3260 serial: amba-pl011: avoid SBSA UART accessing DMACR register
99a58ac42d9b USB: gadget: Fix use-after-free during usb config switch
5b38782cc358 extcon: usbc-tusb320: Update state on probe even if no IRQ pending
22b60658a902 usb: musb: omap2430: Fix probe regression for missing resources
20a945280d69 usb: typec: tipd: Fix typec_unregister_port error paths
63fff60c0066 usb: typec: tipd: Fix spurious fwnode_handle_put in error path
7bc33793042b usb: typec: tipd: Cleanup resources if devm_tps6598_psy_register fails
5f125507d227 usb: typec: tcpci: fix of node refcount leak in tcpci_register_port()
26937dcf067a usb: typec: Check for ops->exit instead of ops->enter in altmode_exit
85db68fc901d staging: vme_user: Fix possible UAF in tsi148_dma_list_add
71cfd25e2211 interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm
bdfa9f57b2a2 usb: fotg210-udc: Fix ages old endianness issues
b9dcd53356ea uio: uio_dmem_genirq: Fix deadlock between irq config and handling
ee180e867ce4 uio: uio_dmem_genirq: Fix missing unlock in irq configuration
31ef3d554d59 vfio/iova_bitmap: Fix PAGE_SIZE unaligned bitmaps
f0865e4f2c82 vfio: platform: Do not pass return buffer to ACPI _RST method
abaedb68a769 class: fix possible memory leak in __class_register()
9494faf74f8d drivers: staging: r8188eu: Fix sleep-in-atomic-context bug in rtw_join_timeout_handler
3d97c13a1152 serial: 8250_bcm7271: Fix error handling in brcmuart_init()
bffec1abc074 serial: tegra: Read DMA status before terminating
78fddc0ff971 drivers: dio: fix possible memory leak in dio_init()
6392d71b4bf9 riscv: Fix P4D_SHIFT definition for 3-level page table mode
dd203468f071 f2fs: fix iostat parameter for discard
652b2cdb3007 RISC-V: Align the shadow stack
ee0e9b2c4b9c IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces
19b7b85773b1 hwrng: geode - Fix PCI device refcount leak
2e10ecd012ae hwrng: amd - Fix PCI device refcount leak
84ebdb6b65ad crypto: img-hash - Fix variable dereferenced before check 'hdev->req'
f2f2c6102ace riscv: Fix crash during early errata patching
e395fdfec46d RISC-V: Fix MEMREMAP_WB for systems with Svpbmt
eced7ec0cd89 RISC-V: Fix unannoted hardirqs-on in return to userspace slow-path
9f4379692ace RDMA/hns: Fix XRC caps on HIP08
9e711eafabf0 RDMA/hns: Fix error code of CMD
d78e8b4c862d RDMA/hns: Fix page size cap from firmware
aaa589124d4c RDMA/hns: Fix PBL page MTR find
d3238c4d3a46 RDMA/hns: Fix AH attr queried by query_qp
60549c5224cd RDMA/hns: Fix the gid problem caused by free mr
bf0ad007e6cb orangefs: Fix sysfs not cleanup when dev init failed
38c1d5d2f8ae PCI: vmd: Fix secondary bus reset for Intel bridges
6c8319b90fe7 RDMA/srp: Fix error return code in srp_parse_options()
8bc0ecf1c382 RDMA/hfi1: Fix error return code in parse_platform_config()
de888c02ac32 RDMA: Disable IB HW for UML
3829187387e4 riscv/mm: add arch hook arch_clear_hugepage_flags
c19ca6553c2d crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe()
22a59bb0aa5a crypto: amlogic - Remove kcalloc without check
10ed78c85b52 crypto: qat - fix error return code in adf_probe
c458c9d0ce97 RDMA/nldev: Fix failure to send large messages
3ee8611a1d0d f2fs: avoid victim selection from previous victim section
0807071c1b2b f2fs: fix to enable compress for newly created file if extension matches
1f9d91ffc383 f2fs: set zstd compress level correctly
65c73bc771d6 RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps()
02e0170c4da2 scsi: ufs: core: Fix the polling implementation
4141cd9e8b33 scsi: snic: Fix possible UAF in snic_tgt_create()
aef82d16be5a scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails
4399a8632e5f scsi: ipr: Fix WARNING in ipr_init()
bc31e6820424 scsi: scsi_debug: Fix possible name leak in sdebug_add_host_helper()
cfa2f8098a6e scsi: fcoe: Fix possible name leak when device_register() fails
8698f359f252 scsi: scsi_debug: Fix a warning in resp_report_zones()
582b0a422642 scsi: scsi_debug: Fix a warning in resp_verify()
c7e96168a8ca scsi: efct: Fix possible memleak in efct_device_init()
c2e4692d019a scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device()
9aa5b09a5548 scsi: hpsa: Fix error handling in hpsa_add_sas_host()
d17bca3ddfe5 scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add()
8642c72b081e crypto: hisilicon/qm - fix 'QM_XEQ_DEPTH_CAP' mask value
4841596b93f0 crypto: arm64/sm3 - fix possible crash with CFI enabled
9c1b30d5c1f7 crypto: arm64/sm3 - add NEON assembly implementation
23cf91c76489 crypto: x86/sm4 - fix crash with CFI enabled
e6e4e281be90 crypto: x86/sm3 - fix possible crash with CFI enabled
ae252643e884 crypto: x86/sha512 - fix possible crash with CFI enabled
76994f26226e crypto: x86/sha256 - fix possible crash with CFI enabled
f3b1021db697 crypto: x86/sha1 - fix possible crash with CFI enabled
8d447b92c3e2 crypto: x86/aria - fix crash with CFI enabled
5ab743151a62 crypto: x86/aegis128 - fix possible crash with CFI enabled
ff28b8afb786 padata: Fix list iterator in padata_do_serial()
6cfa9e60c0f8 padata: Always leave BHs disabled when running ->parallel()
314398bc1014 crypto: tcrypt - Fix multibuffer skcipher speed test mem leak
0aa7be66168b scsi: hpsa: Fix possible memory leak in hpsa_init_one()
21d8b6bd3730 PCI: endpoint: pci-epf-vntb: Fix call pci_epc_mem_free_addr() in error path
eef5d05cbbd6 dt-bindings: visconti-pcie: Fix interrupts array max constraints
e75080f9b4ee dt-bindings: imx6q-pcie: Fix clock names for imx6sx and imx8mq
821f9a18210f RDMA/rxe: Fix NULL-ptr-deref in rxe_qp_do_cleanup() when socket create failed
fc2c43bf41c8 RDMA/hns: fix memory leak in hns_roce_alloc_mr()
26cee0603af0 RDMA/irdma: Initialize net_type before checking it
d9dbd4ca2646 crypto: ccree - Make cc_debugfs_global_fini() available for module init function
ed8b5ff3b078 RDMA/hfi: Decrease PCI device reference count in error path
76ca6756bf03 PCI: Check for alloc failure in pci_request_irq()
c5a6776e44aa RDMA/hns: Fix incorrect sge nums calculation
2b214368bc0c RDMA/hns: Fix ext_sge num error when post send
06f73568f553 RDMA/rxe: Fix mr->map double free
f98601f9abde crypto: hisilicon/qm - add missing pci_dev_put() in q_num_set()
b5be6724f222 crypto: cryptd - Use request context instead of stack for sub-request
677f01f396ae crypto: ccree - Remove debugfs when platform_driver_register failed
953c81ffe384 scsi: scsi_debug: Fix a warning in resp_write_scat()
70adec0c790f RDMA/irdma: Do not request 2-level PBLEs for CQ alloc
b4502647c0b2 RDMA/irdma: Fix RQ completion opcode
1df9f815553d RDMA/irdma: Fix inline for multiple SGE's
3930245bc845 RDMA/siw: Set defined status for work completion with undefined status
c1d5a12f930f RDMA/nldev: Return "-EAGAIN" if the cm_id isn't from expected port
cd06d32a71fb RDMA/core: Make sure "ib_port" is valid when access sysfs node
8731cb5c7820 RDMA/restrack: Release MR restrack when delete
cf968790a08f f2fs: fix to avoid accessing uninitialized spinlock
71bf3550b530 PCI: imx6: Initialize PHY before deasserting core reset
5d2e13358243 PCI: vmd: Disable MSI remapping after suspend
fa8a2f3be78e IB/mad: Don't call to function that might sleep while in atomic context
f3d26a8589df RDMA/siw: Fix immediate work request flush to completion queue
fdb9c354ac86 scsi: qla2xxx: Fix set-but-not-used variable warnings
425c9bd06b7a RDMA/irdma: Report the correct link speed
0b8578dc8477 f2fs: fix to destroy sbi->post_read_wq in error path of f2fs_fill_super()
b4244ca341ea f2fs: fix the assign logic of iocb
734e2cf3ee29 f2fs: allow to set compression for inlined file
fa2e65c1b1c6 f2fs: fix normal discard process
7e7db55d1e67 f2fs: fix gc mode when gc_urgent_high_remaining is 1
ae6c960a82c5 f2fs: fix to invalidate dcc->f2fs_issue_discard in error path
ed88147bfb4e fortify: Do not cast to "unsigned char"
12695b4b76d4 apparmor: Fix memleak in alloc_ns()
7417cc5151bc crypto: rockchip - rework by using crypto_engine
f945afb80f1d crypto: rockchip - remove non-aligned handling
89117da0102c crypto: rockchip - better handle cipher key
2edab0edfef5 crypto: rockchip - add fallback for ahash
ac798fd39e2a crypto: rockchip - add fallback for cipher
d2ce2922fd39 crypto: rockchip - do not store mode globally
2aecc5029fcc crypto: rockchip - do not do custom power management
1550e871120e f2fs: Fix the race condition of resize flag between resizefs
0ea2ba0d5b4f PCI: pci-epf-test: Register notifier if only core_init_notifier is enabled
7123963c57ee RDMA/core: Fix order of nldev_exit call
b5c7878b034c PCI: dwc: Fix n_fts[] array overrun
756e412cfcac apparmor: Use pointer to struct aa_label for lbs_cred
51a903281798 scsi: core: Fix a race between scsi_done() and scsi_timeout()
7b5bc00a59ef crypto: tcrypt - fix return value for multiple subtests
51592cf71682 crypto: nitrox - avoid double free on error path in nitrox_sriov_init()
204fdddd4698 crypto: sun8i-ss - use dma_addr instead u32
8a9db7913497 crypto: hisilicon/qm - re-enable communicate interrupt before notifying PF
9a6fab168cbc crypto: hisilicon/qm - fix incorrect parameters usage
f024bf13d4ff apparmor: Fix regression in stacking due to label flags
72a5b5641cac apparmor: Fix abi check to include v8 abi
053816fb455f apparmor: fix lockdep warning when removing a namespace
3d27a436e294 apparmor: fix a memleak in multi_transaction_new()
14ed46a13aba net: dsa: tag_8021q: avoid leaking ctx on dsa_tag_8021q_register() error path
06b81b4e669a i40e: Fix the inability to attach XDP program on downed interface
e0c54906cf67 stmmac: fix potential division by 0
aff5bca3c2e5 octeontx2-af: cn10k: mcs: Fix a resource leak in the probe and remove functions
e97a4ad295b0 Bluetooth: RFCOMM: don't call kfree_skb() under spin_lock_irqsave()
9114e7fa80ce Bluetooth: hci_core: don't call kfree_skb() under spin_lock_irqsave()
c1f213a8ccf3 Bluetooth: hci_bcsp: don't call kfree_skb() under spin_lock_irqsave()
866b20962954 Bluetooth: hci_h5: don't call kfree_skb() under spin_lock_irqsave()
91ed02b7977b Bluetooth: hci_ll: don't call kfree_skb() under spin_lock_irqsave()
08c847f1a163 Bluetooth: hci_qca: don't call kfree_skb() under spin_lock_irqsave()
d123f2b94b9e Bluetooth: btusb: don't call kfree_skb() under spin_lock_irqsave()
8eefaa20568d Bluetooth: btintel: Fix missing free skb in btintel_setup_combined()
09a3b0c9c7c6 Bluetooth: hci_conn: Fix crash on hci_create_cis_sync
a65b09e3130b Bluetooth: Fix EALREADY and ELOOP cases in bt_status()
72560759f6e0 Bluetooth: MGMT: Fix error report for ADD_EXT_ADV_PARAMS
66324c5eb5ee Bluetooth: hci_core: fix error handling in hci_register_dev()
b17b3203d479 sctp: sysctl: make extra pointers netns aware
07e28a8f4502 ntb_netdev: Use dev_kfree_skb_any() in interrupt context
4f9bcc999062 net: lan9303: Fix read error execution path
a8846b339860 net: ethernet: ti: am65-cpsw: Fix PM runtime leakage in am65_cpsw_nuss_ndo_slave_open()
512dc6796946 can: tcan4x5x: Fix use of register error status mask
73a1f06a4b6f can: m_can: Call the RAM init directly from m_can_chip_config
9f38ec243426 can: tcan4x5x: Remove invalid write in clear_interrupts
8718e17e0fac net: amd-xgbe: Check only the minimum speed for active/passive cables
7a7de9a6f198 net: amd-xgbe: Fix logic around active and passive cables
99a75f34db5b af_unix: call proto_unregister() in the error path in af_unix_init()
22dbe4a6ea37 net: setsockopt: fix IPV6_UNICAST_IF option for connected sockets
7cc54e9ffcf5 net: amd: lance: don't call dev_kfree_skb() under spin_lock_irqsave()
df7c78c3ab06 hamradio: don't call dev_kfree_skb() under spin_lock_irqsave()
4bc76162596e net: ethernet: dnet: don't call dev_kfree_skb() under spin_lock_irqsave()
2a979f087430 net: emaclite: don't call dev_kfree_skb() under spin_lock_irqsave()
9027ed144a1c net: apple: bmac: don't call dev_kfree_skb() under spin_lock_irqsave()
6c0fba2b683d net: apple: mace: don't call dev_kfree_skb() under spin_lock_irqsave()
588d0b8462f5 net/tunnel: wait until all sk_user_data reader finish before releasing the sock
bb1715a6bfb0 net: farsync: Fix kmemleak when rmmods farsync
5253d432dd36 ethernet: s2io: don't call dev_kfree_skb() under spin_lock_irqsave()
71d88c7453ec of: overlay: fix null pointer dereferencing in find_dup_cset_node_entry() and find_dup_cset_prop()
cbde8b3acbc8 ipvs: use u64_stats_t for the per-cpu counters
dcae92a24955 drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init()
446757787baf net: stmmac: fix possible memory leak in stmmac_dvr_probe()
bfbc4f7f82da net: stmmac: selftests: fix potential memleak in stmmac_test_arpoffload()
e6730e15df96 net: defxx: Fix missing err handling in dfx_init()
6af94424012c net: vmw_vsock: vmci: Check memcpy_from_msg()
bd72ab5e6fc1 clk: socfpga: Fix memory leak in socfpga_gate_init()
8d64aca5e8f3 bpf: Do not zero-extend kfunc return values
8682d0a6ee54 blktrace: Fix output non-blktrace event when blk_classic option enabled
bbb2d35386c1 wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware()
36a2786145ef wifi: rtl8xxxu: Fix the channel width reporting
8e2d450c4e5b wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h
9d0190d4722a spi: spi-gpio: Don't set MOSI as an input if not 3WIRE mode
a35323218ff3 clk: samsung: Fix memory leak in _samsung_clk_register_pll()
c93ecbb21b9a media: staging: stkwebcam: Restore MEDIA_{USB,CAMERA}_SUPPORT dependencies
0209e70ad496 media: coda: Add check for kmalloc
05f165ded4a7 media: coda: Add check for dcoda_iram_alloc
ccb4e8de1e7e media: c8sectpfe: Add of_node_put() when breaking out of loop
86e52c02e288 regulator: qcom-labibb: Fix missing of_node_put() in qcom_labibb_regulator_probe()
83a9cd6e0a96 nvme: pass nr_maps explicitly to nvme_alloc_io_tag_set
5aebe9ba130a mmc: core: Normalize the error handling branch in sd_read_ext_regs()
1b3f0b02486b memstick/ms_block: Add check for alloc_ordered_workqueue
d87d565fec52 mmc: renesas_sdhi: alway populate SCC pointer
eb8431dc4b5a mmc: mmci: fix return value check of mmc_add_host()
3697d9af93bf mmc: wbsd: fix return value check of mmc_add_host()
ba91b413983a mmc: via-sdmmc: fix return value check of mmc_add_host()
f5ce76aeddf0 mmc: meson-gx: fix return value check of mmc_add_host()
4e1dc24bcfc8 mmc: omap_hsmmc: fix return value check of mmc_add_host()
85946ceb0fac mmc: atmel-mci: fix return value check of mmc_add_host()
9229e7a00f5b mmc: litex_mmc: ensure `host->irq == 0` if polling
eb7a2d516d4f mmc: wmt-sdmmc: fix return value check of mmc_add_host()
2044b2ea7794 mmc: vub300: fix return value check of mmc_add_host()
bfd77b194c94 mmc: toshsd: fix return value check of mmc_add_host()
a522e26a20a4 mmc: rtsx_usb_sdmmc: fix return value check of mmc_add_host()
ffa9b2a79e3e mmc: rtsx_pci: fix return value check of mmc_add_host()
5a62cba13851 mmc: pxamci: fix return value check of mmc_add_host()
d2ead18bc7cc mmc: mxcmmc: fix return value check of mmc_add_host()
40aa73c70e8a mmc: moxart: fix return value check of mmc_add_host()
60fafcf2fb7e mmc: alcor: fix return value check of mmc_add_host()
774d97b5ed7c hwmon: (emc2305) fix pwm never being able to set lower
4cf53e91f36a hwmon: (emc2305) fix unable to probe emc2301/2/3
12e677201777 bpftool: Fix memory leak in do_build_table_cb
adebac5995c9 riscv, bpf: Emit fixed-length instructions for BPF_PSEUDO_FUNC
86c1f5d5f498 NFSv4.x: Fail client initialisation if state manager thread can't run
a89715bc9523 NFS: Allow very small rsize & wsize again
f6a174755c33 NFSv4.2: Set the correct size scratch buffer for decoding READ_PLUS
05acc401bca3 SUNRPC: Fix missing release socket in rpc_sockname()
17c49afc694e xprtrdma: Fix regbuf data not freed in rpcrdma_req_create()
aae4846e8e49 pinctrl: thunderbay: fix possible memory leak in thunderbay_build_functions()
250eed7b9994 ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt
0859b2e1d5fa media: ov5640: set correct default link frequency
3872adf30623 media: saa7164: fix missing pci_disable_device()
809b48cb2eee ALSA: pcm: Set missing stop_operating flag at undoing trigger start
5c3568166129 bpf, sockmap: fix race in sock_map_free()
9283a0f51173 bpf: Add dummy type reference to nf_conn___init to fix type deduplication
204d0f668d0f hwmon: (jc42) Restore the min/max/critical temperatures on resume
24186b599624 hwmon: (jc42) Convert register access and caching to regmap/regcache
f86b2f216636 regulator: core: fix resource leak in regulator_register()
c72eb6e6e49a configfs: fix possible memory leak in configfs_create_dir()
d2576d29da71 hsr: Synchronize sequence number updates.
b5259dcfa3e1 hsr: Synchronize sending frames to have always incremented outgoing seq nr.
3b79aaa88bab hsr: Disable netpoll.
1517be0aef6d hsr: Avoid double remove of a node.
4d2f6c44fd85 hsr: Add a rcu-read lock to hsr_forward_skb().
41d4bcc624cf Revert "net: hsr: use hlist_head instead of list_head for mac addresses"
35a6ae235108 clk: qcom: clk-krait: fix wrong div2 functions
3b317660e43f clk: qcom: lpass-sc7180: Fix pm_runtime usage
607ccb7d3d35 clk: qcom: lpass-sc7280: Fix pm_runtime usage
89f19d11aad8 regulator: core: fix module refcount leak in set_supply()
2d4b9c7e81f3 mt76: mt7915: Fix PCI device refcount leak in mt7915_pci_init_hif2()
d26fdb1ec5b7 wifi: mt76: do not send firmware FW_FEATURE_NON_DL region
52f7e2392617 wifi: mt76: mt7921: Add missing __packed annotation of struct mt7921_clc
eb9102556565 wifi: mt76: fix coverity overrun-call in mt76_get_txpower()
f11c5a1926c9 wifi: mt76: mt7921: fix wrong power after multiple SAR set
71e73d3ce2b8 wifi: mt76: mt7915: Fix chainmask calculation on mt7915 DBDC
13b31708e54f wifi: mt76: mt7915: rework eeprom tx paths and streams init
5e55a45d9196 wifi: mt76: mt7921: fix reporting of TX AGGR histogram
6435fc52ef36 wifi: mt76: mt7915: fix reporting of TX AGGR histogram
1d3ecd157294 wifi: mt76: mt7915: fix mt7915_mac_set_timing()
c6cd8bacafc2 wifi: mt76: mt7921: fix antenna signal are way off in monitor mode
ae99debcf6b8 wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() fails
92c9732ce7eb wifi: mac80211: fix maybe-unused warning
9a50a7f64243 wifi: mac80211: fix memory leak in ieee80211_if_add()
687b6b37c094 wifi: nl80211: Add checks for nla_nest_start() in nl80211_send_iface()
16984b61ef15 spi: spidev: mask SPI_CS_HIGH in SPI_IOC_RD_MODE
58cf9f4b79ad bonding: uninitialized variable in bond_miimon_inspect()
26a844a91ecb bpf, sockmap: Fix data loss caused by using apply_bytes on ingress redirect
e45de3007ac5 bpf, sockmap: Fix missing BPF_F_INGRESS flag when using apply_bytes
113236e8f49f bpf, sockmap: Fix repeated calls to sock_put() when msg has more_data
ff0d392a4255 Input: wistron_btns - disable on UML
ce7de847f19e netfilter: conntrack: set icmpv6 redirects as RELATED
f0f1982ddfb4 clk: visconti: Fix memory leak in visconti_register_pll()
4fa98de4f8c8 ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe
7c852e8f93f0 drm/i915/bios: fix a memory leak in generate_lfp_data_ptrs
c65564790048 drm/amdkfd: Fix memory leakage
a8b54ad7106c drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios()
a6cffe54064a drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios()
dba7d8572224 amdgpu/nv.c: Corrected typo in the video capabilities resolution
dd574ff7a7f2 drm/amd/pm/smu11: BACO is supported when it's in BACO state
95569b7285dc clk: mediatek: fix dependency of MT7986 ADC clocks
77c6b6be7e80 ASoC: mediatek: mt8173: Enable IRQ when pdata is ready
3a2ecd1ec140 wifi: iwlwifi: mvm: fix double free on tx path.
f52cf83c18cf wifi: rtl8xxxu: Fix use after rcu_read_unlock in rtl8xxxu_bss_info_changed
fce7e4627364 wifi: plfxlc: fix potential memory leak in __lf_x_usb_enable_rx()
98dbd1329b4a ALSA: asihpi: fix missing pci_disable_device()
6f3d56783fbe NFS: Fix an Oops in nfs_d_automount()
0393e0316cdd NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn
b247a9828f66 NFSv4: Fix a credential leak in _nfs4_discover_trunking()
43fe5686d4a4 NFSv4.2: Fix initialisation of struct nfs4_label
7c6975209d98 NFSv4.2: Fix a memory stomp in decode_attr_security_label
4711196ada6b NFSv4.2: Always decode the security label
860b951e92c3 NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding
b88b4035b218 drm/msm/mdp5: fix reading hw revision on db410c platform
deed9567aae0 ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd
9d997d67e501 ASoC: dt-bindings: wcd9335: fix reset line polarity in example
a5d99bf9cf77 drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe()
6a27110802eb media: s5p-mfc: Add variant data for MFC v7 hardware for Exynos 3250 SoC
2e6203ef474b media: mediatek: vcodec: Core thread depends on core_list
c703b86a4972 media: mediatek: vcodec: Setting lat buf to lat_list when lat decode error
43a4ae7b7879 media: mediatek: vcodec: Fix h264 set lat buffer error
fd975256eb26 media: mediatek: vcodec: Fix getting NULL pointer for dst buffer
c9411d57c1de media: amphion: lock and check m2m_ctx in event handler
c0c1903e8733 media: amphion: cancel vpu before release instance
1ca1405d52c8 media: amphion: try to wakeup vpu core to avoid failure
5100ab6744e7 media: sun8i-a83t-mipi-csi2: Register async subdev with no sensor attached
65b3232f9e91 media: sun6i-mipi-csi2: Register async subdev with no sensor attached
6c1c8499cdb6 media: sun8i-a83t-mipi-csi2: Require both pads to be connected for streaming
daf248d2d6a5 media: sun6i-mipi-csi2: Require both pads to be connected for streaming
b1898793777f x86/boot: Skip realmode init code when running as Xen PV guest
6b60cf73a931 media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer()
ed4293a07c1c media: dvb-core: Fix ignored return value in dvb_register_frontend()
5e2fa5132995 pinctrl: pinconf-generic: add missing of_node_put()
d998e985232a clk: imx8mn: fix imx8mn_enet_phy_sels clocks list
a03b59a0c83d clk: imx8mn: fix imx8mn_sai2_sels clocks list
4b7b740009fa clk: imx: rename video_pll1 to video_pll
90b4de668466 clk: imx: replace osc_hdmi with dummy
99bd07dc8519 clk: imx8mn: rename vpu_pll to m7_alt_pll
d6ebcae042ce media: mt9p031: Drop bogus v4l2_subdev_get_try_crop() call from mt9p031_init_cfg()
0f5250e1de5f media: imx: imx7-media-csi: Clear BIT_MIPI_DOUBLE_CMPNT for <16b formats
3f8b24ab0d00 media: imon: fix a race condition in send_packet()
f38df8984ef1 media: vimc: Fix wrong function called when vimc_init() fails
841315c1db6b ASoC: mediatek: mt8186: Correct I2S shared clocks
5827a5656d5a ASoC: qcom: cleanup and fix dependency of QCOM_COMMON
b1e4f92dd0c1 ASoC: qcom: Add checks for devm_kcalloc
a999525c7b69 drbd: destroy workqueue when drbd device was freed
6c4c5d5e4a0d drbd: remove call to memset before free device/resource/connection
a1b061cafdbc mtd: maps: pxa2xx-flash: fix memory leak in probe
616dc895d982 mtd: core: Fix refcount error in del_mtd_device()
95e90bcc934f clk: microchip: check for null return of devm_kzalloc()
d87f58c25447 bonding: fix link recovery in mode 2 when updelay is nonzero
e1abb71ed774 selftests/bpf: Mount debugfs in setns_by_fd
4074774f55d4 selftests/bpf: Make sure zero-len skbs aren't redirectable
cbd17cb4df07 drm/i915/guc: make default_lists const data
d7352b410471 drm/amdgpu: fix pci device refcount leak
f2ffb8653ea8 clk: rockchip: Fix memory leak in rockchip_clk_register_pll()
55e44791a547 regulator: core: use kfree_const() to free space conditionally
83ddd4cc8f25 ALSA: seq: fix undefined behavior in bit shift for SNDRV_SEQ_FILTER_USE_EVENT
2b951e13bd17 ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT
bfa34e24ced6 ASoC: Intel: avs: Lock substream before snd_pcm_stop()
51618c1d77af ASoC: Intel: Skylake: Fix Kconfig dependency
1dc70897f1ac wifi: rtw89: fix physts IE page check
60dcaf068f42 pinctrl: k210: call of_node_put()
66d362f16d46 clk: imx: imxrt1050: fix IMXRT1050_CLK_LCDIF_APB offsets
258730e8f68f HID: hid-sensor-custom: set fixed size for custom attributes
21f15d8ffdb4 bpf: Move skb->len == 0 checks into __bpf_redirect
92f30b33df3d clk: imx93: correct enet clock
a1981f67d57e clk: imx93: unmap anatop base in error handling path
1372f4f6fcb1 HID: i2c: let RMI devices decide what constitutes wakeup event
3751ba4aec0b bpf: Pin the start cgroup in cgroup_iter_seq_init()
b7c906977301 clk: imx93: correct the flexspi1 clock setting
c536932b6a2a mtd: spi-nor: Fix the number of bytes for the dummy cycles
58701a96062f mtd: spi-nor: hide jedec_id sysfs attribute if not present
d24fd986ae9d net: Return errno in sk->sk_prot->get_port().
073b50de84cb udp: Clean up some functions.
53fc231277da net: ethernet: mtk_eth_soc: fix RSTCTRL_PPE{0,1} definitions
7d4af96be535 media: videobuf-dma-contig: use dma_mmap_coherent
d72bff7e6cc3 media: amphion: Fix error handling in vpu_driver_init()
abc73b6739a1 media: platform: exynos4-is: Fix error handling in fimc_md_init()
9416861170ba media: solo6x10: fix possible memory leak in solo_sysfs_init()
8a204a0b4a0d media: vidtv: Fix use-after-free in vidtv_bridge_dvb_init()
48c489fafa46 media: amphion: apply vb2_queue_error instead of setting manually
e9fbed19ad17 media: amphion: add lock around vdec_g_fmt
2bf8461ee33c net: ethernet: mtk_eth_soc: do not overwrite mtu configuration running reset routine
38e2a92cd174 ASoC: amd: acp: Fix possible UAF in acp_dma_open
917e58a84e85 Input: elants_i2c - properly handle the reset GPIO when power is off
c4cc41e94d83 mtd: lpddr2_nvm: Fix possible null-ptr-deref
fee1df5a5835 drm/msm/a6xx: Fix speed-bin detection vs probe-defer
73b7f8a820d2 wifi: ath10k: Fix return value in ath10k_pci_init()
4448a8dd1e7c selftests/bpf: fix memory leak of lsm_cgroup
773bfda35c95 dm: track per-add_disk holder relations in DM
ce65ef11d37e dm: make sure create and remove dm device won't race with open and close table
365c351efd4a dm: cleanup close_table_device
3a3742f6b0a2 dm: cleanup open_table_device
475bdd75447a block: clear ->slave_dir when dropping the main slave_dir reference
d2845542a953 ima: Fix misuse of dereference of pointer in template_desc_init_fields()
c591c48842f0 integrity: Fix memory leakage in keyring allocation error path
accc7993a780 ALSA: memalloc: Allocate more contiguous pages for fallback case
0a730f51b02a drm/fourcc: Fix vsub/hsub for Q410 and Q401
8cf1235a49a3 regulator: qcom-rpmh: Fix PMR735a S3 regulator spec
a428dcc4a421 wifi: rtw89: Fix some error handling path in rtw89_core_sta_assoc()
18ef9434379b nvme: return err on nvme_init_non_mdts_limits fail
8084bd0a64e2 amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table()
2f98469c3141 regulator: core: fix unbalanced of node refcount in regulator_dev_lookup()
3b97e1e894ec nvmet: only allocate a single slab for bvecs
21b92cf41952 ASoC: pxa: fix null-pointer dereference in filter()
83a583a36982 drm/mediatek: Modify dpi power on/off sequence.
8c39a6157c45 selftests/bpf: Fix incorrect ASSERT in the tcp_hdr_options test
6bbbe4948d46 selftests/bpf: Fix xdp_synproxy compilation failure in 32-bit arch
69d51c26ea83 ASoC: codecs: wsa883x: use correct header file
66fdbc0f2445 ASoC: codecs: wsa883x: Use proper shutdown GPIO polarity
7a779e84b3c4 module: Fix NULL vs IS_ERR checking for module_get_next_page
0183b7c49cfd wifi: iwlwifi: mei: fix potential NULL-ptr deref after clone
57f6784d8831 wifi: iwlwifi: mei: avoid blocking sap messages handling due to rtnl lock
a29e442ee110 wifi: iwlwifi: mei: fix tx DHCP packet for devices with new Tx API
9829f3a5ae4b wifi: iwlwifi: mei: don't send SAP commands if AMT is disabled
39138cee7ab9 wifi: iwlwifi: mei: make sure ownership confirmed message is sent
61dd45b01b20 pinctrl: mediatek: fix the pinconf register offset of some pins
afe3309dedec dt-bindings: pinctrl: update uart/mmc bindings for MT7986 SoC
9e203e437310 drm/radeon: Add the missed acpi_put_table() to fix memory leak
0544ea57f999 bfq: fix waker_bfqq inconsistency crash
0c57b39033e0 drbd: use blk_queue_max_discard_sectors helper
961db32e52f4 regmap-irq: Use the new num_config_regs property in regmap_add_irq_chip_fwnode
2bba26652613 drm: rcar-du: Drop leftovers dependencies from Kconfig
7f8811ed9853 wifi: rtw89: use u32_encode_bits() to fill MAC quota value
fb9277b1c82c drm: lcdif: Set and enable FIFO Panic threshold
735d1820a6b1 rxrpc: Fix ack.bufferSize to be 0 when generating an ack
5697a0d4a7e1 net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write()
3c1aac9cef5f virt/sev-guest: Add a MODULE_ALIAS
91426b258392 clk: renesas: r8a779f0: Fix SCIF parent clocks
697fc4dfcb6e clk: renesas: r8a779f0: Fix HSCIF parent clocks
3eb954aac208 media: camss: Do not attach an already attached power domain on MSM8916 platform
24df4fa3e795 media: camss: Clean up received buffers on failed start of streaming
c6e31be0f72c wifi: rsi: Fix handling of 802.3 EAPOL frames sent via control port
7503bb76a141 Input: joystick - fix Kconfig warning for JOYSTICK_ADC
26c304a3f136 mtd: core: fix possible resource leak in init_mtd()
bcabe1dc2a34 mtd: Fix device name leak when register device failed in add_mtd_device()
386cb647b8fb clk: qcom: gcc-sm8250: Use retention mode for USB GDSCs
c4809c3dd342 clk: qcom: dispcc-sm6350: Add CLK_OPS_PARENT_ENABLE to pixel&byte src
ab6bfd335cf1 clk: qcom: gcc-ipq806x: use parent_data for the last remaining entry
ddbed3b583ac bpf: propagate precision across all frames, not just the last one
3a59f8bef663 bpf: propagate precision in ALU/ALU64 operations
fac1282fc80a media: platform: exynos4-is: fix return value check in fimc_md_probe()
2f558c5208b0 media: vivid: fix compose size exceed boundary
40356e4c885b media: rkvdec: Add required padding
926893538b71 media: platform: mtk-mdp3: fix error handling in mdp_probe()
ef9170c00e1a media: platform: mtk-mdp3: fix error handling about components clock_on
ab49175a5a88 media: platform: mtk-mdp3: fix error handling in mdp_cmdq_send()
12b7733807b6 drm/msm/dsi: Prevent signed BPG offsets from bleeding into adjacent bits
043b1493deae drm/msm/dsi: Disallow 8 BPC DSC configuration for alternative BPC values
0a323c2aa127 drm/msm/dsi: Account for DSC's bits_per_pixel having 4 fractional bits
8a80ad33dbd2 drm/msm/dsi: Migrate to drm_dsc_compute_rc_parameters()
9929c46ccca8 drm/msm/dsi: Appropriately set dsc->mux_word_size based on bpc
275b1d41f9b2 drm/msm/dsi: Reuse earlier computed dsc->slice_chunk_size
f5bf0e54c47c drm/msm/dsi: Use DIV_ROUND_UP instead of conditional increment on modulo
f0282e1d5749 drm/msm/dsi: Remove repeated calculation of slice_per_intf
36e8894c5676 drm/msm/dsi: Remove useless math in DSC calculations
4235be829c9e drm/msm/dpu1: Account for DSC's bits_per_pixel having 4 fractional bits
fae22b0b5b4b bpf: Fix slot type check in check_stack_write_var_off
ebe6c699ee26 bpf: Clobber stack slot when writing over spilled PTR_TO_BTF_ID
e7a3542f44fd drm/msm/hdmi: use devres helper for runtime PM management
8008f1691c15 ima: Handle -ESTALE returned by ima_filter_rule_match()
e9a22f40f347 drm/msm/mdp5: stop overriding drvdata
6528971fdce0 drm/ttm: fix undefined behavior in bit shift for TTM_TT_FLAG_PRIV_POPULATED
465611e81258 drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure
8b39120d4d9c spi: Update reference to struct spi_controller
18f36c3eed39 drm/panel/panel-sitronix-st7701: Fix RTNI calculation
f3ba0b7a4794 drm: lcdif: change burst size to 256B
521dc068ef5d clk: renesas: r9a06g032: Repair grave increment error
bd449cadc8db drm/i915/dgfx: Grab wakeref at i915_ttm_unmap_virtual
6039c79ea54f drm/i915: Encapsulate lmem rpm stuff in intel_runtime_pm
37ec70c44ec9 drm/i915: Refactor ttm ghost obj detection
ed52edf44432 drm/i915: Handle all GTs on driver (un)load paths
12a9b4c4ebd9 drm/rockchip: lvds: fix PM usage counter unbalance in poweron
2734b3eb7210 drm/amd/display: wait for vblank during pipe programming
f87cd02c3b65 dw9768: Enable low-power probe on ACPI
64f61e18286b drm/i915/guc: Fix GuC error capture sizing estimation and reporting
2fb13ac78aa9 drm/i915/guc: Add error-capture init warnings when needed
fe9f9b9d06d3 ASoC: dt-bindings: rt5682: Set sound-dai-cells to 1
0b708cb7f03d clk: renesas: r8a779a0: Fix SD0H clock name
fb0425321947 clk: renesas: r8a779f0: Fix SD0H clock name
a8e14234ac26 can: kvaser_usb: Compare requested bittiming parameters with actual parameters in do_set_{,data}_bittiming
70e91ddbe3b1 can: kvaser_usb: Add struct kvaser_usb_busparams
87669964867a can: kvaser_usb_leaf: Fix bogus restart events
e66e75eed961 can: kvaser_usb_leaf: Fix wrong CAN state after stopping
1eef65b79fce can: kvaser_usb_leaf: Fix improved state not being reported
6354011aa53c can: kvaser_usb_leaf: Set Warning state even without bus errors
10081f449a06 can: kvaser_usb: kvaser_usb_leaf: Handle CMD_ERROR_EVENT
368ee61e7b13 can: kvaser_usb: kvaser_usb_leaf: Rename {leaf,usbcan}_cmd_error_event to {leaf,usbcan}_cmd_can_error_event
2a07780ad2ff can: kvaser_usb: kvaser_usb_leaf: Get capabilities from device
8543ac492366 libbpf: Btf dedup identical struct test needs check for nested structs/arrays
5d68a8c82759 media: exynos4-is: don't rely on the v4l2_async_subdev internals
3a54b7286893 media: i2c: ov5648: Free V4L2 fwnode data on unbind
91a8528694a1 soreuseport: Fix socket selection for SO_INCOMING_CPU.
a5514f2f83a1 venus: pm_helpers: Fix error check in vcodec_domains_get()
0a132a42b77f media: i2c: ad5820: Fix error path
436873067841 media: i2c: hi846: Fix memory leak in hi846_parse_dt()
5459eaca151d drm/i915: Fix compute pre-emption w/a to apply to compute engines
72b414661dc1 drm/i915/guc: Limit scheduling properties to avoid overflow
ad8eb8ed0d39 media: mediatek: vcodec: fix h264 cavlc bitstream fail
246f266634f5 media: cedrus: hevc: Fix offset adjustments
563d50ec220f media: v4l2-ioctl.c: Unify YCbCr/YUV terms in format descriptions
5d1a2d2a1183 media: adv748x: afe: Select input port when initializing AFE
fc6579f00506 media: amphion: reset instance if it's aborted before codec header parsed
e7d1e0b75264 media: coda: jpeg: Add check for kmalloc
b9d1093140e2 media: v4l2-ctrls: Fix off-by-one error in integer menu control check
a7e8439e297e Input: iqs7222 - protect against undefined slider size
172d4d640750 drm/bridge: it6505: Initialize AUX channel in it6505_i2c_probe
782175a60176 selftests/bpf: fix missing BPF object files
05d55bbd8d27 samples/bpf: Fix MAC address swapping in xdp2_kern
818b68651cde samples/bpf: Fix map iteration in xdp1_user
22d569b3d1a0 net: ethernet: adi: adin1110: Fix SPI transfers
1c65f8f98148 drm/amdgpu/powerplay/psm: Fix memory leak in power state init
9ccd11718d76 drm/amdgpu: Revert "drm/amdgpu: getting fan speed pwm for vega10 properly"
3265e0f2f85a ipmi: kcs: Poll OBF briefly to reduce OBE latency
0bad12fee5ae ASoC: Intel: avs: Fix potential RX buffer overflow
b793142e7d6f ASoC: Intel: avs: Fix DMA mask assignment
e02b42f3fc56 pinctrl: ocelot: add missing destroy_workqueue() in error path in ocelot_pinctrl_probe()
55442d2f2cfa ata: libata: fix NCQ autosense logic
76b014f2f595 drm: lcdif: Switch to limited range for RGB to YUV conversion
ecb0f3d7dd13 libbpf: Fix null-pointer dereference in find_prog_by_sec_insn()
e0f5361d95aa libbpf: Deal with section with no data gracefully
622ff59742fe libbpf: Use elf_getshdrnum() instead of e_shnum
3c48bbf4264f selftest/bpf: Fix error usage of ASSERT_OK in xdp_adjust_tail.c
bec359a2a48f selftests/bpf: Fix error failure of case test_xdp_adjust_tail_grow
661e952bc9ef selftest/bpf: Fix memory leak in kprobe_multi_test
d7dc8fad67fa selftests/bpf: Fix memory leak caused by not destroying skeleton
13866e924a57 libbpf: Fix memory leak in parse_usdt_arg()
fbe08093fb23 libbpf: Fix use-after-free in btf_dump_name_dups
e4ebe4eb7ef5 drm/bridge: adv7533: remove dynamic lane switching from adv7533 bridge
edf05f091cc7 wifi: ath11k: fix firmware assert during bandwidth change for peer sta
d161b3de52dd wifi: rtl8xxxu: Fix reading the vendor of combo chips
71fc0ad671a6 wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb()
08aa0537ec8c wifi: ath9k: hif_usb: fix memory leak of urbs in ath9k_hif_usb_dealloc_tx_urbs()
588f2f9c7df6 drm/atomic-helper: Don't allocate new plane state in CRTC check
daf8163bd9ca wifi: mac80211: fix ifdef symbol name
8f8e5ca4e038 wifi: mac80211: check link ID in auth/assoc continuation
bb7743955a92 wifi: mac80211: mlme: fix null-ptr deref on failed assoc
cd5d16539330 wifi: fix multi-link element subelement iteration
49cafaad0ba5 selftests/bpf: Add missing bpf_iter_vma_offset__destroy call
cd58eb4338ce platform/mellanox: mlxbf-pmc: Fix event typo
28dad915abe4 ipc: fix memory leak in init_mqueue_fs()
b59624258598 rapidio: devices: fix missing put_device in mport_cdev_open
88579c158e02 hfs: Fix OOB Write in hfs_asc2mac
caaa3b42a204 relay: fix type mismatch when allocating memory in relay_create_buf()
ab2f429240b8 eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD
cb87af2c19c0 rapidio: fix possible UAF when kfifo_alloc() fails
c8d1f3d1b25b fs: sysv: Fix sysv_nblocks() returns wrong value
b6dccca21b1f NFSD: pass range end to vfs_fsync_range() instead of count
82474db85bab nfsd: return error if nfs4_setacl fails
d7aa9f777831 lockd: set other missing fields when unlocking files
5c8e13a2b66a MIPS: OCTEON: warn only once if deprecated link status is being used
412bd425cc35 MIPS: BCM63xx: Add check for NULL for clk in clk_enable
dc7224749484 platform/x86: intel_scu_ipc: fix possible name leak in __intel_scu_ipc_register()
87426ce3bd57 platform/x86: mxm-wmi: fix memleak in mxm_wmi_call_mx[ds|mx]()
6613f36a2fa5 platform/chrome: cros_ec_typec: zero out stale pointers
40c73b2ea961 erofs: validate the extent length for uncompressed pclusters
373b6f350aec erofs: fix missing unmap if z_erofs_get_extent_compressedlen() fails
618e712b99c7 erofs: Fix pcluster memleak when its block address is zero
18067e262416 erofs: check the uniqueness of fsid in shared domain in advance
6a5061dd651c PM: runtime: Do not call __rpm_callback() from rpm_idle()
4da411086f5a xen/privcmd: Fix a possible warning in privcmd_ioctl_mmap_resource()
b44457b83a03 x86/xen: Fix memory leak in xen_init_lock_cpu()
f698f88f042c x86/xen: Fix memory leak in xen_smp_intr_init{_pv}()
daea9a0647df uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix
01f2c2052ea5 ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage()
404b4b9770d8 clocksource/drivers/timer-ti-dm: Fix missing clk_disable_unprepare in dmtimer_systimer_init_clock()
6b0a5f9e153e clocksource/drivers/timer-ti-dm: Fix warning for omap_timer_match
685c4ec6c8d0 cpu/hotplug: Do not bail-out in DYING/STARTING sections
4070e9cf7220 cpu/hotplug: Make target_store() a nop when target == state
a1e49256c786 futex: Resend potentially swallowed owner death notification
fba0ec3a25ee clocksource/drivers/sh_cmt: Access registers according to spec
9abba4aa6087 rapidio: rio: fix possible name leak in rio_register_mport()
85fbf58b15c0 rapidio: fix possible name leaks when rio_add_device() fails
50ab0ca3aff4 ocfs2: fix memory leak in ocfs2_mount_volume()
92425441949e debugfs: fix error when writing negative value to atomic_t debugfs file
93148085cb70 lib/notifier-error-inject: fix error when writing -errno to debugfs file
79be3d5f2ef1 libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value
52116d130bcb cpufreq: amd_freq_sensitivity: Add missing pci_dev_put()
6eda351971be genirq/irqdesc: Don't try to remove non-existing sysfs files
23ac79e755df nfsd: don't call nfsd_file_put from client states seqfile display
b04556ef19ed NFSD: Finish converting the NFSv3 GETACL result encoder
2b825efb0577 NFSD: Finish converting the NFSv2 GETACL result encoder
f29c2f57cdf7 EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper()
6a9592cd3482 irqchip/loongson-liointc: Fix improper error handling in liointc_init()
773c9d7f127f irqchip/wpcm450: Fix memory leak in wpcm450_aic_of_init()
12f45dc266f8 irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe()
9e04d2548a02 irqchip/loongson-pch-pic: Fix translate callback for DT path
e0d8b51bbe84 thermal: core: fix some possible name leaks in error paths
751f12696d79 platform/chrome: cros_usbpd_notify: Fix error handling in cros_usbpd_notify_init()
254d2d322721 perf/x86/intel/uncore: Fix reference count leak in __uncore_imc_init_box()
dc7f07bc1ebb perf/x86/intel/uncore: Fix reference count leak in snr_uncore_mmio_map()
bd66877c0b3b perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox()
a7be6b849b53 perf/x86/intel/uncore: Fix reference count leak in sad_cfg_iio_topology()
c00901e98b1e ACPI: pfr_update: use ACPI_FREE() to free acpi_object
ae3075b54fa8 ACPI: pfr_telemetry: use ACPI_FREE() to free acpi_object
f0d5624fbe37 mailbox: pcc: Reset pcc_chan_count to zero in case of PCC probe failure
290dd73b943c PNP: fix name memory leak in pnp_alloc_dev()
fb7f50d9b87a selftests/efivarfs: Add checking of the test return value
faf8fd9f576a MIPS: vpe-cmp: fix possible memory leak while module exiting
ab3d47c1fd02 MIPS: vpe-mt: fix possible memory leak while module exiting
205f5e984d30 cpufreq: qcom-hw: Fix the frequency returned by cpufreq_driver->get()
a753ee510365 selftests: cgroup: fix unsigned comparison with less than zero
0b2128b70849 ocfs2: fix memory leak in ocfs2_stack_glue_init()
890d91b31f48 lib/fonts: fix undefined behavior in bit shift for get_default_font
b457907d5067 proc: fixup uptime selftest
21bec0ebb854 timerqueue: Use rb_entry_safe() in timerqueue_getnext()
790c52369e5d platform/x86: huawei-wmi: fix return value calculation
51b2ea9e4e53 lib/debugobjects: fix stat count and optimize debug_objects_mem_init
e9b4dc13d32c perf: Fix possible memleak in pmu_dev_alloc()
619dd807f993 selftests/ftrace: event_triggers: wait longer for test_event_enable
14addeebbb0f ACPI: irq: Fix some kernel-doc issues
bb1878d741ff x86/split_lock: Add sysctl to control the misery mode
242e23be8f31 cpufreq: qcom-hw: Fix memory leak in qcom_cpufreq_hw_read_lut()
cfea50b0e597 fs: don't audit the capability check in simple_xattr_list()
574b10475d69 PM: hibernate: Fix mistake in kerneldoc comment
fa90769d3f25 x86/sgx: Reduce delay and interference of enclave release
44de1adb2484 sched/psi: Fix possible missing or delayed pending event
3878f601e14c alpha: fix syscall entry in !AUDUT_SYSCALL case
84fe26b06f82 alpha: fix TIF_NOTIFY_SIGNAL handling
dc0da257ebaf cpuidle: dt: Return the correct numbers of parsed idle states
e7c542d2cfae sched/uclamp: Cater for uclamp in find_energy_efficient_cpu()'s early exit condition
cbd8c040409c sched/uclamp: Make cpu_overutilized() use util_fits_cpu()
324ce6e2c603 sched/uclamp: Make asym_fits_capacity() use util_fits_cpu()
3b9c1559de8c sched/uclamp: Make select_idle_capacity() use util_fits_cpu()
75ba48621b33 sched/uclamp: Fix fits_capacity() check in feec()
d355960543a7 sched/uclamp: Make task_fits_capacity() use util_fits_cpu()
0ef8dac24646 sched/uclamp: Fix relationship between uclamp and migration margin
7e4831539706 ovl: remove privs in ovl_fallocate()
155428ea2026 ovl: remove privs in ovl_copyfile()
82855e986453 tpm/tpm_crb: Fix error message in __crb_relinquish_locality()
60eb1529a300 tpm/tpm_ftpm_tee: Fix error handling in ftpm_mod_init()
1abbeab55631 tpm: Add flag to use default cancellation policy
05ab9752f975 tpm: tis_i2c: Fix sanity check interrupt enable mask
63f089c0365e arch: arm64: apple: t8103: Use standard "iommu" node name
2f82381d0681 pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP
3c6dfce2c76c ARM: mmp: fix timer_read delay
65f1ff9011f1 pstore/ram: Fix error return code in ramoops_probe()
5b81f0c6c60e seccomp: Move copy_seccomp() to no failure path.
ef400e41a85a drivers/perf: hisi: Fix some event id for hisi-pcie-pmu
5daa0a727c83 soc: apple: rtkit: Stop casting function pointer signatures
868d9310c460 soc: apple: sart: Stop casting function pointer signatures
d20a0234f0d8 arm64: dts: armada-3720-turris-mox: Add missing interrupt for RTC
a1b28c36ec20 ARM: dts: turris-omnia: Add switch port 6 node
88b5d11a6d98 ARM: dts: turris-omnia: Add ethernet aliases
1a8b127d7b15 ARM: dts: armada-39x: Fix assigned-addresses for every PCIe Root Port
18d8e15a53c6 ARM: dts: armada-38x: Fix assigned-addresses for every PCIe Root Port
8f4cd6481bbb ARM: dts: armada-375: Fix assigned-addresses for every PCIe Root Port
0e23b6a16af3 ARM: dts: armada-xp: Fix assigned-addresses for every PCIe Root Port
aa67f198dc81 ARM: dts: armada-370: Fix assigned-addresses for every PCIe Root Port
714ae279ac9c ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port
2460aca3c425 arm64: dts: mt7986: move wed_pcie node
b2429741cb42 arm64: tegra: Fix non-prefetchable aperture of PCIe C3 controller
75a0e121937d arm64: tegra: Fix Prefetchable aperture ranges of Tegra234 PCIe controllers
29ca6ffb0840 arm64: dts: mediatek: mt6797: Fix 26M oscillator unit name
e435f8959aad arm64: dts: mediatek: pumpkin-common: Fix devicetree warnings
81d0b66f185d arm64: dts: mt2712-evb: Fix usb vbus regulators unit names
bb225f227cb2 arm64: dts: mt2712-evb: Fix vproc fixed regulators unit names
e547c30e963f arm64: dts: mt2712e: Fix unit address for pinctrl node
cb9bb1895b43 arm64: dts: mt2712e: Fix unit_address_vs_reg warning for oscillators
5e5190363463 arm64: dts: mt6779: Fix devicetree build warnings
39ce535c4bf1 arm64: dts: mt7896a: Fix unit_address_vs_reg warning for oscillator
ffd7eb587315 arm64: dts: mediatek: mt8195: Fix CPUs capacity-dmips-mhz
121fa4e630dc ARM: dts: nuvoton: Remove bogus unit addresses from fixed-partition nodes
3aa5508359f3 riscv: dts: microchip: remove pcie node from the sev kit
d31b758ee777 arm64: dts: ti: k3-j721s2: Fix the interrupt ranges property for main & wkup gpio intr
2b2c143237f3 arm64: dts: ti: k3-j7200-mcu-wakeup: Drop dma-coherent in crypto node
dc7d896b7d50 arm64: dts: ti: k3-j721e-main: Drop dma-coherent in crypto node
0e2de8570880 arm64: dts: ti: k3-am65-main: Drop dma-coherent in crypto node
582babe17ea8 perf/smmuv3: Fix hotplug callback leak in arm_smmu_pmu_init()
adf7c3bbcc81 perf/arm_dmc620: Fix hotplug callback leak in dmc620_pmu_init()
7772f4de9341 drivers: perf: marvell_cn10k: Fix hotplug callback leak in tad_pmu_init()
0823732f0aa0 perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init()
7f7634d72def arm64: mm: kfence: only handle translation faults
afafeb0cf5b1 soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe
01c972a33cae soc: ti: knav_qmss_queue: Fix PM disable depth imbalance in knav_queue_probe
5e9e8ee71319 riscv: dts: microchip: fix the icicle's #pwm-cells
d9d93b6cd047 arm: dts: spear600: Fix clcd interrupt
9c113e3add61 arm64: dts: qcom: sc7280: Mark all Qualcomm reference boards as LTE
7d6370223db6 soc/tegra: cbb: Check firewall before enabling error reporting
b75d11a62bb3 soc/tegra: cbb: Add checks for potential out of bound errors
d8ed37219e27 soc/tegra: cbb: Update slave maps for Tegra234
6ede06dde331 soc/tegra: cbb: Use correct master_id mask for CBB NOC in Tegra194
61eb9624e764 arm64: dts: mt7986: fix trng node name
5e1a9c98c116 soc: sifive: ccache: fix missing of_node_put() in sifive_ccache_init()
0883dc428c95 soc: sifive: ccache: fix missing free_irq() in error path in sifive_ccache_init()
7ea9128d1a91 soc: sifive: ccache: fix missing iounmap() in error path in sifive_ccache_init()
48ad27467b00 dt-bindings: pwm: fix microchip corePWM's pwm-cells
d12b10a78396 arm64: dts: renesas: r9a09g011: Fix I2C SoC specific strings
68093e2e7a41 arm64: dts: renesas: r9a09g011: Fix unit address format error
4bc03f485add arm64: dts: renesas: r8a779f0: Fix SCIF "brg_int" clock
e4d95cd9fb15 arm64: dts: renesas: r8a779f0: Fix HSCIF "brg_int" clock
8a894fab2d26 arm64: dts: qcom: sm6125: fix SDHCI CQE reg names
2454706d2645 arm64: dts: qcom: pm6350: Include header for KEY_POWER
492480a9453e soc: qcom: apr: Add check for idr_alloc and of_property_read_string_index
a51d57fd6f37 arm64: dts: qcom: sm6350: drop bogus DP PHY clock
8ab46b95bff6 arm64: dts: qcom: sm8250: drop bogus DP PHY clock
564a8e6ef47b arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 1.0/2.0
efabb772e4bb arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 3.0/3.1
c05e7b9c5474 arm64: dts: qcom: sm8250-mtp: fix reset line polarity
07fe2707eac4 arm64: dts: qcom: msm8996: fix sound card reset line polarity
4b5f25ae1ba5 arm64: dts: qcom: sm8450: fix UFS PHY registers
b9002a984c98 arm64: dts: qcom: sm8350: fix UFS PHY registers
1d488fcb63d3 arm64: dts: qcom: sm8250: fix UFS PHY registers
b2b777270c94 arm64: dts: qcom: sm8150: fix UFS PHY registers
e89e8e0648f2 soc: qcom: llcc: make irq truly optional
91724983c7fd arm64: dts: qcom: sc7180-trogdor-homestar: fully configure secondary I2S pins
aceaa757137c arm64: dts: qcom: sm8250: correct LPASS pin pull down
77777664ccdd arm64: dts: qcom: pm660: Use unique ADC5_VCOIN address in node name
9d043ee0de80 riscv: dts: microchip: fix memory node unit address for icicle
0eb788089ddb firmware: ti_sci: Fix polled mode during system suspend
f024ba5e05ab drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static
10ee1f7a0fa0 ARM: dts: stm32: Fix AV96 WLAN regulator gpio property
0d7d7d9ccf6d ARM: dts: stm32: Drop stm32mp15xc.dtsi from Avenger96
1c1e7514cf3e objtool, kcsan: Add volatile read/write instrumentation to whitelist
f3107fca5491 memory: renesas-rpc-if: Clear HS bit during hardware initialization
85c570c3b33d arm64: dts: fsd: fix drive strength values as per FSD HW UM
c6c98b75a5db arm64: dts: fsd: fix drive strength macros as per FSD HW UM
6d2f8d9c14d5 arm64: dts: qcom: msm8916: Drop MSS fallback compatible
29e76d127ab1 arm64: dts: qcom: sdm845-cheza: fix AP suspend pin bias
0094e48d90d5 arm64: dts: qcom: sdm630: fix UART1 pin bias
40713b3e902a ARM: dts: qcom: apq8064: fix coresight compatible
56a0ab80c095 arm64: dts: qcom: msm8996: fix GPU OPP table
fa6d1956270c arm64: dts: qcom: msm8996: fix supported-hw in cpufreq OPP tables
830c07c7d8dd arm64: dts: qcom: msm8996: Add MSM8996 Pro support
03cb7d4dacb3 arm64: dts: qcom: sdm845-xiaomi-polaris: fix codec pin conf name
fbba08a9209f arm64: dts: qcom: sm8250-sony-xperia-edo: fix touchscreen bias-disable
97e197f5c483 arm64: dts: qcom: ipq6018-cp01-c1: use BLSPI1 pins
4d37ecb21de4 arm64: dts: renesas: r8a779g0: Fix HSCIF0 "brg_int" clock
7913fc303d12 usb: musb: remove extra check in musb_gadget_vbus_draw
e72fab11d350 MIPS: DTS: CI20: fix reset line polarity of the ethernet controller
(From OE-Core rev: 8840b4a4754dce42f0de008af0f03cdfb6eaf9ec)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/5.19:
84f2f8e7a625 powerpc: Fix reschedule bug in KUAP-unlocked user copy
(From OE-Core rev: 438b3523625807e2deca1797ce20649531270676)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/5.15:
f100c753aa1f powerpc: Fix reschedule bug in KUAP-unlocked user copy
(From OE-Core rev: b457e6976e9e64a737517f9d9142ab290cdce214)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
ebdb69c5b054 Linux 6.1.1
1d1a710c1983 KEYS: encrypted: fix key instantiation with user-provided data
e8d16a54842d cifs: fix oops during encryption
4e453324803d usb: dwc3: pci: Update PCIe device ID for USB3 controller on CPU sub-system for Raptor Lake
9222912924fc usb: typec: ucsi: Resume in separate work
c383c7c35c7b igb: Initialize mailbox message for VF reset
52d5896ba2a4 staging: r8188eu: fix led register settings
c9cacc0ab1ea xhci: Apply XHCI_RESET_TO_DEFAULT quirk to ADL-N
c0d91ec1a16a ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
c0815ea08548 USB: serial: f81534: fix division by zero on line-speed change
3c8b21ee1404 USB: serial: f81232: fix division by zero on line-speed change
736f626ea8b8 USB: serial: cp210x: add Kamstrup RF sniffer PIDs
0b63d587c0d2 USB: serial: option: add Quectel EM05-G modem
d1a92bb8d697 usb: gadget: uvc: Prevent buffer overflow in setup handler
2cd2e9322726 udf: Fix extending file within last block
1cd3e9297d44 udf: Do not bother looking for prealloc extents if i_lenExtents matches i_size
12a88f572d6d udf: Fix preallocation discarding at indirect extent boundary
e6b01f6a0e77 udf: Discard preallocation before extending file with a hole
fb9b502cf911 irqchip/ls-extirq: Fix endianness detection
18301e16ea55 mips: ralink: mt7621: do not use kzalloc too early
ee11da28a62e mips: ralink: mt7621: soc queries and tests as functions
a1d9199ba485 mips: ralink: mt7621: define MT7621_SYSC_BASE with __iomem
a4997bae1b5b PCI: mt7621: Add sentinel to quirks table
76c6303530eb libbpf: Fix uninitialized warning in btf_dump_dump_type_data
96c5043a4d64 x86/vdso: Conditionally export __vdso_sgx_enter_enclave()
(From OE-Core rev: 253360891b8be1b6574f8bf237ce178b42174ee5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
d68f50bfb00f Linux 5.15.84
972707bae3d7 net: fec: properly guard irq coalesce setup
289721fe0993 ASoC: ops: Correct bounds check for second channel on SX controls
de0866b94a64 nvme-pci: clear the prp2 field when not used
8bffa95ac19f perf: Fix perf_pending_task() UaF
825bd2af4227 ASoC: cs42l51: Correct PGA Volume minimum value
91582b3a1ab2 net: fec: don't reset irq coalesce settings to defaults on "ip link up"
c772dab247f1 can: mcba_usb: Fix termination command argument
aa822de7de3b can: sja1000: fix size of OCR_MODE_MASK define
09e08740d78c pinctrl: meditatek: Startup with the IRQs disabled
172a95026f06 libbpf: Use page size as max_entries when probing ring buffer map
cf611d786796 ASoC: ops: Check bounds for second channel in snd_soc_put_volsw_sx()
a74b88e17025 ASoC: fsl_micfil: explicitly clear CHnF flags
afac1e7d78eb ASoC: fsl_micfil: explicitly clear software reset bit
9d933af8fef3 nfp: fix use-after-free in area_cache_get()
e1a4f5880d00 vfs: fix copy_file_range() averts filesystem freeze protection
86e28ed25b00 x86/vdso: Conditionally export __vdso_sgx_enter_enclave()
fd6d66840b42 Linux 5.15.83
f895511de9d2 io_uring: Fix a null-ptr-deref in io_tctx_exit_cb()
f435c66d2336 io_uring: move to separate directory
d9e1e5d8a74c block: move CONFIG_BLOCK guard to top Makefile
e5c0bc4ff5b0 can: esd_usb: Allow REC and TEC to return to zero
db6343a5b0d9 s390/qeth: fix use-after-free in hsci
a56c1cebe4a0 s390/qeth: fix various format strings
a6dba316c93e macsec: add missing attribute validation for offload
40500f1f4745 net: mvneta: Fix an out of bounds check
b9274dbe3999 net: thunderbolt: fix memory leak in tbnet_open()
7390c70bd431 ipv6: avoid use-after-free in ip6_fragment()
1beb475892f7 net: plip: don't call kfree_skb/dev_kfree_skb() under spin_lock_irq()
b08412a9cf26 net: phy: mxl-gpy: fix version reporting
dec5abd91abc xen/netback: fix build warning
54d830e24247 dpaa2-switch: Fix memory leak in dpaa2_switch_acl_entry_add() and dpaa2_switch_acl_entry_remove()
c7adcbd0fd3f ethernet: aeroflex: fix potential skb leak in greth_init_rings()
d962d42d6376 tipc: call tipc_lxc_xmit without holding node_read_lock
f3b5dda26cd0 net: dsa: sja1105: fix memory leak in sja1105_setup_devlink_regions()
5dab6fa068d7 ipv4: Fix incorrect route flushing when table ID 0 is used
ac566bd5770f ipv4: Fix incorrect route flushing when source address is deleted
af4ccae4b704 tipc: Fix potential OOB in tipc_link_proto_rcv()
b8ce0e6f9f88 net: hisilicon: Fix potential use-after-free in hix5hd2_rx()
16854177745a net: mdio: fix unbalanced fwnode reference count in mdio_device_release()
6f4798ac9c9e net: hisilicon: Fix potential use-after-free in hisi_femac_rx()
114e65a22189 net: thunderx: Fix missing destroy_workqueue of nicvf_rx_mode_wq
51c04945756a net: microchip: sparx5: Fix missing destroy_workqueue of mact_queue
99eec0a766f9 ip_gre: do not report erspan version on GRE interface
2891957853f2 net: stmmac: fix "snps,axi-config" node property parsing
5cb8f1a784fd gpio/rockchip: fix refcount leak in rockchip_gpiolib_register()
b8c2f0392d1d nvme initialize core quirks before calling nvme_init_subsystem
908b2da426fe NFC: nci: Bounds check struct nfc_target arrays
d841cc156304 i40e: Disallow ip4 and ip6 l4_4_bytes
625a13850b31 i40e: Fix for VF MAC address 0
5538794dbd42 i40e: Fix not setting default xps_cpus after reset
a6b30598fec8 net: mvneta: Prevent out of bounds read in mvneta_config_rss()
e6e897d4fe2f xen-netfront: Fix NULL sring after live migration
eefd8953a748 octeontx2-pf: Fix potential memory leak in otx2_init_tc()
f88acaed07b1 net: mdiobus: fix double put fwnode in the error path
cc62d76928e0 net: mdiobus: fwnode_mdiobus_register_phy() rework error handling
ea113b570eee net: encx24j600: Fix invalid logic in reading of MISTAT register
8aae746d065c net: encx24j600: Add parentheses to fix precedence
a110287ef4a4 mac802154: fix missing INIT_LIST_HEAD in ieee802154_if_add()
e046421bed5a selftests: rtnetlink: correct xfrm policy rule in kci_test_ipsec_offload
4fa8988a36d5 net: dsa: sja1105: Check return value
b35be171dfe6 net: dsa: hellcreek: Check return value
a4c342e645d6 net: dsa: ksz: Check return value
edf7284a9829 Bluetooth: Fix not cleanup led when bt_init fails
3322193949ac Bluetooth: 6LoWPAN: add missing hci_dev_put() in get_l2cap_conn()
6c88c764e0c4 vmxnet3: use correct intrConf reference when using extended queues
5ad0d85757f8 vmxnet3: correctly report encapsulated LRO packet
5c014eb0ed6c af_unix: Get user_ns from in_skb in unix_diag_get_exact().
807a01a32979 drm: bridge: dw_hdmi: fix preference of RGB modes over YUV420
eb96fd3983b2 net: broadcom: Add PTP_1588_CLOCK_OPTIONAL dependency for BCMGENET under ARCH_BCM2835
16eb678bca8e igb: Allocate MSI-X vector when testing
34c6367c946c e1000e: Fix TX dispatch condition
4271515f189b gpio: amd8111: Fix PCI device reference count leak
d57b60e9b355 drm/bridge: ti-sn65dsi86: Fix output polarity setting bug
f8b29656013c netfilter: ctnetlink: fix compilation warning after data race fixes in ct mark
246bcd05ba6c ca8210: Fix crash by zero initializing data
80dad8df5fc2 ieee802154: cc2520: Fix error return code in cc2520_hw_init()
dd9dcfb85c65 drm/vmwgfx: Fix race issue calling pin_user_pages
7b09ba9036b2 netfilter: nft_set_pipapo: Actually validate intervals in fields after the first one
6daaa84b6214 gpiolib: fix memory leak in gpiochip_setup_dev()
1a1075d37108 gpiolib: check the 'ngpios' property in core gpiolib code
70c5515c1c30 gpiolib: improve coding style for local variables
3b714f25fc59 clk: Fix pointer casting to prevent oops in devm_clk_release()
c142cba37de2 can: af_can: fix NULL pointer dereference in can_rcv_filter
104bb1f67e3c HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch V 10
f755d11c55b2 HID: core: fix shift-out-of-bounds in hid_report_raw_event
2d4b310c32d4 HID: hid-lg4ff: Add check for empty lbuf
5e8021ae0865 HID: usbhid: Add ALWAYS_POLL quirk for some mice
5e88c6f4aaa7 net: dsa: sja1105: avoid out of bounds access in sja1105_init_l2_policing()
1074fefce9cc drm/shmem-helper: Avoid vm_open error paths
83e3da8bb92f drm/shmem-helper: Remove errant put in error path
249011f4c3b8 drm/amdgpu/sdma_v4_0: turn off SDMA ring buffer in the s2idle suspend
1e4fe9a1546f drm/vmwgfx: Don't use screen objects when SEV is active
f6550976fe22 KVM: s390: vsie: Fix the initialization of the epoch extension (epdx) field
fe50a9bbeb1f net: mana: Fix race on per-CQ variable napi work_done
a49894a5ac36 Bluetooth: Fix crash when replugging CSR fake controllers
1dee2b504771 Bluetooth: btusb: Add debug message for CSR controllers
3ac29732a2ff mm/gup: fix gup_pud_range() for dax
aad8bbd17a1d memcg: fix possible use-after-free in memcg_write_event_control()
6fb8bc29bfa8 media: v4l2-dv-timings.c: fix too strict blanking sanity checks
a4c575541eeb Revert "ARM: dts: imx7: Fix NAND controller size-cells"
28abc1145924 soundwire: intel: Initialize clock stop timeout
22d800b378e4 media: videobuf2-core: take mmap_lock in vb2_get_unmapped_area()
5d0fa6fc8899 xen/netback: don't call kfree_skb() with interrupts disabled
4422241ceffc xen/netback: do some code cleanup
0fe29bd92594 xen/netback: Ensure protocol headers don't fall in the non-linear area
f01677be31d1 drm/bridge: anx7625: Fix edid_read break case in sp_tx_edid_read()
ee2536830b16 cifs: fix use-after-free caused by invalid pointer `hostname`
dc62f05f666c rtc: cmos: avoid UIP when reading alarm time
48ea4199af85 rtc: cmos: avoid UIP when writing alarm time
3f52afc6ed93 rtc: mc146818-lib: extract mc146818_avoid_UIP
1a3f8c6cd29d mm/khugepaged: invoke MMU notifiers in shmem/file collapse paths
79ad784c9d21 mm/khugepaged: fix GUP-fast interaction by sending IPI
d15cd6de0123 mm/khugepaged: take the right locks for page table retraction
26f084e55466 net: usb: qmi_wwan: add u-blox 0x1342 composition
029a7f1c5d70 9p/xen: check logical size for buffer size
b398832893c8 usb: dwc3: gadget: Disable GUSB2PHYCFG.SUSPHY for End Transfer
e70a5724400a fbcon: Use kzalloc() in fbcon_prepare_logo()
fd3768597d2a regulator: twl6030: fix get status of twl6032 regulators
9f74b9aa8d58 ASoC: soc-pcm: Add NULL check in BE reparenting
dae93f4168c4 btrfs: send: avoid unaligned encoded writes when attempting to clone range
f54e1edf579d selftests/net: Find nettest in current directory
fccd454129f6 ALSA: seq: Fix function prototype mismatch in snd_seq_expand_var_event
542a563bb751 regulator: slg51000: Wait after asserting CS pin
3d1b5fde360e 9p/fd: Use P9_HDRSZ for header size
fe2d44e86e96 ASoC: rt711-sdca: fix the latency time of clock stop prepare state machine transitions
e945f3d809ed ARM: dts: rockchip: disable arm_global_timer on rk3066 and rk3188
c3b818c91a11 spi: mediatek: Fix DEVAPC Violation at KO Remove
d9f0107be1a9 ASoC: wm8962: Wait for updated value of WM8962_CLOCKING1 register
7ae0262748e5 ARM: 9266/1: mm: fix no-MMU ZERO_PAGE() implementation
d81c62e3121f ARM: 9251/1: perf: Fix stacktraces for tracepoint events in THUMB2 kernels
66717ad03b80 fs: use acquire ordering in __fget_light()
1222e2364ac7 ARM: dts: rockchip: rk3188: fix lcdc1-rgb24 node name
996fb29b06b6 arm64: dts: rockchip: fix ir-receiver node names
752138ef89e8 ARM: dts: rockchip: fix ir-receiver node names
8045971e40cd arm: dts: rockchip: remove clock-frequency from rtc
5e9fb8013ac9 arm: dts: rockchip: fix node name for hym8563 rtc
2ed7137e911a arm64: dts: rockchip: keep I2S1 disabled for GPIO function on ROCK Pi 4 series
5a1122e1a896 mmc: mtk-sd: Fix missing clk_disable_unprepare in msdc_of_clock_parse()
282f52c954a8 clk: Provide new devm_clk helpers for prepared and enabled clocks
eb94a7a20f3c clk: generalize devm_clk_get() a bit
d9790301361c Linux 5.15.82
48642f94311b proc: proc_skip_spaces() shouldn't think it is working on C strings
3eb9213f6612 proc: avoid integer type confusion in get_proc_long
4a4073a2e2fe ipc/sem: Fix dangling sem_array access in semtimedop race
53b9b1201e34 Input: raydium_ts_i2c - fix memory leak in raydium_i2c_send()
571b6bbbf54d char: tpm: Protect tpm_pm_suspend with locks
f39891cfe79b Revert "clocksource/drivers/riscv: Events are stopped during CPU suspend"
a759057af728 ACPI: HMAT: Fix initiator registration for single-initiator systems
da8a794d71ec ACPI: HMAT: remove unnecessary variable initialization
2d16161a2c98 i2c: imx: Only DMA messages with I2C_M_DMA_SAFE flag set
950a05cb15e3 i2c: npcm7xx: Fix error handling in npcm_i2c_init()
db3f8da033d9 serial: stm32: Deassert Transmit Enable on ->rs485_config()
45f628f4fd81 serial: stm32: Use TC interrupt to deassert GPIO RTS in RS485 mode
c60eae5b1d0b serial: stm32: Factor out GPIO RTS toggling into separate function
041f8dc88292 ipv4: Fix route deletion when nexthop info is not specified
25174d91e4a3 ipv4: Handle attempt to delete multipath route when fib_info contains an nh reference
a0ad247e55ea selftests: net: fix nexthop warning cleanup double ip typo
532847b69c29 selftests: net: add delete nexthop route warning test
e0783558817d Kconfig.debug: provide a little extra FRAME_WARN leeway when KASAN is enabled
723fa02e0e0a parisc: Increase FRAME_WARN to 2048 bytes on parisc
b951ab4b35ba mm: migrate: fix THP's mapcount on isolation
c5eda6029cf9 mm: __isolate_lru_page_prepare() in isolate_migratepages_block()
bdb613ef179a iommu/vt-d: Fix PCI device refcount leak in dmar_dev_scope_init()
b6eea8b2e858 iommu/vt-d: Fix PCI device refcount leak in has_external_pci()
787d81d4eb15 nvme: fix SRCU protection of nvme_ns_head list
12f237200c16 riscv: kexec: Fixup irq controller broken in kexec crash path
ac00301adb19 riscv: fix race when vmap stack overflow
fa7a7d185ef3 riscv: Sync efi page table's kernel mappings before switching
d86d69892545 pinctrl: single: Fix potential division by zero
98b15c706644 ASoC: ops: Fix bounds check for _sx controls
f88a6977f8b9 KVM: x86/mmu: Fix race condition in direct_page_fault
df4b177b4851 io_uring/poll: fix poll_refs race with cancelation
4b702b7d11ce io_uring: make poll refs more robust
1d58849ac26f io_uring: cmpxchg for poll arm refs release
cd1981a8c30d io_uring: fix tw losing poll events
62321dc7b081 io_uring: update res mask in io_poll_check_events
417d5ea6e735 tracing: Free buffers when a used dynamic event is removed
52fc245d150c tracing: Fix race where histograms can be called before the event
cb2b0612cd25 tracing/osnoise: Fix duration type
615a996ff397 drm/i915: Never return 0 if not all requests retired
01a2b25ef2cd drm/i915: Fix negative value passed as remaining time
ff1591ba33b8 drm/amdgpu: enable Vangogh VCN indirect sram mode
ac2d7fa90848 drm/amdgpu: temporarily disable broken Clang builds due to blown stack-frame
57ee7bc4c60a mmc: sdhci: Fix voltage switch delay
bb8f8095143e mmc: sdhci-sprd: Fix no reset data and command after voltage switch
4c7681c1a52f mmc: sdhci-esdhc-imx: correct CQHCI exit halt state check
01dbe4db590a mmc: core: Fix ambiguous TRIM and DISCARD arg
738946e35504 mmc: mmc_test: Fix removal of debugfs file
635d0517348e net: stmmac: Set MAC's flow control register to reflect current settings
9132dcdf3bf6 v4l2: don't fall back to follow_pfn() if pin_user_pages_fast() fails
76ad884be092 pinctrl: intel: Save and restore pins in "direct IRQ" mode
41296b85fafa x86/bugs: Make sure MSR_SPEC_CTRL is updated properly upon resume from S3
33021419fd81 nilfs2: fix NULL pointer dereference in nilfs_palloc_commit_free_entry()
2e44dd9a8dd6 tools/vm/slabinfo-gnuplot: use "grep -E" instead of "egrep"
b60a8ad771fd error-injection: Add prompt for function error injection
757eb00c4c40 ALSA: dice: fix regression for Lexicon I-ONIX FW810S
a1a96a6f302c riscv: mm: Proper page permissions after initmem free
823df3607d8b riscv: vdso: fix section overlapping under some conditions
6e035d5a2a6b hwmon: (coretemp) fix pci device refcount leak in nv1a_ram_new()
7692700ac818 hwmon: (coretemp) Check for null before removing sysfs attrs
9b5836b9c4b0 net: ethernet: renesas: ravb: Fix promiscuous mode after system resumed
0dfb9a566327 sctp: fix memory leak in sctp_stream_outq_migrate()
fcb3e0216156 packet: do not set TP_STATUS_CSUM_VALID on CHECKSUM_COMPLETE
04b995e96322 net: tun: Fix use-after-free in tun_detach()
43ca0adf79e5 afs: Fix fileserver probe RTT handling
543d917f691a net: mdiobus: fix unbalanced node reference count
dca370e575d9 net: hsr: Fix potential use-after-free
1daec0815655 tipc: re-fetch skb cb after tipc_msg_validate
16a64dc26545 dsa: lan9303: Correct stat name
766086ea8ca7 net: wwan: iosm: fix dma_alloc_coherent incompatible pointer type
c667751a4265 net: wwan: iosm: fix kernel test robot reported error
9c584d6d9cfb net: ethernet: nixge: fix NULL dereference
8782b32ef867 net/9p: Fix a potential socket leak in p9_socket_open
6fc9425bff4b net: net_netdev: Fix error handling in ntb_netdev_init_module()
3bc893ef36f9 net: ethernet: ti: am65-cpsw: fix error handling in am65_cpsw_nuss_probe()
7730904f50c7 net: phy: fix null-ptr-deref while probe() failed
59b54f0563b6 wifi: mac8021: fix possible oob access in ieee80211_get_rate_duration
dc0853f8b502 wifi: cfg80211: don't allow multi-BSSID in S1G
88a6fe370788 wifi: cfg80211: fix buffer overflow in elem comparison
08fff7aaeb7e aquantia: Do not purge addresses when setting the number of rings
2a7aa52573da qlcnic: fix sleep-in-atomic-context bugs caused by msleep
7b734d26f037 can: m_can: Add check for devm_clk_get
ea8dc27bb044 can: m_can: pci: add missing m_can_class_free_dev() in probe/remove methods
b1d2a8e02acc can: etas_es58x: es58x_init_netdev(): free netdev when register_candev()
e53da04e37e4 can: cc770: cc770_isa_probe(): add missing free_cc770dev()
d452a71995cb can: sja1000_isa: sja1000_isa_probe(): add missing free_sja1000dev()
372eb550faa0 net/mlx5e: Fix use-after-free when reverting termination table
839eeab03c83 net/mlx5: Fix uninitialized variable bug in outlen_write()
34feea3bfb37 net/mlx5: DR, Fix uninitialized var warning
3485ef2aabeb net/mlx5: DR, Rename list field in matcher struct to list_node
9fc27d22cdb9 e100: Fix possible use after free in e100_xmit_prepare
0d9f5bd54b91 iavf: Fix error handling in iavf_init_module()
b0b2b9050c17 iavf: remove redundant ret variable
69501d820508 fm10k: Fix error handling in fm10k_init_module()
5e3657dede36 i40e: Fix error handling in i40e_init_module()
7109e9410992 ixgbevf: Fix resource leak in ixgbevf_init_module()
196ea810e21c of: property: decrement node refcount in of_fwnode_get_reference_args()
36164db278a8 nvmem: rmem: Fix return value check in rmem_read()
e3761831674a bpf: Do not copy spin lock field from user in bpf_selem_alloc
45f6e8186374 hwmon: (ibmpex) Fix possible UAF when ibmpex_register_bmc() fails
a90251376c3e hwmon: (i5500_temp) fix missing pci_disable_device()
eeb31b828daf hwmon: (ina3221) Fix shunt sum critical calculation
9514b95cac51 hwmon: (ltc2947) fix temperature scaling
0140e079a420 libbpf: Handle size overflow for ringbuf mmap
06d5790e7df5 ARM: at91: rm9200: fix usb device clock id
d074f173fbd1 scripts/faddr2line: Fix regression in name resolution on ppc64le
ee3d37d79610 bpf, perf: Use subprog name when reporting subprog ksymbol
ec02fc0a4101 iio: light: rpr0521: add missing Kconfig dependencies
f7419fc42afc iio: health: afe4404: Fix oob read in afe4404_[read|write]_raw
e7e76a77aabe iio: health: afe4403: Fix oob read in afe4403_read_raw
ebdca90efbb5 drm/amdgpu: Partially revert "drm/amdgpu: update drm_display_info correctly when the edid is read"
c365d3c3e512 drm/amdgpu: update drm_display_info correctly when the edid is read
df5346466e51 drm/display/dp_mst: Fix drm_dp_mst_add_affected_dsc_crtcs() return code
044da1a371a0 btrfs: qgroup: fix sleep from invalid context bug in btrfs_qgroup_inherit()
da86809ab822 btrfs: move QUOTA_ENABLED check to rescan_should_stop from btrfs_qgroup_rescan_worker
5d66eadc1cc3 spi: spi-imx: Fix spi_bus_clk if requested clock is higher than input clock
6b4544a13179 btrfs: free btrfs_path before copying inodes to userspace
c7ae3becee72 btrfs: sink iterator parameter to btrfs_ioctl_logical_to_ino
acc2f40b980c erofs: fix order >= MAX_ORDER warning due to crafted negative i_size
ca9f27448af0 drm/i915/gt: Use i915_vm_put on ppgtt_create error paths
c2f2972889eb drm/i915: Create a dummy object for gen6 ppgtt
918002bdbe43 arm64: mte: Avoid setting PG_mte_tagged if no tags cleared or restored
e4a7232c917c Linux 5.15.81
5c5c563a0817 cifs: fix missed refcounting of ipc tcon
ee2d04f23bbb drm/i915: fix TLB invalidation for Gen12 video and compute engines
bef834845d89 drm/amdgpu: always register an MMU notifier for userptr
7901de7aa833 drm/amdgpu: Enable Aldebaran devices to report CU Occupancy
e7bf1fe53817 drm/amd/display: No display after resume from WB/CB
5033cba00c71 drm/amd/dc/dce120: Fix audio register mapping, stop triggering KASAN
b8dc24590923 btrfs: sysfs: normalize the error handling branch in btrfs_init_sysfs()
914baca57af7 btrfs: use kvcalloc in btrfs_get_dev_zone_info
c1e6d4bfdee3 btrfs: zoned: fix missing endianness conversion in sb_write_pointer
d88bf6be02de btrfs: free btrfs_path before copying subvol info to userspace
f218b404fc0e btrfs: free btrfs_path before copying fspath to userspace
fea9397101c1 btrfs: free btrfs_path before copying root refs to userspace
7d0c25b5fe54 genirq: Take the proposed affinity at face value if force==true
f17657cce069 irqchip/gic-v3: Always trust the managed affinity provided by the core code
52a93f2dcf6c genirq: Always limit the affinity to online CPUs
599cf4b84526 genirq/msi: Shutdown managed interrupts with unsatifiable affinities
7aed1dd5d221 wifi: wilc1000: validate number of channels
e9de501cf70d wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_CHANNEL_LIST attribute
143232cb5a4c wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_OPER_CHANNEL attribute
cd9c4869710b wifi: wilc1000: validate pairwise and authentication suite offsets
f2fb18d429c3 fuse: lock inode unconditionally in fuse_fallocate()
bb1c33bdf409 dm integrity: clear the journal on suspend
20ad31b09e98 dm integrity: flush the journal on suspend
5ca2110ba5e3 gpu: host1x: Avoid trying to use GART on Tegra20
97f47617e813 scsi: iscsi: Fix possible memory leak when device_register() failed
56ab7f237e7e net: usb: qmi_wwan: add Telit 0x103a composition
e2e33f213dea tcp: configurable source port perturb table size
269928e5c7bb platform/x86: ideapad-laptop: Fix interrupt storm on fn-lock toggle on some Yoga laptops
17d995dc69c8 platform/x86: hp-wmi: Ignore Smart Experience App event
e85bdc78720c zonefs: fix zone report size in __zonefs_io_error()
982fcd83fb16 drm/amdgpu: disable BACO support on more cards
ea11f8197dad platform/x86: acer-wmi: Enable SW_TABLET_MODE on Switch V 10 (SW5-017)
09af15e69196 platform/x86: asus-wmi: add missing pci_dev_put() in asus_wmi_set_xusb2pr()
ba040bea9deb xen/platform-pci: add missing free_irq() in error path
6815b2087d23 xen-pciback: Allow setting PCI_MSIX_FLAGS_MASKALL too
4c13ddb74f2c ASoC: stm32: dfsdm: manage cb buffers cleanup
dd82295a23bc Input: i8042 - apply probe defer to more ASUS ZenBook models
e12e121feb63 Input: soc_button_array - add Acer Switch V 10 to dmi_use_low_level_irq[]
9f5c167074d3 Input: soc_button_array - add use_low_level_irq module parameter
aaef86eac9e2 Input: goodix - try resetting the controller when no config is set
e2223f5fbbb8 serial: 8250: 8250_omap: Avoid RS485 RTS glitch on ->set_termios()
4e208294de45 tools: iio: iio_generic_buffer: Fix read size
0d0e2545fa92 ASoC: Intel: bytcht_es8316: Add quirk for the Nanote UMPC-01
e394cf9d7a83 Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode
96b5d1177752 x86/ioremap: Fix page aligned size calculation in __ioremap_caller()
d048f7481524 x86/pm: Add enumeration check before spec MSRs save/restore setup
070e3560bf04 x86/tsx: Add a feature bit for TSX control MSR support
1430c98ebbe7 KVM: x86: remove exit_int_info warning in svm_handle_exit
27550a5930bb KVM: x86: add kvm_leave_nested
3e87cb0caa25 KVM: x86: nSVM: harden svm_free_nested against freeing vmcb02 while still in use
6425c590d0cc KVM: x86: forcibly leave nested mode on vCPU reset
f42ebf972a9f KVM: x86: nSVM: leave nested mode on vCPU free
7b3c9405b272 mm: vmscan: fix extreme overreclaim and swap floods
feb2eda5e11f gcov: clang: fix the buffer overflow issue
ea6aa25c9ac0 nilfs2: fix nilfs_sufile_mark_dirty() not set segment usage as dirty
9d97a9fbfc11 usb: dwc3: gadget: Clear ep descriptor last
02632ea4dfaa usb: dwc3: gadget: Return -ESHUTDOWN on ep disable
765ca3e63f37 usb: dwc3: gadget: conditionally remove requests
7945cbf8666a bus: ixp4xx: Don't touch bit 7 on IXP42x
39c039018a2c iio: core: Fix entry not deleted when iio_register_sw_trigger_type() fails
0791a5ddbac2 iio: light: apds9960: fix wrong register for gesture gain
f0158b9bfcc2 arm64: dts: rockchip: lower rk3399-puma-haikou SD controller clock frequency
277d19ec283d ext4: fix use-after-free in ext4_ext_shift_extents
c9d133100bce usb: cdnsp: fix issue with ZLP - added TD_SIZE = 1
c2ad434cd4b2 usb: cdnsp: Fix issue with Clear Feature Halt Endpoint
1d91c648874e usb: dwc3: exynos: Fix remove() function
0a216625c3ab KVM: arm64: pkvm: Fixup boot mode to reflect that the kernel resumes from EL1
f0044a4a31c9 mmc: sdhci-brcmstb: Fix SDHCI_RESET_ALL for CQHCI
8e6940979bb8 mmc: sdhci-brcmstb: Enable Clock Gating to save power
24b46bfa9661 mmc: sdhci-brcmstb: Re-organize flags
227543ccacf8 nios2: add FORCE for vmlinuz.gz
6a4ea16a6734 init/Kconfig: fix CC_HAS_ASM_GOTO_TIED_OUTPUT test with dash
c4a9046c2735 lib/vdso: use "grep -E" instead of "egrep"
5fefdceafb78 s390/crashdump: fix TOD programmable field size
592b6fd74afd net: thunderx: Fix the ACPI memory leak
697eb30a3534 octeontx2-af: Fix reference count issue in rvu_sdp_init()
6ba1687ea102 octeontx2-pf: Add check for devm_kcalloc
26c31e7c73d4 net: enetc: preserve TX ring priority across reconfiguration
0e16bbf616cc net: enetc: cache accesses to &priv->si->hw
68de40f66a5a net: enetc: manage ENETC_F_QBV in priv->active_offloads only when enabled
5c0858e1426b nfc: st-nci: fix incorrect sizing calculations in EVT_TRANSACTION
e09243fb160b nfc: st-nci: fix memory leaks in EVT_TRANSACTION
dca20b7a1959 nfc: st-nci: fix incorrect validating logic in EVT_TRANSACTION
67d638f8efc4 s390/dasd: fix no record found for raw_track_access
88277853cf8a arcnet: fix potential memory leak in com20020_probe()
1d44ec8507b7 ipv4: Fix error return code in fib_table_insert()
918e83c6bfa7 dccp/tcp: Reset saddr on failure after inet6?_hash_connect().
8ce9b1c97fce fs: do not update freeing inode i_io_list
8db9e60cdfda netfilter: flowtable_offload: add missing locking
c1da3bfca111 netfilter: ipset: restore allowing 64 clashing elements in hash:net,iface
606091b2f6dc dma-buf: fix racing conflict of dma_heap_add()
8af9450befba bnx2x: fix pci device refcount leak in bnx2x_vf_is_pcie_pending()
251bcf6cfb35 regulator: twl6030: re-add TWL6032_SUBCLASS
6258a8f91304 NFC: nci: fix memory leak in nci_rx_data_packet()
ffe6021154ea net: sched: allow act_ct to be built without NF_NAT
a05c0f9511d0 net: sparx5: fix error handling in sparx5_port_open()
182ef20f0f1c sfc: fix potential memleak in __ef100_hard_start_xmit()
2da022fac96d net: wwan: iosm: use ACPI_FREE() but not kfree() in ipc_pcie_read_bios_cfg()
a48b345b87f9 xfrm: Fix ignored return value in xfrm6_init()
19989e163595 xfrm: Fix oops in __xfrm_state_delete()
46d450067fc0 tipc: check skb_linearize() return value in tipc_disc_rcv()
33fb115a76ae tipc: add an extra conn_get in tipc_conn_alloc
4ae907c45fca tipc: set con sock in tipc_conn_alloc
ef866d9ea922 net/mlx5: Fix handling of entry refcount when command is not issued to FW
3101318939f5 net/mlx5: Fix FW tracer timestamp calculation
1eaabb5bbbb6 net/mlx5: Do not query pci info while pci disabled
8180099b2aea netfilter: ipset: regression in ip_set_hash_ip.c
448b6273706c Drivers: hv: vmbus: fix possible memory leak in vmbus_device_register()
082c31cb99d8 Drivers: hv: vmbus: fix double free in the error path of vmbus_add_channel_work()
7fdd9daa5b12 macsec: Fix invalid error code set
e8fb93a0792c nfp: add port from netdev validation for EEPROM access
e44e424ed95f nfp: fill splittable of devlink_port_attrs correctly
527046c13815 net: pch_gbe: fix pci device refcount leak while module exiting
f77c84dd5b28 octeontx2-af: debugsfs: fix pci device refcount leak
cd581ffd8dda net/qla3xxx: fix potential memleak in ql3xxx_send()
a8976074e2cb net: mvpp2: fix possible invalid pointer dereference
3a4cc56cd17d net/mlx4: Check retval of mlx4_bitmap_init
c368220e1780 net: ethernet: mtk_eth_soc: fix error handling in mtk_open()
d9729437b28f ARM: dts: imx6q-prti6q: Fix ref/tcxo-clock-frequency properties
1c0b6a97c478 ARM: mxs: fix memory leak in mxs_machine_init()
ecff08f3c469 iavf: Fix race condition between iavf_shutdown and iavf_remove
31147d4e907c iavf: Do not restart Tx queues after reset task failure
232942b26c54 iavf: Fix a crash during reset task
0600615d010f netfilter: nf_tables: do not set up extensions for end interval
60387731e69f netfilter: conntrack: Fix data-races around ct mark
ee3ccd1abbe1 9p/fd: fix issue of list_del corruption in p9_fd_cancel()
131c2eeabc72 net: pch_gbe: fix potential memleak in pch_gbe_tx_queue()
f58df483ff37 nfc/nci: fix race with opening and closing
da22d7410afd net: dsa: sja1105: disallow C45 transactions on the BASE-TX MDIO bus
38fe0988bd51 rxrpc: Fix race between conn bundle lookup and bundle removal [ZDI-CAN-15975]
d92151b4659b rxrpc: Use refcount_t rather than atomic_t
3c33e41fa5b3 rxrpc: Allow list of in-use local UDP endpoints to be viewed in /proc
46cefa268958 net: liquidio: simplify if expression
95500ee0b3bd selftests: mptcp: fix mibit vs mbit mix up
f8c4da198eed selftests: mptcp: more stable simult_flows tests
1c0efab08c9b ARM: dts: at91: sam9g20ek: enable udc vbus gpio pinctrl
ade662f3f242 tee: optee: fix possible memory leak in optee_register_device()
d1dd119134ba bus: sunxi-rsb: Support atomic transfers
b1ed61e7066b bus: sunxi-rsb: Remove the shutdown callback
61a41d1abc7c regulator: core: fix UAF in destroy_regulator()
a85c0db3f5ad spi: dw-dma: decrease reference count in dw_spi_dma_init_mfld()
d9f9b3255b97 regulator: core: fix kobject release warning and memory leak in regulator_register()
bd419c7c68bd ASoC: max98373: Add checks for devm_kcalloc
f9bc4a18e7d5 scsi: storvsc: Fix handling of srb_status and capacity change events
c2153fe2d0c6 x86/hyperv: Restore VP assist page after cpu offlining/onlining
b2ddd7623712 ASoC: soc-pcm: Don't zero TDM masks in __soc_pcm_open()
dd62cb7e6fd4 ASoC: sgtl5000: Reset the CHIP_CLK_CTRL reg on remove
d80ffd4823b6 ASoC: hdac_hda: fix hda pcm buffer overflow issue
10bee7eb2a2f ARM: dts: am335x-pcm-953: Define fixed regulators in root node
8fe533c0f909 af_key: Fix send_acquire race with pfkey_register
0c69a4658e94 xfrm: replay: Fix ESN wrap around for GSO
ecc6ce4fdf0d xfrm: fix "disable_policy" on ipv4 early demux
5a792c1d4d77 MIPS: pic32: treat port as signed integer
144452b42143 RISC-V: vdso: Do not add missing symbols to version section in linker script
799970b8cc45 ALSA: usb-audio: add quirk to fix Hamedal C20 disconnect issue
38b09dc14f7c Revert "drm/amdgpu: Revert "drm/amdgpu: getting fan speed pwm for vega10 properly""
44d50fccf889 nvmet: fix memory leak in nvmet_subsys_attr_model_store_locked
5adc12d9e2b5 arm64/syscall: Include asm/ptrace.h in syscall_wrapper header.
1340f02773ae block, bfq: fix null pointer dereference in bfq_bio_bfqg()
86d4dca4a6ae drm: panel-orientation-quirks: Add quirk for Acer Switch V 10 (SW5-017)
b90e6234f57e scsi: scsi_debug: Make the READ CAPACITY response compliant with ZBC
cdbba6a4de39 scsi: ibmvfc: Avoid path failures during live migration
6e8124a151bd platform/x86/intel/hid: Add some ACPI device IDs
32735e24f47a platform/x86/intel/pmt: Sapphire Rapids PMT errata fix
83a6823016f2 platform/x86: touchscreen_dmi: Add info for the RCA Cambio W101 v2 2-in-1
f707986a1414 platform/x86: ideapad-laptop: Disable touchpad_switch
5e38740ae545 Revert "net: macsec: report real_dev features when HW offloading is enabled"
26b72202ee26 selftests/bpf: Add verifier test for release_reference()
8395e3f98c4a spi: stm32: fix stm32_spi_prepare_mbr() that halves spi clk for every run
d04722f2809c wifi: ath11k: Fix QCN9074 firmware boot on x86
9cc96a20a92a wifi: mac80211: Fix ack frame idr leak when mesh has no route
86f90014e767 wifi: airo: do not assign -1 to unsigned char
f5558fbda022 audit: fix undefined behavior in bit shift for AUDIT_BIT
af5de982ffc9 riscv: dts: sifive unleashed: Add PWM controlled LEDs
ee34a19dbe2a wifi: mac80211_hwsim: fix debugfs attribute ps with rc table support
3513785dc13f wifi: mac80211: fix memory free error when registering wiphy fail
855485d31e2a ceph: fix NULL pointer dereference for req->r_session
729c9ad2940e ceph: Use kcalloc for allocating multiple elements
d276fb4a7eb8 binder: validate alloc->mm in ->mmap() handler
5277e3d633a5 x86/sgx: Add overflow check in sgx_validate_offset_length()
b5a838ba47f2 x86/sgx: Create utility to validate user provided offset and length
2f6e2de3a528 ceph: avoid putting the realm twice when decoding snaps fails
8bef55d7934d ceph: do not update snapshot context when there is no new snapshot
cdee3136c966 iio: pressure: ms5611: fixed value compensation bug
5d6696e79d94 iio: ms5611: Simplify IO callback parameters
f0ee88e83ce9 nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV7000
a61716cd2401 nvme-pci: disable write zeroes on various Kingston SSD
19b60f336317 nvme-pci: disable namespace identifiers for the MAXIO MAP1001
d537e1930640 nvme-pci: add NVME_QUIRK_BOGUS_NID for Micron Nitro
af03ce894c9c nvme: add a bogus subsystem NQN quirk for Micron MTFDKBA2T0TFH
c6803faa6a6d drm/display: Don't assume dual mode adaptors support i2c sub-addressing
d2284fe43c63 ata: libata-core: do not issue non-internal commands once EH is pending
e09583e83e4a ata: libata-scsi: simplify __ata_scsi_queuecmd()
a9059e338fc0 cifs: Fix connections leak when tlink setup failed
81d583baa5f1 cifs: support nested dfs links over reconnect
dbc0ea91be28 cifs: split out dfs code from cifs_reconnect()
b3ce844d234f cifs: introduce new helper for cifs_reconnect()
2ea600b598dd sctp: clear out_curr if all frag chunks of current msg are pruned
1f9f346fbb78 sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent
e8915faa9f41 tty: serial: fsl_lpuart: don't break the on-going transfer when global reset
bd19013935af serial: fsl_lpuart: Fill in rs485_supported
87c81c19cda1 serial: Add rs485_supported to uart_port
c08f4ea79f7a ASoC: fsl_asrc fsl_esai fsl_sai: allow CONFIG_PM=N
d1e4288d2a63 ASoC: fsl_sai: use local device pointer
71e496bd3382 Linux 5.15.80
b63ddb3ba61e ntfs: check overflow when iterating ATTR_RECORDs
ab6a1bb17e3c ntfs: fix out-of-bounds read in ntfs_attr_find()
5330c423b862 ntfs: fix use-after-free in ntfs_attr_find()
43bbadb7e463 net/9p: use a dedicated spinlock for trans_fd
9357fca9dad7 mm: fs: initialize fsdata passed to write_begin/write_end interface
b334ab4c3347 wifi: wext: use flex array destination for memcpy()
0e07032b4b47 9p/trans_fd: always use O_NONBLOCK read/write
7c7b7476b56e gfs2: Switch from strlcpy to strscpy
28275a7c84d2 gfs2: Check sb_bsize_shift after reading superblock
a4f1a01b2e81 9p: trans_fd/p9_conn_cancel: drop client lock earlier
f7b0e95071bb kcm: close race conditions on sk_receive_queue
27d706b0d394 kcm: avoid potential race in kcm_tx_work
b49026d9c86f tcp: cdg: allow tcp_cdg_release() to be called multiple times
e41cbf98df22 macvlan: enforce a consistent minimal mtu
d5f7f6e63fed Input: i8042 - fix leaking of platform device on module removal
c49cc2c059b5 kprobes: Skip clearing aggrprobe's post_handler in kprobe-on-ftrace case
71beab7119d0 scsi: scsi_debug: Fix possible UAF in sdebug_add_host_helper()
a636772988ba scsi: target: tcm_loop: Fix possible name leak in tcm_loop_setup_hba_bus()
cb7893c85ea8 net: use struct_group to copy ip/ipv6 header addresses
9b8c0c88f414 tracing: Fix warning on variable 'struct trace_array'
73cf0ff9a393 ring-buffer: Include dropped pages in counting dirty patches
35c60b4e8ca7 perf: Improve missing SIGTRAP checking
2ac6276864de serial: 8250_lpss: Use 16B DMA burst with Elkhart Lake
b1a27b2aad93 nvme: ensure subsystem reset is single threaded
bccece3c3331 nvme: restrict management ioctls to admin
8cddb0d96b9c perf/x86/intel/pt: Fix sampling using single range output
8e2f33c59837 misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram()
9a72a46cb01d docs: update mediator contact information in CoC doc
a99a547658e5 mmc: sdhci-pci: Fix possible memory leak caused by missing pci_dev_put()
4a1b6f7839d3 mmc: sdhci-pci-o2micro: fix card detect fail issue caused by CD# debounce timeout
fd285d421563 mmc: core: properly select voltage range without power cycle
8a9bae5f1b53 firmware: coreboot: Register bus in module init
052d0e79efe5 iommu/vt-d: Set SRE bit only when hardware has SRS cap
c31a792a825a iommu/vt-d: Preset Access bit for IOVA in FL non-leaf paging entries
11edbdee4399 scsi: zfcp: Fix double free of FSF request when qdio send fails
fdf87b5b3087 net: phy: marvell: add sleep time after enabling the loopback bit
9648d760edf4 maccess: Fix writing offset in case of fault in strncpy_from_kernel_nofault()
fdd57c20d440 Input: iforce - invert valid length check when fetching device IDs
0cafb719bed5 serial: 8250_lpss: Configure DMA also w/o DMA filter
59f6596697f1 serial: 8250: Flush DMA Rx on RLSI
118b52c2ae08 serial: 8250: Fall back to non-DMA Rx if IIR_RDI occurs
6ffce7a92ef5 dm ioctl: fix misbehavior if list_versions races with module loading
2b104973f7fd iio: pressure: ms5611: changed hardcoded SPI speed to value limited
1678d4abb2dc iio: adc: mp2629: fix potential array out of bound access
bd22c232ead9 iio: adc: mp2629: fix wrong comparison of channel
656f67061366 iio: trigger: sysfs: fix possible memory leak in iio_sysfs_trig_init()
1bf8c0aff8fb iio: adc: at91_adc: fix possible memory leak in at91_adc_allocate_trigger()
afc0aea70261 usb: typec: mux: Enter safe mode only when pins need to be reconfigured
8236628a549d usb: cdns3: host: fix endless superspeed hub port reset
ead83b0db81f usb: chipidea: fix deadlock in ci_otg_del_timer
cc9e6d8c55c9 usb: add NO_LPM quirk for Realforce 87U Keyboard
70eca1d261b2 USB: serial: option: add Fibocom FM160 0x0111 composition
1b6a54885c40 USB: serial: option: add u-blox LARA-L6 modem
b0467d0059bc USB: serial: option: add u-blox LARA-R6 00B modem
95688a8a5735 USB: serial: option: remove old LARA-R6 PID
53dee78ea382 USB: serial: option: add Sierra Wireless EM9191
e7764e88e6c4 USB: bcma: Make GPIO explicitly optional
a190a83db284 speakup: fix a segfault caused by switching consoles
b3c6edbee48e slimbus: stream: correct presence rate frequencies
6b35ac831555 slimbus: qcom-ngd: Fix build error when CONFIG_SLIM_QCOM_NGD_CTRL=y && CONFIG_QCOM_RPROC_COMMON=m
0f847462fea1 Revert "usb: dwc3: disable USB core PHY management"
23ad214a8665 ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book Pro 360
a36b505749c6 ALSA: hda/realtek: fix speakers for Samsung Galaxy Book Pro
02b94885b2fd ALSA: usb-audio: Drop snd_BUG_ON() from snd_usbmidi_output_open()
7176d6f3adb9 drm/amd/display: Add HUBP surface flip interrupt handler
e57daa750369 tracing: kprobe: Fix potential null-ptr-deref on trace_array in kprobe_event_gen_test_exit()
3a41c0f2a5c3 tracing: kprobe: Fix potential null-ptr-deref on trace_event_file in kprobe_event_gen_test_exit()
7291dec4f2d1 tracing: Fix race where eprobes can be called before the event
6517b97134f7 tracing: Fix wild-memory-access in register_synth_event()
07ba4f0603ab tracing: Fix memory leak in test_gen_synth_cmd() and test_empty_synth_event()
8b318f3032bf tracing/ring-buffer: Have polling block on watermark
2c21ee020ce4 tracing: Fix memory leak in tracing_read_pipe()
00f74b1a98a2 ring_buffer: Do not deactivate non-existant pages
1bea037a1abb ftrace: Fix null pointer dereference in ftrace_add_mod()
fadfcf39fbcd ftrace: Optimize the allocation for mcount entries
5c5f2642898f ftrace: Fix the possible incorrect kernel message
2ab249416244 cifs: add check for returning value of SMB2_set_info_init
5783abda58d6 net: thunderbolt: Fix error handling in tbnet_init()
80e590aeb132 net: microchip: sparx5: Fix potential null-ptr-deref in sparx_stats_init() and sparx5_start()
4a55aec1425f cifs: Fix wrong return value checking when GETFLAGS
c8baf1fc248b net/x25: Fix skb leak in x25_lapb_receive_frame()
af4b57fa6bd0 net: ag71xx: call phylink_disconnect_phy if ag71xx_hw_enable() fail in ag71xx_open()
61404a182eb5 cifs: add check for returning value of SMB2_close_init
d3233f4bf3dd platform/surface: aggregator: Do not check for repeated unsequenced packets
69691714035b platform/x86/intel: pmc: Don't unconditionally attach Intel PMC when virtualized
7d93417d5964 drbd: use after free in drbd_create_device()
fc16a2c81a3e bridge: switchdev: Fix memory leaks when changing VLAN protocol
3d90a668c4bc net: hns3: fix setting incorrect phy link ksettings for firmware in resetting process
3f7b2ef8fe92 net: ena: Fix error handling in ena_init()
2540eea1bdc3 net: ionic: Fix error handling in ionic_init_module()
c08c13cb13fa xen/pcpu: fix possible memory leak in register_pcpu()
97009f07f217 net: dsa: make dsa_master_ioctl() see through port_hwtstamp_get() shims
88da008e5e2f net: mhi: Fix memory leak in mhi_net_dellink()
8f839715d032 bnxt_en: Remove debugfs when pci_register_driver failed
b88713d92bd3 net: caif: fix double disconnect client in chnl_net_open()
6d2403416089 net: macvlan: Use built-in RCU list checking
596230471da3 mISDN: fix misuse of put_device() in mISDN_register_device()
07a6a8cf1712 net: liquidio: release resources when liquidio driver open failed
19feb6cf4136 soc: imx8m: Enable OCOTP clock before reading the register
8c54d706d829 net: stmmac: ensure tx function is not running in stmmac_xdp_release()
6219f46c2b9d net: hinic: Fix error handling in hinic_module_init()
7a05e3929668 mISDN: fix possible memory leak in mISDN_dsp_element_register()
0ee6455c9cfa net: bgmac: Drop free_netdev() from bgmac_enet_remove()
7ff4fa179e4e bpf: Initialize same number of free nodes for each pcpu_freelist
12f178cf05f3 MIPS: Loongson64: Add WARN_ON on kexec related kmalloc failed
a4d6e024bea2 MIPS: fix duplicate definitions for exported symbols
44142b652a28 nfp: change eeprom length to max length enumerators
f23058dc2398 ata: libata-transport: fix error handling in ata_tdev_add()
67b219314628 ata: libata-transport: fix error handling in ata_tlink_add()
e7bb1b7a7bf2 ata: libata-transport: fix error handling in ata_tport_add()
377ff82c33c0 ata: libata-transport: fix double ata_host_put() in ata_tport_add()
494df0b0efe8 arm64: dts: imx8mn: Fix NAND controller size-cells
7178d568f7cc arm64: dts: imx8mm: Fix NAND controller size-cells
8ccf18c82a0a ARM: dts: imx7: Fix NAND controller size-cells
e884a6c2d49a drm: Fix potential null-ptr-deref in drm_vblank_destroy_worker()
07e56de8766f drm/drv: Fix potential memory leak in drm_dev_init()
45c300613bee drm/panel: simple: set bpc field for logic technologies displays
779f3f9e0cdc drm/vc4: kms: Fix IS_ERR() vs NULL check for vc4_kms
97e5b508e961 pinctrl: devicetree: fix null pointer dereferencing in pinctrl_dt_to_map
9a77b8557fdb parport_pc: Avoid FIFO port location truncation
5d03c2911c52 siox: fix possible memory leak in siox_device_add()
530e987a0226 arm64: Fix bit-shifting UB in the MIDR_CPU_MODEL() macro
d4944497827a bpf: Fix memory leaks in __check_func_call
25521fd2e217 block: sed-opal: kmalloc the cmd/resp buffers
2f21d653c648 scsi: scsi_transport_sas: Fix error handling in sas_phy_add()
7cd28bc410d2 pinctrl: rockchip: list all pins in a possible mux route for PX30
ab79b8dbe21e ASoC: soc-utils: Remove __exit for snd_soc_util_exit()
eaa8edd86514 bpf, test_run: Fix alignment problem in bpf_prog_test_run_skb()
33cabe04d2c8 tty: n_gsm: fix sleep-in-atomic-context bug in gsm_control_send
ae22294e213a serial: imx: Add missing .thaw_noirq hook
26db1cd5191e serial: 8250: omap: Flush PM QOS work on remove
e0db709a58bd serial: 8250: omap: Fix unpaired pm_runtime_put_sync() in omap8250_remove()
83b6d4d6da67 serial: 8250_omap: remove wait loop from Errata i202 workaround
76db05ab7092 serial: 8250: omap: Fix missing PM runtime calls for omap8250_set_mctrl()
2aee616a6b11 ARM: at91: pm: avoid soft resetting AC DLL
188546c78006 ASoC: tas2764: Fix set_tdm_slot in case of single slot
5782896daf65 ASoC: tas2770: Fix set_tdm_slot in case of single slot
34eee4189bce ASoC: core: Fix use-after-free in snd_soc_exit()
aa6f8aecbbf2 ARM: dts: at91: sama7g5: fix signal name of pin PB2
487fff700f5f spi: stm32: Print summary 'callbacks suppressed' message
2cec2f65c1e7 arm64: dts: qcom: sm8350-hdk: Specify which LDO modes are allowed
44dbe66bb3ea arm64: dts: qcom: sm8250-xperia-edo: Specify which LDO modes are allowed
8b2eae7def2b arm64: dts: qcom: sm8150-xperia-kumano: Specify which LDO modes are allowed
c8e76eeea77c arm64: dts: qcom: sa8155p-adp: Specify which LDO modes are allowed
30571f28bb35 hugetlbfs: don't delete error page from pagecache
14ddbb83c342 KVM: x86/pmu: Do not speculatively query Intel GP PMCs that don't exist yet
a9b964ed7cf9 spi: intel: Use correct mask for flash and protected regions
f4eb68642ed3 mtd: spi-nor: intel-spi: Disable write protection only if asked
156d0c823c59 ASoC: codecs: jz4725b: Fix spelling mistake "Sourc" -> "Source", "Routee" -> "Route"
5907ff9f2c8f x86/cpu: Add several Intel server CPU model numbers
41e37d04e397 Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm
b02a025dd188 btrfs: remove pointless and double ulist frees in error paths of qgroup tests
1c366c206ff2 drm/imx: imx-tve: Fix return type of imx_tve_connector_mode_valid
1c8ded1b3879 i2c: i801: add lis3lv02d's I2C address for Vostro 5568
b432581f19a0 i2c: tegra: Allocate DMA memory for DMA engine
7b0ae4c7b918 firmware: arm_scmi: Cleanup the core driver removal callback
1a8a2fef273d ACPI: x86: Add another system to quirk list for forcing StorageD3Enable
8a03a4a5cf6d NFSv4: Retry LOCK on OLD_STATEID during delegation return
49ca2227c47b btrfs: raid56: properly handle the error when unable to find the missing stripe
0f7bd3a2dfe1 RDMA/efa: Add EFA 0xefa2 PCI ID
a42d4363e78f ACPI: scan: Add LATT2021 to acpi_ignore_dep_ids[]
004decd41b32 drm/amd/display: Remove wrong pipe control lock
7779efbb99bf ASoC: rt1308-sdw: add the default value of some registers
ef1e4ed85814 selftests/intel_pstate: fix build for ARCH=x86_64
dfd3cc1ef3e2 selftests/futex: fix build for clang
648467236c12 ASoC: Intel: sof_sdw: add quirk variant for LAPBC710 NUC15
64ee750c29da ASoC: codecs: jz4725b: fix capture selector naming
150b74cd0625 ASoC: codecs: jz4725b: use right control for Capture Volume
5352d8b31572 ASoC: codecs: jz4725b: fix reported volume for Master ctl
85134577a7f2 ASoC: codecs: jz4725b: add missed Line In power control bit
5e61dffb16dc spi: intel: Fix the offset to get the 64K erase opcode
c697cb2e6663 ASoC: wm8962: Add an event handler for TEMP_HP and TEMP_SPK
569085124d75 ASoC: rt1019: Fix the TDM settings
4160a515c75b ASoC: mt6660: Keep the pm_runtime enables before component stuff in mt6660_i2c_probe
2963ec4535a1 ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe"
30a2f9479c21 ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe"
3bf6da38a292 ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe"
94fa250ea55c mm: shmem: don't truncate page if memory failure happens
003fa195911d mm: hwpoison: handle non-anonymous THP correctly
a62b1bc603a1 mm: hwpoison: refactor refcount check handling
3df0eeae4d9a Linux 5.15.79
599b24eedf2a x86/cpu: Restore AMD's DE_CFG MSR after resume
9132fa043f96 net: tun: call napi_schedule_prep() to ensure we own a napi
1dea25e25acd drm/amdkfd: Migrate in CPU page fault use current mm
a1c303fbd4dd marvell: octeontx2: build error: unknown type name 'u64'
d948b228343a dmaengine: at_hdmac: Check return code of dma_async_device_register
c556ecf32a07 dmaengine: at_hdmac: Fix impossible condition
8a941ff34e53 dmaengine: at_hdmac: Don't allow CPU to reorder channel enable
53831f7a13c3 dmaengine: at_hdmac: Fix completion of unissued descriptor in case of errors
14f5462e4a00 dmaengine: at_hdmac: Fix descriptor handling when issuing it to hardware
5482403228be dmaengine: at_hdmac: Fix concurrency over the active list
82ca19414faa dmaengine: at_hdmac: Free the memset buf without holding the chan lock
8fd36e069d65 dmaengine: at_hdmac: Fix concurrency over descriptor
1ee012d452b1 dmaengine: at_hdmac: Fix concurrency problems by removing atc_complete_all()
90c1b07406f0 dmaengine: at_hdmac: Protect atchan->status with the channel lock
b5ee1fe06ad7 dmaengine: at_hdmac: Do not call the complete callback on device_terminate_all
9bbf5df0fc8c dmaengine: at_hdmac: Fix premature completion of desc in issue_pending
f7d1aaa90319 dmaengine: at_hdmac: Start transfer for cyclic channels in issue_pending
e9777b4efcce dmaengine: at_hdmac: Don't start transactions at tx_submit level
4e28674a0ecd dmaengine: at_hdmac: Fix at_lli struct definition
49eba53137f5 cert host tools: Stop complaining about deprecated OpenSSL functions
69e86c6268d5 can: j1939: j1939_send_one(): fix missing CAN header initialization
81fc8f90b885 mm/shmem: use page_mapping() to detect page cache for uffd continue
e91451af11f9 mm/memremap.c: map FS_DAX device memory as decrypted
48998c1773a4 mm/damon/dbgfs: check if rm_contexts input is for a real context
c736ed854160 udf: Fix a slab-out-of-bounds write bug in udf_find_entry()
2e87eddf5736 mms: sdhci-esdhc-imx: Fix SDHCI_RESET_ALL for CQHCI
91c38504e589 btrfs: zoned: initialize device's zone info for seeding
432c30ba3f56 btrfs: selftests: fix wrong error check in btrfs_free_dummy_root()
c9fe4719c662 btrfs: fix match incorrectly in dev_args_match_device
f96fd3693631 wifi: ath11k: avoid deadlock during regulatory update in ath11k_regd_update()
8e2b576caf91 platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi
cb3ab0e1e074 drm/amdgpu: disable BACO on special BEIGE_GOBY card
dc066a78500a drm/i915/dmabuf: fix sg_table handling in map_dma_buf
afbd1188382a nilfs2: fix use-after-free bug of ns_writer on remount
abc082aac0d9 nilfs2: fix deadlock in nilfs_count_free_blocks()
589da2288197 ata: libata-scsi: fix SYNCHRONIZE CACHE (16) command failure
51ae4579a5d5 vmlinux.lds.h: Fix placement of '.data..decrypted' section
1f8e08ab3269 ALSA: usb-audio: Add DSD support for Accuphase DAC-60
c2451f62b2bd ALSA: usb-audio: Add quirk entry for M-Audio Micro
031d1480a0f4 ALSA: usb-audio: Yet more regression for for the delayed card registration
574f51e4aa40 ALSA: hda/realtek: Add Positivo C6300 model quirk
7140d7aaf93d ALSA: hda: fix potential memleak in 'add_widget_node'
f6d7a487aabd ALSA: hda/ca0132: add quirk for EVGA Z390 DARK
1ccd55b3901b ALSA: hda/hdmi - enable runtime pm for more AMD display audio
29100c674208 mmc: sdhci-esdhc-imx: use the correct host caps for MMC_CAP_8_BIT_DATA
3dce99e2eb06 mmc: sdhci-tegra: Fix SDHCI_RESET_ALL for CQHCI
9d6bd33e6aeb mmc: sdhci_am654: Fix SDHCI_RESET_ALL for CQHCI
ad01f16ca90c mmc: sdhci-of-arasan: Fix SDHCI_RESET_ALL for CQHCI
1aa78c1d013c mmc: cqhci: Provide helper for resetting both SDHCI and CQHCI
c198524a99cb MIPS: jump_label: Fix compat branch range check
9713ceffa40a arm64: efi: Fix handling of misaligned runtime regions and drop warning
518e49f0590d riscv: fix reserved memory setup
d07c3d7491b4 riscv: vdso: fix build with llvm
cc36c7fa5d93 riscv: process: fix kernel info leakage
a8d67367ab33 net: macvlan: fix memory leaks of macvlan_common_newlink
7b194dd32b13 ethernet: tundra: free irq when alloc ring failed in tsi108_open()
7de10342fe14 net: mv643xx_eth: disable napi when init rxq or txq failed in mv643xx_eth_open()
88e1dd2d9291 ethernet: s2io: disable napi when start nic failed in s2io_card_up()
3652f1f8d3ea net: atlantic: macsec: clear encryption keys from the stack
fca3b0a1fd3e net: phy: mscc: macsec: clear encryption keys when freeing a flow
60a0af8813fd stmmac: dwmac-loongson: fix missing of_node_put() while module exiting
ee4a9bd2c7f4 stmmac: dwmac-loongson: fix missing pci_disable_device() in loongson_dwmac_probe()
4a8770eebc39 stmmac: dwmac-loongson: fix missing pci_disable_msi() while module exiting
83196d8dc5a8 cxgb4vf: shut down the adapter when t4vf_update_port_info() failed in cxgb4vf_open()
49d8a6e24a34 mctp: Fix an error handling path in mctp_init()
29961d2332a5 stmmac: intel: Update PCH PTP clock rate from 200MHz to 204.8MHz
8604bebc5c32 stmmac: intel: Enable 2.5Gbps for Intel AlderLake-S
7dec6dae2b61 net: cxgb3_main: disable napi when bind qsets failed in cxgb_up()
960f9d30def3 net: cpsw: disable napi in cpsw_ndo_open()
1360778fdb6f net/mlx5e: E-Switch, Fix comparing termination table instance
f13e9ebd2925 net/mlx5: Allow async trigger completion execution on single CPU systems
48b73b46a5b0 net/mlx5: Bridge, verify LAG state when adding bond to bridge
13b1ea861e8a net: wwan: iosm: fix memory leak in ipc_pcie_read_bios_cfg
7e4dcacb4dd6 net: nixge: disable napi when enable interrupts failed in nixge_open()
409731df6310 net: marvell: prestera: fix memory leak in prestera_rxtx_switch_init()
77ff31cba9a6 netfilter: Cleanup nft_net->module_list from nf_tables_exit_net()
e62cb1c093d6 netfilter: nfnetlink: fix potential dead lock in nfnetlink_rcv_msg()
0bd20318da08 perf tools: Add the include/perf/ directory to .gitignore
a733671e388c perf stat: Fix printing os->prefix in CSV metrics output
c36e9e2c4aff drivers: net: xgene: disable napi when register irq failed in xgene_enet_open()
4689bd3a1b23 net: lapbether: fix issue of invalid opcode in lapbeth_open()
1dd27541aa2b dmaengine: ti: k3-udma-glue: fix memory leak when register device fail
992e966caf57 dmaengine: mv_xor_v2: Fix a resource leak in mv_xor_v2_remove()
9766af75ba5a dmaengine: pxa_dma: use platform_get_irq_optional
301caa06091a tipc: fix the msg->req tlv len check in tipc_nl_compat_name_table_dump_header
6a264203dbdb net: broadcom: Fix BCMGENET Kconfig
e7871b9a21ae net: stmmac: dwmac-meson8b: fix meson8b_devm_clk_prepare_enable()
261178a1c262 can: af_can: fix NULL pointer dereference in can_rx_register()
2acb2779b147 ipv6: addrlabel: fix infoleak when sending struct ifaddrlblmsg to network
13ecaa6832fb tcp: prohibit TCP_REPAIR_OPTIONS if data was already sent
bc79cb9fb006 drm/vc4: Fix missing platform_unregister_drivers() call in vc4_drm_register()
2845bc9070ce net: wwan: mhi: fix memory leak in mhi_mbim_dellink
2ce2348c2858 net: wwan: iosm: fix memory leak in ipc_wwan_dellink
7b6bc50f65e9 hamradio: fix issue of dev reference count leakage in bpq_device_event()
f59adebb8c28 net: lapbether: fix issue of dev reference count leakage in lapbeth_device_event()
119407dc329a KVM: s390: pv: don't allow userspace to set the clock under PV
500bcd3a99ea phy: ralink: mt7621-pci: add sentinel to quirks table
151dc8087b56 capabilities: fix undefined behavior in bit shift for CAP_TO_MASK
435c7ddfd510 net: fman: Unregister ethernet device on removal
3a504d6d96ea bnxt_en: fix potentially incorrect return value for ndo_rx_flow_steer
ac257c43fa61 bnxt_en: Fix possible crash in bnxt_hwrm_set_coal()
d7569302a7a5 net: tun: Fix memory leaks of napi_get_frags
430d1f4964dd octeontx2-pf: NIX TX overwrites SQ_CTX_HW_S[SQ_INT]
ec0db81883b4 octeontx2-pf: Use hardware register for CQE count
b89a0d8859ae macsec: clear encryption keys from the stack after setting up offload
eeba7f07a0cb macsec: fix detection of RXSCs when toggling offloading
3070a880eb03 macsec: fix secy->n_rx_sc accounting
e957555a3694 macsec: delete new rxsc when offload fails
ad25a115f508 net: gso: fix panic on frag_list with mixed head alloc types
466ce46f251d bpf: Fix wrong reg type conversion in release_reference()
35d8130f2ad0 bpf: Add helper macro bpf_for_each_reg_in_vstate
61274498fbf8 bpf, sock_map: Move cancel_work_sync() out of sock lock
32b5dd03beeb bpf: Fix sockmap calling sleepable function in teardown path
e9915581899c bpf, sockmap: Fix sk->sk_forward_alloc warn_on in sk_stream_kill_queues
5ad95d71344b HID: hyperv: fix possible memory leak in mousevsc_probe()
6dcdd1b68b7f bpftool: Fix NULL pointer dereference when pin {PROG, MAP, LINK} without FILE
2fc902245c82 wifi: mac80211: Set TWT Information Frame Disabled bit as 1
95adbd2ac8de bpf, sockmap: Fix the sk->sk_forward_alloc warning of sk_stream_kill_queues
06615967d488 bpf, verifier: Fix memory leak in array reallocation for stack state
4335a82c4f7b soundwire: qcom: check for outanding writes before doing a read
ae4dad2e5374 soundwire: qcom: reinit broadcast completion
38c9fa2cc6bf wifi: cfg80211: fix memory leak in query_regdb_file()
2c6ba0a7872b wifi: cfg80211: silence a sparse RCU warning
921738c280ab phy: stm32: fix an error code in probe
fa722006f762 hwspinlock: qcom: correct MMIO max register for newer SoCs
3c1bb6187e56 drm/amdkfd: Fix NULL pointer dereference in svm_migrate_to_ram()
b1f852277171 drm/amdkfd: handle CPU fault on COW mapping
36770c045aba drm/amdkfd: avoid recursive lock in migrations back to RAM
93a5de7e8843 fuse: fix readdir cache race
1920cf94545a thunderbolt: Add DP OUT resource when DP tunnel is discovered
47dbf2496990 thunderbolt: Tear down existing tunnels when resuming from hibernate
(From OE-Core rev: ee40eebc70d1d09c758eeba2ff6de969fb717a0b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/5.15:
da5513f30187 libbpf: Fix build warning on ref_ctr_off
(From OE-Core rev: eb75d561256c794baf6c89c1975967343145da87)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/5.15:
4c5a089621a8 perf python: Account for multiple words in CC
(From OE-Core rev: 1cf78a856beb42a2d68e6c49bfdbc33fea68ebb5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
6.1 is a LTS kernel, and our next reference kernel. Some new
features like rust support are not directly used, but will
be available to start testing.
(From OE-Core rev: 1a450283c85f7bbadcbbb8973d3c3d15a712abb3)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/5.15:
1c5699ee85d4 fs: move S_ISGID stripping into the vfs_*() helpers
838f5d0701d8 fs: add mode_strip_sgid() helper
d97172683641 squashfs: provide backing_dev_info in order to disable read-ahead
(From OE-Core rev: 474ddb758dd1b327540e48ccfe1500fb4231f30b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/5.19:
3326dff489c8 tools: Remove some options from CLANG_CROSS_FLAGS
5b92f7def854 libbpf: Fix build warning on ref_ctr_off
b7cd8e00afcd perf python: Account for multiple words in CC
(From OE-Core rev: b734bd73763548e3991803c03b8bcc3b4bea6432)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
6.1 is a LTS and one of the reference kernels for our next
relase. Making it a logical update point for our libc-headers.
We can drop one of our patche as the gcc-goto.sh is no longer
used, and hence we won't have race conditions like we previously
had.
(From OE-Core rev: cb6d0cac29d3f8eb6d13722ab816c93210762e60)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Not only break when not in a loop is undefined, different
shells do different things when they see it.
(From OE-Core rev: 11c034b427c4d44f4013fa4ddf7c3d1264bab219)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Drop all CVE backports.
License-Update: formatting
(From OE-Core rev: 9a255a3b114686b04bf54560c7485552ec3b438c)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: e2a7d23f0ad6db8939f9320eb86b6d67f0e52638)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: cab25ecb7a67484bea3915d954fb7e9c469a281d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
This addresses new curl's deprecation warnings treated as failures.
(From OE-Core rev: 7a12834052fc622eb22eab2dc77fe717a4263ecf)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
It is both unmaintained and not needed by anything in core or meta-oe.
(From OE-Core rev: 7f8ceb0f38eb6795a5e135f5c4b0461d06d733b6)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
This has been the case since
https://github.com/python-jsonschema/jsonschema/commit/622c7b276e01d24b5569ab27cfefb692ae91012e
(From OE-Core rev: 547d646540ebb9a4d3dbb310518e2200a14e6ebc)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 1e7ebdf4e324ec6719c926fd27717f2198db937d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 7396d5893fdde7a94a46b9b221650a39343ec54d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 120a53fc7b38868af9179412b3ce39ea407c9b04)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: bc8a199c6e23a3f4819e966de8e0a28e861cc631)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: b14c6a933ce2152714186986414e4e6f8ae50fc6)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: bdd2a88cce2201cc58aca74dd638b92808dca3ac)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: a41af7c8aead2f9f27a47f5e853b471e584b44b8)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: f01c05c7b0d06817e826dda9ba20a0ea5fd6f508)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: a1c41949b8d83e80fd96d73212ca7554053703ac)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 74a0f6408b46b195c3c248bbabb4b2ba5954885f)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 152b8602515e56be823c9e2b0d15e8d1cdd3a8f1)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: d9b7a8e631614505662c728609634afe21d22026)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: a65eeef9e068c40c9460c6ee4b85cae64c535109)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 99361cda25e5858f5edbcb6a275258670b678ee1)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 0d045b41961cecee17aa4611e33c7666063c942f)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 4fa8d85812ae86c6e2e86fc34909bbbcfa82179b)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 6b544ba8e80bee83030976a98e47e0a66a216ec9)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 8ba6f843823ec9ac52b46854004e3f9e26575f80)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
License-Update: jquery/underscore are no longer bundled
(From OE-Core rev: baa3d290c16510e10a608ea2689ebf4c14f449a5)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 27fad5ae2fff3f982aa30d19e5ad4fb4dbeaec9a)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: f303922e62f61a91d21f360736d073cbb46c5045)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 9acad520efe76368cf924cfa52c972e7319611b0)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 91c35d5311aaed92bc48766da9bdedc9fa5a4044)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 211745a9e3c032b364c7b484df698c8266ec03f9)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: fd564d24a4bb43ba1757254408b0909b981e9459)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: b18552f69a2eb8900981a10ba386dc4f862b29c3)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
License-Update: formatting
(From OE-Core rev: 60663d6151e40ad9c6cc453c3138d0b7cec5a48d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
License-Update: copyright years
(From OE-Core rev: 4b4ade81a82a0a69c737da969db8cb6a7824bd76)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|