| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When working on 6.3+ kernel support powerpc started to fail when
doing on target kerne module builds, and in some cases when building
the kernel itself.
This was due to crtsavres requiring objtool to build, which was
missing required development headers.
So in a similar manner to x86, we add elfutils as an arch specific
dependency in these recipes.
(From OE-Core rev: 14b815b0beb6edc14b4fcc016201ade967875e28)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From OE-Core rev: 150ac6445301b944b05ea6b9952ebb7d41707c42)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When building a module on target, we use the native compiler
(always "gcc") versus the same compiler, but named in a cross
compiler manner, for the kernel build.
The kernel captures the compiler string in several places,
some of which we are already fixing, but others we are not
(as they don't cause issues).
But when building an on target module, the main kernel Makefile
compares compiler strings and outputs a warning similar to:
warning: the compiler differs from the one used to build the kernel
The kernel was built by: x86_64-poky-linux-gcc (GCC) 11.3.0
You are using: gcc (GCC) 11.3.0
We drop the cross compilation prefix from the captured compiler
string, and we avoid the warning.
RP: tweaked one sed expression to fix quoting issue with 5.15
(From OE-Core rev: 70419f281a4571d01975bd79a47a6ed7ae70b1ae)
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:
8020ae3c051d Linux 5.15.103
10a72c677bce Makefile: use -gdwarf-{4|5} for assembler for DEBUG_INFO_DWARF{4|5}
6e7bc50f97c9 KVM: VMX: Fix crash due to uninitialized current_vmcs
61e5087231f3 KVM: VMX: Introduce vmx_msr_bitmap_l01_changed() helper
1f47cba9364f KVM: nVMX: Don't use Enlightened MSR Bitmap for L3
2153dd644ce4 fs: hold writers when changing mount's idmapping
8c3be6925a92 UML: define RUNTIME_DISCARD_EXIT
f616fa79d536 xfs: remove xfs_setattr_time() declaration
5588657f418c KVM: fix memoryleak in kvm_init()
4441a9009193 tools bpftool: Fix compilation error with new binutils
1c27fab24333 tools bpf_jit_disasm: Fix compilation error with new binutils
97f005c0bdba tools perf: Fix compilation error with new binutils
451c9d7b1616 tools include: add dis-asm-compat.h to handle version differences
51b99dc38c1a tools build: Add feature test for init_disassemble_info API changes
381492ef0c51 sh: define RUNTIME_DISCARD_EXIT
1e49bb9ba912 s390: define RUNTIME_DISCARD_EXIT to fix link error with GNU ld < 2.36
d517faf3db23 powerpc/vmlinux.lds: Don't discard .rela* for relocatable builds
4e6708a0f36e powerpc/vmlinux.lds: Define RUNTIME_DISCARD_EXIT
0bfde8c9bb27 arch: fix broken BuildID for arm64 and riscv
560a2744cbbf ext4: block range must be validated before use in ext4_mb_clear_bb()
270422f3e183 ext4: add strict range checks while freeing blocks
2da16af37847 ext4: add ext4_sb_block_valid() refactored out of ext4_inode_block_valid()
09546886a0ea ext4: refactor ext4_free_blocks() to pull out ext4_mb_clear_bb()
48302ee67dd7 filelocks: use mount idmapping for setlease permission check
513572bb89e8 media: rc: gpio-ir-recv: add remove function
5f328c9d32b1 media: ov5640: Fix analogue gain control
4cb302546556 scripts: handle BrokenPipeError for python scripts
405ec99d1d25 PCI: Add SolidRun vendor ID
2c75e258adb9 macintosh: windfarm: Use unsigned type for 1-bit bitfields
6c6f956c9295 alpha: fix R_ALPHA_LITERAL reloc for large modules
adb939031af3 powerpc/kcsan: Exclude udelay to prevent recursive instrumentation
e3a62a35f903 powerpc/iommu: fix memory leak with using debugfs_lookup()
93aa548a339c MIPS: Fix a compilation issue
e69d841d143b fs: use consistent setgid checks in is_sxid()
78eecf2e5cd4 attr: use consistent sgid stripping checks
449badcf876d attr: add setattr_should_drop_sgid()
7e8a9b53141e fs: move should_remove_suid()
93395e1184ed attr: add in_group_or_capable()
0123712492f6 fs: move S_ISGID stripping into the vfs_*() helpers
9c3a620bbf0c fs: add mode_strip_sgid() helper
79821ab3284a xfs: set prealloc flag in xfs_alloc_file_space()
a881c1ef16f1 xfs: fallocate() should call file_modified()
f8937e4d1d46 xfs: remove XFS_PREALLOC_SYNC
95aab524e12e xfs: use setattr_copy to set vfs inode attributes
2115c14c93ec tpm/eventlog: Don't abort tpm_read_log on faulty ACPI address
b43cb0f08767 watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths
d15c9ae1c6d9 staging: rtl8723bs: Fix key-store index handling
7fa3bb1bcabe staging: rtl8723bs: fix placement of braces
962293f5443c Staging: rtl8723bs: Placing opening { braces in previous line
890e24564c0a staging: rtl8723bs: clean up comparsions to NULL
c513043e0afe iommu/amd: Add a length limitation for the ivrs_acpihid command-line parameter
0fd72f1d1b94 iommu/amd: Fix ill-formed ivrs_ioapic, ivrs_hpet and ivrs_acpihid options
2af17167804c iommu/amd: Add PCI segment support for ivrs_[ioapic/hpet/acpihid] commands
ce4bbb2aa9d8 nbd: use the correct block_device in nbd_bdev_reset
7889dfc19492 irqdomain: Fix mapping-creation race
a2bc806e95bd ext4: Fix deadlock during directory rename
07b0aba4adf0 RISC-V: Don't check text_mutex during stop_machine
d1b47f735f60 s390/ftrace: remove dead code
3a9418d2c93c riscv: Use READ_ONCE_NOCHECK in imprecise unwinding stack mode
f3969427fb06 af_unix: fix struct pid leaks in OOB support
a9f99eacf79f af_unix: Remove unnecessary brackets around CONFIG_AF_UNIX_OOB.
6a29d71ab421 net: dsa: mt7530: permit port 5 to work without port 6 on MT7621 SoC
ad7e40ee157b SUNRPC: Fix a server shutdown leak
64d4eb412761 octeontx2-af: Unlock contexts in the queue context cache in case of fault detection
03c1cc6f554d net/smc: fix fallback failed while sendmsg with fastopen
dafde1072202 platform: x86: MLX_PLATFORM: select REGMAP instead of depending on it
36bcbcaf01d8 netfilter: conntrack: adopt safer max chain length
a316da050d80 scsi: megaraid_sas: Update max supported LD IDs to 240
2adc29350a5b net: ethernet: mtk_eth_soc: fix RX data corruption issue
fe8787c1e4f6 net: phy: smsc: fix link up detection in forced irq mode
d83813f724ec net: phy: smsc: Cache interrupt mask
18ab31b8cd37 btf: fix resolving BTF_KIND_VAR after ARRAY, STRUCT, UNION, PTR
2662c5b1f0ef netfilter: tproxy: fix deadlock due to missing BH disable
bef8cf77e21c netfilter: ctnetlink: revert to dumping mark regardless of event type
20fd0607acbf bnxt_en: Avoid order-5 memory allocation for TPA data
98fa707a52a3 net: phylib: get rid of unnecessary locking
67431417617d net: stmmac: add to set device wake up flag when stmmac init phy
af5c333c84e5 drm/msm/dpu: fix len of sc7180 ctl blocks
4a476285f6d2 bpf, sockmap: Fix an infinite loop error when len is 0 in tcp_bpf_recvmsg_parser()
c813f7a31614 ice: copy last block omitted in ice_get_module_eeprom()
3f14457e1584 net: caif: Fix use-after-free in cfusbl_device_notify()
c2c71922c5e9 net: lan78xx: fix accessing the LAN7800's internal phy specific registers from the MAC driver
c026917887d1 perf stat: Fix counting when initial delay configured
fdecfb2603d0 selftests: nft_nat: ensuring the listening side is up before starting the client
91aceb3844d4 ila: do not generate empty messages in ila_xlat_nl_cmd_get_mapping()
a5a7f6e6e126 powerpc: dts: t1040rdb: fix compatible string for Rev A boards
4357bbb921fe nfc: fdp: add null check of devm_kmalloc_array in fdp_nci_i2c_read_device_properties
04bfc5bcdfc0 bgmac: fix *initial* chip reset to support BCM5358
60530bfdb647 drm/msm/a5xx: fix context faults during ring switch
7f854b4803e5 drm/msm/a5xx: fix the emptyness check in the preempt code
bf66e98285f7 drm/msm/a5xx: fix highest bank bit for a530
2e8efe8c8dab drm/msm/a5xx: fix setting of the CP_PREEMPT_ENABLE_LOCAL register
b77c764b4371 drm/msm: Fix potential invalid ptr free
ced1f5dd6c1d drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype
e974d8755578 drm/nouveau/kms/nv50-: remove unused functions
c50fc503ee1b ext4: Fix possible corruption when moving a directory
cfb89ceb22fd regulator: core: Use ktime_get_boottime() to determine how long a regulator was off
e1a078cac3e9 regulator: core: Fix off-on-delay-us for always-on/boot-on regulators
67a791df1457 regulator: Flag uncontrollable regulators as always_on
e471e928de97 scsi: core: Remove the /proc/scsi/${proc_name} directory earlier
463ae58d7c80 riscv: Add header include guards to insn.h
4dd43ee784a1 riscv: Avoid enabling interrupts in die()
5ab1d0528b04 RISC-V: Avoid dereferening NULL regs in die()
6a72729ed6ac arm64: efi: Make efi_rt_lock a raw_spinlock
14ddb4e6e9de brd: mark as nowait compatible
5089247d6cf3 block/brd: add error handling support for add_disk()
5c65f0971247 iommu/vt-d: Fix PASID directory pointer coherency
8ff7db51d3ed irqdomain: Refactor __irq_domain_alloc_irqs()
62e4ba36a3d7 ipmi:ssif: Add a timer between request retries
2fb8b122ba8f ipmi:ssif: Increase the message retry time
a6ef5a9d7263 f2fs: retry to update the inode page given data corruption
a517c651f116 f2fs: do not bother checkpoint by f2fs_get_node_info
e55332319825 f2fs: avoid down_write on nat_tree_lock during checkpoint
31b5793ca2de udf: Fix off-by-one error when discarding preallocation
30e29af746ee fs: dlm: start midcomms before scand
9c9dd2b3ba83 fs: dlm: add midcomms init/start functions
2e0415522835 fs: dlm: fix log of lowcomms vs midcomms
c5a23d43c23a KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target
a78a355052ab KVM: SVM: Don't rewrite guest ICR on AVIC IPI virtualization failure
45bcf4a4f2b1 KVM: Register /dev/kvm as the _very_ last thing during initialization
0a0ecaf0988b KVM: Pre-allocate cpumasks for kvm_make_all_cpus_request_except()
3e48a6349d29 KVM: Optimize kvm_make_vcpus_request_mask() a bit
339e480baafc nfc: change order inside nfc_se_io error path
01a821aacc64 ext4: zero i_disksize when initializing the bootloader inode
ca500cf2eceb ext4: fix WARNING in ext4_update_inline_data
d16576142fb9 ext4: move where set the MAY_INLINE_DATA flag is set
c5d7c31e1722 ext4: fix another off-by-one fsmap error on 1k block filesystems
df621af95e89 ext4: fix RENAME_WHITEOUT handling for inline directories
7349cc5ab32e ext4: fix cgroup writeback accounting with fs-layer encryption
fd7b8ebc1dd5 staging: rtl8723bs: Pass correct parameters to cfg80211_get_bss()
0b22cbc05ce2 drm/connector: print max_requested_bpc in state debugfs
5e0eed414156 drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15
328d069e9c35 x86/CPU/AMD: Disable XSAVES on AMD family 0x17
92d1caad9f78 fork: allow CLONE_NEWTIME in clone3 flags
7ba76b2ac187 perf inject: Fix --buildid-all not to eat up MMAP2
2072e75b4942 btrfs: fix percent calculation for bg reclaim message
f8cd8754a03a fs: prevent out-of-bounds array speculation when closing a file descriptor
2ddbd0f967b3 Linux 5.15.102
cbecbd884e81 staging: rtl8192e: Remove call_usermodehelper starting RadioPower.sh
515017e952ea staging: rtl8192e: Remove function ..dm_check_ac_dc_power calling a script
528dbd80ac21 wifi: cfg80211: Partial revert "wifi: cfg80211: Fix use after free for wext"
bbf9f29bac04 Linux 5.15.101
cba6bbf501be Revert "drm/i915: Don't use BAR mappings for ring buffers with LLC"
d214f240b0f6 Linux 5.15.100
acf252c1f5c3 usb: gadget: uvc: fix missing mutex_unlock() if kstrtou8() fails
1c7988d5c79f malidp: Fix NULL vs IS_ERR() checking
545d72ba4c2c scsi: mpt3sas: Remove usage of dma_get_required_mask() API
953841f959e3 scsi: mpt3sas: re-do lost mpt3sas DMA mask fix
de1afc58a905 scsi: mpt3sas: Don't change DMA mask while reallocating pools
8e6612ff8b5d Revert "scsi: mpt3sas: Fix return value check of dma_get_required_mask()"
72bf6d493c95 drm/virtio: Fix error code in virtio_gpu_object_shmem_init()
8e62139840c0 media: uvcvideo: Fix race condition with usb_kill_urb
a1ddee82de80 Bluetooth: hci_sock: purge socket queues in the destruct() callback
22d021232657 drm/display/dp_mst: Fix down message handling after a packet reception error
db35e49413a4 drm/display/dp_mst: Fix down/up message handling after sink disconnect
e23fa593f1ab x86/resctl: fix scheduler confusion with 'current'
be5d5d0637fd net: tls: avoid hanging tasks on the tx_lock
e1a3cfdbf5b3 soundwire: cadence: Drain the RX FIFO after an IO timeout
ecb33d7a5b58 soundwire: cadence: Remove wasted space in response_buf
473efca280d4 phy: rockchip-typec: Fix unsigned comparison with less than zero
ffcd94262e0e PCI: Add ACS quirk for Wangxun NICs
19c4d6c7b049 PCI: loongson: Add more devices that need MRRS quirk
bb99db06b8b6 kernel/fail_function: fix memory leak with using debugfs_lookup()
7f1e53f88e8b drivers: base: dd: fix memory leak with using debugfs_lookup()
09709a49283f drivers: base: component: fix memory leak with using debugfs_lookup()
b94b39bf3d54 misc: vmw_balloon: fix memory leak with using debugfs_lookup()
cf042964c2fa tty: pcn_uart: fix memory leak with using debugfs_lookup()
49ae24f44713 PCI: Take other bus devices into account when distributing resources
dba6280105e1 PCI: Align extra resources for hotplug bridges properly
92d6e6bf9cf1 usb: gadget: uvc: Make bSourceID read/write
14cbfd08551a usb: uvc: Enumerate valid values for color matching
7e902b949600 USB: ene_usb6250: Allocate enough memory for full object
95ee8cb26db5 usb: host: xhci: mvebu: Iterate over array indexes instead of using pointer math
8da78a60f332 USB: gadget: pxa27x_udc: fix memory leak with using debugfs_lookup()
6236a6d2cdfb USB: gadget: pxa25x_udc: fix memory leak with using debugfs_lookup()
036ada6ca9ee USB: gadget: lpc32xx_udc: fix memory leak with using debugfs_lookup()
b0a2663ecbe8 USB: gadget: bcm63xx_udc: fix memory leak with using debugfs_lookup()
30f9ba2396a1 USB: gadget: gr_udc: fix memory leak with using debugfs_lookup()
fb284bee1e21 USB: isp1362: fix memory leak with using debugfs_lookup()
6f12097467ea USB: isp116x: fix memory leak with using debugfs_lookup()
4a71b15744b8 USB: fotg210: fix memory leak with using debugfs_lookup()
bb4d5eefb670 USB: sl811: fix memory leak with using debugfs_lookup()
c6af1dbc99ad USB: uhci: fix memory leak with using debugfs_lookup()
4322661af6d7 USB: chipidea: fix memory leak with using debugfs_lookup()
cf52c320cf74 USB: dwc3: fix memory leak with using debugfs_lookup()
baec889a81b8 PCI: loongson: Prevent LS7A MRRS increases
19da678d38d2 soundwire: bus_type: Avoid lockdep assert in sdw_drv_probe()
587b48b18a8a iio: accel: mma9551_core: Prevent uninitialized variable in mma9551_read_config_word()
2b59fdcaaf24 iio: accel: mma9551_core: Prevent uninitialized variable in mma9551_read_status_word()
9e58ebb12210 tools/iio/iio_utils:fix memory leak
54179274476d mei: bus-fixup:upon error print return values of send and receive
49b326ce8a68 serial: sc16is7xx: setup GPIO controller later in probe
45083b86141e tty: serial: fsl_lpuart: disable the CTS when send break signal
f9d9d25ad1f0 tty: fix out-of-bounds access in tty_driver_lookup_tty()
4be3213e9d79 staging: emxx_udc: Add checks for dma_alloc_coherent()
6683327b51a6 USB: fix memory leak with using debugfs_lookup()
b32d922f86f3 media: uvcvideo: Silence memcpy() run-time false positive warnings
c1343a879cce media: uvcvideo: Quirk for autosuspend in Logitech B910 and C910
cdccb1c3fcd2 media: uvcvideo: Handle errors from calls to usb_string
31a8d11d28b5 media: uvcvideo: Handle cameras with invalid descriptors
57b0ff53f4de media: uvcvideo: Remove format descriptions
1f11ed61d69d iommu/amd: Fix error handling for pdev_pri_ats_enable()
77d567091ec3 IB/hfi1: Update RMT size calculation
5a47bb71b1a9 mfd: arizona: Use pm_runtime_resume_and_get() to prevent refcnt leak
1b46c2a76c21 bootconfig: Increase max nodes of bootconfig from 1024 to 8192 for DCC support
0a65cd7379a2 firmware/efi sysfb_efi: Add quirk for Lenovo IdeaPad Duet 3
2e07fa2e30d4 kernel/printk/index.c: fix memory leak with using debugfs_lookup()
ba279dc7e47a tracing: Add NULL checks for buffer in ring_buffer_free_read_page()
9c28c74fbd67 thermal: intel: BXT_PMIC: select REGMAP instead of depending on it
5eaf55b38691 thermal: intel: quark_dts: fix error pointer dereference
d11f9f030fd8 ASoC: mediatek: mt8195: add missing initialization
488bc1b823c7 ASoC: zl38060 add gpiolib dependency
69e997420cb9 ASoC: zl38060: Remove spurious gpiolib select
35b855381898 ASoC: adau7118: don't disable regulators on device unbind
3e7d0968203d loop: loop_set_status_from_info() check before assignment
746d4e369e04 rtc: allow rtc_read_alarm without read_alarm callback
6e47bb21b63b scsi: ipr: Work around fortify-string warning
c775a5246151 genirq: Add and use an irq_data_update_affinity helper
00340ccb5407 genirq: Refactor accessors to use irq_data_get_affinity_mask
2163cf142272 rtc: sun6i: Always export the internal oscillator
660e8f2eeafa vc_screen: modify vcs_size() handling in vcs_read()
72db07cf0d6b tcp: tcp_check_req() can be called from process context
ac7014af85aa ARM: dts: spear320-hmi: correct STMPE GPIO compatible
dff967aee88a net/sched: act_sample: fix action bind logic
850f914efe04 net/sched: act_mpls: fix action bind logic
da4df0cbdf7c net/sched: act_pedit: fix action bind logic
5654a12277b0 net/sched: transition act_pedit to rcu and percpu stats
c494365432dc nfc: fix memory leak of se_io context in nfc_genl_se_io
6398bd3c4a50 net/mlx5: Geneve, Fix handling of Geneve object id as error code
48a8c76c7dc6 net/mlx5e: Verify flow_source cap before using it
2721d966680a 9p/rdma: unmap receive dma buffer in rdma_request()/post_recv()
8d3fc907d060 9p/xen: fix connection sequence
fc772313f2da 9p/xen: fix version parsing
df192270eb72 net: fix __dev_kfree_skb_any() vs drop monitor
ada4f805c9e4 octeontx2-pf: Use correct struct reference in test condition
bf5540cbd20e sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop
dcdddb5f4908 ipv6: Add lwtunnel encap size of all siblings in nexthop calculation
e306dbee4c98 netfilter: x_tables: fix percpu counter block leak on error path when creating new netns
dbb3cbbf03b3 netfilter: ebtables: fix table blob use-after-free
af41b3cd9a92 netfilter: ctnetlink: fix possible refcount leak in ctnetlink_create_conntrack()
041fdbe73de9 watchdog: sbsa_wdog: Make sure the timeout programming is within the limits
3e765f7ff256 watchdog: pcwd_usb: Fix attempting to access uninitialized memory
23cc41c3f19c watchdog: Fix kmemleak in watchdog_cdev_register
dd7605dd48e5 watchdog: at91sam9_wdt: use devm_request_irq to avoid missing free_irq() in error path
a27e95a6ff3f um: virt-pci: properly remove PCI device from bus
6c738b8805c6 um: virtio_uml: move device breaking into workqueue
b7d5712cf9f4 um: virtio_uml: mark device as unregistered when breaking it
1b1ef45d48e1 um: virtio_uml: free command if adding to virtqueue failed
8ba6b0fade97 x86: um: vdso: Add '%rcx' and '%r11' to the syscall clobber list
ed1d288ec85d netfilter: nf_tables: allow to fetch set elements when table has an owner
98db4a032244 ext4: use ext4_fc_tl_mem in fast-commit replay path
aa4d726af72a f2fs: fix to avoid potential memory corruption in __update_iostat_latency()
3afaaf6f5867 ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed
79548ccdd992 ubi: Fix UAF wear-leveling entry in eraseblk_count_seq_show()
003bb9868a51 ubi: fastmap: Fix missed fm_anchor PEB in wear-leveling after disabling fastmap
79db0e8323b5 ubifs: ubifs_writepage: Mark page dirty after writing inode failed
10b6c359e374 ubifs: dirty_cow_znode: Fix memleak in error handling path
aeb92507ea25 ubifs: Re-statistic cleaned znode count if commit failed
5ec4c8aca5a2 ubi: Fix possible null-ptr-deref in ubi_free_volume()
3e29634eb56e ubifs: Fix memory leak in alloc_wbufs()
95a72417dd13 ubi: Fix unreferenced object reported by kmemleak in ubi_resize_volume()
53818746e549 ubi: Fix use-after-free when volume resizing failed
91bc31579e9f ubifs: Reserve one leb for each journal head while doing budget
2b6d85db0e07 ubifs: do_rename: Fix wrong space budget when target inode's nlink > 1
8e30559876d8 ubifs: Fix wrong dirty space budget for dirty inode
8e166cc9b64b ubifs: Rectify space budget for ubifs_xrename()
de6d6bf150b7 ubifs: Rectify space budget for ubifs_symlink() if symlink is encrypted
8c3ebc5e3cd0 ubifs: Fix build errors as symbol undefined
701bb3ed5a88 ubi: ensure that VID header offset + VID header size <= alloc, size
276a7298af6a um: vector: Fix memory leak in vector_config
354dfc05bd5f f2fs: allow set compression option of files without blocks
add8515d59a1 fs: f2fs: initialize fsdata in pagecache_write()
06fa1a839fae f2fs: use memcpy_{to,from}_page() where possible
804817f02e2f pwm: stm32-lp: fix the check on arr and cmp registers update
81ea09ae3040 pwm: sifive: Always let the first pwm_apply_state succeed
852703ed6d81 pwm: sifive: Reduce time the controller lock is held
3a75866a5cef objtool: Fix memory leak in create_static_call_sections()
ea30508b7bb1 fs/jfs: fix shift exponent db_agl2size negative
8311961a1724 auxdisplay: hd44780: Fix potential memory leak in hd44780_remove()
7c183dc0af47 net/sched: Retire tcindex classifier
abddfcf701a5 Linux 5.15.99
d2fb2739e956 kbuild: Port silent mode detection to future gnu make.
2da950a044ee wifi: ath9k: use proper statements in conditionals
7e6eeb5fb3aa arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY
6ac2adcc2bff iommu/vt-d: Fix an unbalanced rcu_read_lock/rcu_read_unlock()
26f8b1ef30f6 media: uvcvideo: Fix memory leak of object map on error exit path
2137e7c83ed6 qede: avoid uninitialized entries in coal_entry array
a8da5a8900fa perf intel-pt: pkt-decoder: Add CFE and EVD packets
922bd6b37276 drm/edid: fix AVI infoframe aspect ratio handling
4eb6789f9177 drm/i915: Don't use BAR mappings for ring buffers with LLC
64bcaffa2d5c drm/radeon: Fix eDP for single-display iMac11,2
6a5f31c3fbf3 drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv
5f63c879ca95 vfio/type1: restore locked_vm
7329ab7f0249 vfio/type1: track locked_vm per dma
eafb81c50da8 vfio/type1: prevent underflow of locked_vm via exec()
2fd6f6c8cb35 iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode
77ffe5501e02 PCI: Avoid FLR for AMD FCH AHCI adapters
99eefc2c62e0 PCI: hotplug: Allow marking devices as disconnected during bind/unbind
2bb559f12e54 PCI/PM: Observe reset delay irrespective of bridge_d3
b07ded08cd9c MIPS: DTS: CI20: fix otg power gpio
71f81b6842af riscv: ftrace: Reduce the detour code size to half
4accfc428fec riscv: ftrace: Remove wasted nops for !RISCV_ISA_C
f6b5db68b256 riscv, mm: Perform BPF exhandler fixup on page fault
043d1657cc51 riscv: jump_label: Fixup unaligned arch_static_branch function
ac5ff022d916 riscv: mm: fix regression due to update_mmu_cache change
59b83f7b057d RISC-V: add a spin_shadow_stack declaration
0595cdb58772 scsi: ses: Fix slab-out-of-bounds in ses_intf_remove()
584892fd29a4 scsi: ses: Fix possible desc_ptr out-of-bounds accesses
384aa697d8f2 scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses
2b28a7d261cb scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process()
6fce2307650a scsi: ses: Don't attach if enclosure has no components
cb121c4137b2 scsi: qla2xxx: Remove increment of interface err cnt
5f40ca617ef5 scsi: qla2xxx: Fix erroneous link down
77a11df33c48 scsi: qla2xxx: Remove unintended flag clearing
77302fb0e357 scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests
476126f14dfe scsi: qla2xxx: Check if port is online before sending ELS
c54e9311ee0b scsi: qla2xxx: Fix link failure in NPIV environment
37a38ff7edf4 tools/bootconfig: fix single & used for logical condition
d41db100bc38 ring-buffer: Handle race between rb_move_tail and rb_check_pages
145999aed74f ktest.pl: Add RUN_TIMEOUT option with default unlimited
aab7db9e1e08 ktest.pl: Fix missing "end_monitor" when machine check fails
0c2f4a234bb2 ktest.pl: Give back console on Ctrt^C on monitor
fe463fe6aa80 mm/thp: check and bail out if page in deferred queue already
ef1fcad8548d mm: memcontrol: deprecate charge moving
d0d794371bde docs: gdbmacros: print newest record
a16bd95eeb2e remoteproc/mtk_scp: Move clk ops outside send_lock
505627bebd45 media: ipu3-cio2: Fix PM runtime usage_count in driver unbind
d15f73b01bce mips: fix syscall_get_nr
34dbf5dd0711 dax/kmem: Fix leak of memory-hotplug resources
7eb171ada303 alpha: fix FEN fault handling
efa228b2e6a4 ceph: update the time stamps and try to drop the suid/sgid
a73783e4e0c4 rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails
c6cc86c6d847 fuse: add inode/permission checks to fileattr_get/fileattr_set
cfa97a3b266a ARM: dts: exynos: correct TMU phandle in Odroid HC1
70e18548311c ARM: dts: exynos: correct TMU phandle in Odroid XU
816f83bd2868 ARM: dts: exynos: correct TMU phandle in Exynos5250
269926de8454 ARM: dts: exynos: correct TMU phandle in Odroid XU3 family
78a5fa65a5d7 ARM: dts: exynos: correct TMU phandle in Exynos4
52739e0f7413 ARM: dts: exynos: correct TMU phandle in Exynos4210
89e99f0b031f ARM: dts: qcom: sdx55: Add Qcom SMMU-500 as the fallback for IOMMU node
0e22e0477479 dm flakey: fix a bug with 32-bit highmem systems
ff60b2bb680e dm flakey: don't corrupt the zero page
673ca7e7872f dm flakey: fix logic when corrupting a bio
8cbbe0651971 thermal: intel: powerclamp: Fix cur_state for multi package system
935ba268ac0b qede: fix interrupt coalescing configuration
fd081afd21eb wifi: cfg80211: Fix use after free for wext
60e49fe9b7e4 wifi: ath11k: allow system suspend to survive ath11k
f592cd2f1390 wifi: rtl8xxxu: Use a longer retry limit of 48
931dc7e232b2 dm: add cond_resched() to dm_wq_work()
d71a0899e497 dm: send just one event on resize, not two
61d44a4db2f5 mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type
afd61540ba77 mtd: spi-nor: spansion: Consider reserved bits in CFR5 register
73a4cbf91e04 mtd: spi-nor: sfdp: Fix index value for SCCR dwords
116008ada3d0 ext4: refuse to create ea block when umounted
a6744e14ce70 ext4: optimize ea_inode block expansion
c325350d0c54 jbd2: fix data missing when reusing bh which is ready to be checkpointed
83c4e017fbfd ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC
ff9657b1e845 ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls()
345fb368e5f5 io_uring/poll: allow some retries for poll triggering spuriously
7e8cd208e9c2 io_uring: remove MSG_NOSIGNAL from recvmsg
dde0d0dfbde2 io_uring/rsrc: disallow multi-source reg buffers
abd54d87daba io_uring: add a conditional reschedule to the IOPOLL cancelation loop
337eb887c74d io_uring: mark task TASK_RUNNING before handling resume/task work
54df6c5edf87 io_uring: handle TIF_NOTIFY_RESUME when checking for task_work
7697139d5dfd crypto: qat - fix out-of-bounds read
ffc9d001fed1 irqdomain: Fix domain registration race
a2a46bd4f40c irqdomain: Drop bogus fwspec-mapping error handling
27842d6884d7 irqdomain: Look for existing mapping only once
562e332dd306 irqdomain: Fix disassociation race
ee82369e29fb irqdomain: Fix association race
1cb936fee7e7 ima: Align ima_file_mmap() parameters with mmap_file LSM hook
cb104b880d78 brd: return 0/-error from brd_insert_page()
113d4b0e12f4 Documentation/hw-vuln: Document the interaction between IBRS and STIBP
e7f1ddebd9f5 x86/speculation: Allow enabling STIBP with legacy IBRS
be2710deaed3 x86/microcode/AMD: Fix mixed steppings support
5830ff467ab3 x86/microcode/AMD: Add a @cpu parameter to the reloading functions
865af457dd89 x86/microcode/amd: Remove load_microcode_amd()'s bsp parameter
e1d35d0d1830 x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe range
c5a2c2bf0b4f x86/kprobes: Fix __recover_optprobed_insn check optimizing logic
f46a42130c03 x86/reboot: Disable SVM, not just VMX, when stopping CPUs
5427c3cee789 x86/reboot: Disable virtualization in an emergency if SVM is supported
1e3edbabf57a x86/crash: Disable virt in core NMI crash handler to avoid double shootdown
83a27cd866dd x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows)
6e46d9ff3ed3 KVM: s390: disable migration mode when dirty tracking is disabled
21c95b736058 KVM: SVM: hyper-v: placate modpost section mismatch error
033a4c062124 KVM: SVM: Fix potential overflow in SEV's send|receive_update_data()
11d4b35674c6 KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI
999439fd5da5 KVM: Destroy target device if coalesced MMIO unregistration fails
ac791643e77b RDMA/siw: Fix user page pinning accounting
a155ad9506f9 udf: Fix file corruption when appending just after end of preallocated extent
37e74003d81e udf: Detect system inodes linked into directory hierarchy
e6574337df78 udf: Preserve link count of system files
c5787d77a5c2 udf: Do not update file length for failed writes to inline files
9a8d602f0723 udf: Do not bother merging very long extents
e43adce883e1 udf: Truncate added extents on failed expansion
aa502e760c26 selftests/landlock: Test ptrace as much as possible with Yama
6249f305cd34 selftests/landlock: Skip overlayfs tests when not supported
597ecd95b1f2 ocfs2: fix non-auto defrag path not working issue
33665d104266 ocfs2: fix defrag path triggering jbd2 ASSERT
f901c39e670b f2fs: fix cgroup writeback accounting with fs-layer encryption
117d4f6687b1 f2fs: fix information leak in f2fs_move_inline_dirents()
936a8383a021 fs: dlm: send FIN ack back in right cases
e9463d46af47 fs: dlm: move sending fin message into state change handling
3ed92883b387 fs: dlm: don't set stop rx flag after node reset
19e99109fb77 exfat: fix inode->i_blocks for non-512 byte sector size device
9717df94d7d0 exfat: redefine DIR_DELETED as the bad cluster number
c2c3d86bd4a9 exfat: fix unexpected EOF while reading dir
0d3902cbcf80 exfat: fix reporting fs error when reading dir beyond EOF
05103d88482d fs: hfsplus: fix UAF issue in hfsplus_put_super
2cab8db14566 hfs: fix missing hfs_bnode_get() in __hfs_bnode_create
6817d13c62db ARM: dts: exynos: correct HDMI phy compatible in Exynos4
851c34f19c0a ksmbd: do not allow the actual frame length to be smaller than the rfc1002 length
f9b816c55bea ksmbd: fix wrong data area length for smb2 lock request
db1c5ec57611 locking/rwsem: Prevent non-first waiter from spinning in down_write() slowpath
79a0583a31ae btrfs: hold block group refcount during async discard
0eba9b4a86e8 cifs: Fix uninitialized memory read in smb3_qfs_tcon()
2c00c08a081e s390/kprobes: fix current_kprobe never cleared after kprobes reenter
f12874e6a169 s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler
76c683864bea s390: discard .interp section
61e64c322739 s390/extmem: return correct segment type in __segment_load()
49be6b25acb7 ipmi_ssif: Rename idle state and check
66db2b9a2dc5 ipmi:ssif: resend_msg() cannot fail
db44fae4cb19 rtc: pm8xxx: fix set-alarm race
8b44b4d81598 block: don't allow multiple bios for IOCB_NOWAIT issue
ce3eb3c37b2c firmware: coreboot: framebuffer: Ignore reserved pixel color bits
d44d34a22ff0 wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu
90ca3fa30fc4 drm/shmem-helper: Revert accidental non-GPL export
bde7dcd77807 nfsd: zero out pointers after putting nfsd_files on COPY setup error
8c5f6c699241 dm cache: add cond_resched() to various workqueue loops
01663c215843 dm thin: add cond_resched() to various workqueue loops
f0c8b85af2f6 drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5
fbc357c9ad67 HID: logitech-hidpp: Don't restart communication if not necessary
5a46d8bdaf03 scsi: snic: Fix memory leak with using debugfs_lookup()
73dbd0f325af pinctrl: at91: use devm_kasprintf() to avoid potential leaks
52ea47a0ddfb hwmon: (coretemp) Simplify platform device handling
c713ebf2fe3f gfs2: Improve gfs2_make_fs_rw error handling
a4b3893e4183 regulator: s5m8767: Bounds check id indexing into arrays
88001ac08e69 regulator: max77802: Bounds check regulator id against opmode
4e8c955abc52 ASoC: kirkwood: Iterate over array indexes instead of using pointer math
9576b7ccc203 ASoC: soc-compress: Reposition and add pcm_mutex
204233695407 docs/scripts/gdb: add necessary make scripts_gdb step
5dfe7a5386fd drm/msm/dsi: Add missing check for alloc_ordered_workqueue
9ae15ebaefc4 drm: amd: display: Fix memory leakage
a40b97acb817 Revert "fbcon: don't lose the console font across generic->chip driver switch"
51ab4eb1a25e scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write
cda2f7efbc2d drm/radeon: free iio for atombios when driver shutdown
340d1cc503f6 drm/tiny: ili9486: Do not assume 8-bit only SPI controllers
1f09c5321f03 HID: Add Mapping for System Microphone Mute
fc4f90d6ebd0 drm/omap: dsi: Fix excessive stack usage
bb9a5562beb9 drm/amd/display: Fix potential null-deref in dm_resume
54ba1ec7ed34 drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h write
93be5b2dda27 scm: add user copy checks to put_cmsg()
ad01fa14f65c hv_netvsc: Check status in SEND_RNDIS_PKT completion message
90c260fddc65 Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE
84e4d4885d0a PM: EM: fix memory leak with using debugfs_lookup()
dddc132eb0dc PM: domains: fix memory leak with using debugfs_lookup()
dc39fbd865a9 time/debug: Fix memory leak with using debugfs_lookup()
49aa49952116 s390/idle: mark arch_cpu_idle() noinstr
eb1fbdf985cc uaccess: Add minimum bounds check on kernel buffer size
ce1fb07b7130 coda: Avoid partial allocation of sig_inputArgs
dca8fd0f7d70 net/mlx5: fw_tracer: Fix debug print
4d9d7e5e4c79 ACPI: video: Fix Lenovo Ideapad Z570 DMI match
90fa009c6d51 wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup
634986c94c57 tools/power/x86/intel-speed-select: Add Emerald Rapid quirk
2493966c877f netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj()
fcf9fb5242d2 m68k: Check syscall_trace_enter() return code
124ca24e0de9 net: bcmgenet: Add a check for oversized packets
bcb03f2be982 crypto: hisilicon: Wipe entire pool on error
f1e093291cd6 clocksource: Suspend the watchdog temporarily when high read latency detected
e6900ee15d87 thermal: intel: intel_pch: Add support for Wellsburg PCH
31f4c98ecd17 ACPI: Don't build ACPICA with '-Os'
57bb8235ba8f ice: add missing checks for PF vsi type
38f564996906 ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB
b279fa1ceadb inet: fix fast path in __inet_hash_connect()
1a1f43059afa wifi: mt7601u: fix an integer underflow
a0f0ce1c8ab9 wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out-of-bounds
f5df8d35b228 x86/bugs: Reset speculation control settings on init
aa70d1e0f941 timers: Prevent union confusion from unexpected restart_syscall()
599a9dcef8a7 thermal: intel: Fix unsigned comparison with less than zero
208065148930 wifi: ath11k: debugfs: fix to work with multiple PCI devices
4a84fcea596d rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
0d9fc1397f71 rcu: Suppress smp_processor_id() complaint in synchronize_rcu_expedited_wait()
6f2ce125c760 rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks
3a3a5e3f9406 wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds()
634a5471a6bd wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect()
a2e4b48d6f9b trace/blktrace: fix memory leak with using debugfs_lookup()
3538ade9d8c2 blk-iocost: fix divide by 0 error in calc_lcoefs()
2e68a0f7bc57 ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy
1492fc9b50a4 udf: Define EFSCORRUPTED error code
de23e98c1c34 rpmsg: glink: Avoid infinite loop on intent for missing channel
6d24202b8d3d media: saa7134: Use video_unregister_device for radio_dev
114f768e7314 media: usb: siano: Fix use after free bugs caused by do_submit_urb
d2512e1c9073 media: i2c: ov7670: 0 instead of -EINVAL was returned
29962c478e8b media: rc: Fix use-after-free bugs caused by ene_tx_irqsim()
09fc82a6a7a8 media: imx-jpeg: Apply clk_bulk api instead of operating specific clk
8f9722ffa432 media: v4l2-jpeg: ignore the unknown APP14 marker
ecefc14dd1c9 media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data
5ed8dde3aa5b media: i2c: imx219: Fix binning for RAW8 capture
800bb32c7636 media: i2c: imx219: Split common registers from mode tables
1da495101ef7 media: i2c: ov772x: Fix memleak in ov772x_probe()
ba54908ae822 media: ov5675: Fix memleak in ov5675_init_controls()
3969b2ebc660 media: ov2740: Fix memleak in ov2740_init_controls()
5897fe3ebe82 media: max9286: Fix memleak in max9286_v4l2_register()
956186b8e2c1 builddeb: clean generated package content
edc6f486be31 s390/vdso: Drop '-shared' from KBUILD_CFLAGS_64
4ecc0a347da7 s390/vdso: remove -nostdlib compiler flag
a26436b90808 powerpc: Remove linker flag from KBUILD_AFLAGS
60abe015c3b5 media: platform: ti: Add missing check for devm_regulator_get
954f27086c07 media: ti: cal: fix possible memory leak in cal_ctx_create()
d4f4aa9ec112 remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers
bd57756a7e43 IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors
08210a63eb4f IB/hfi1: Fix math bugs in hfi1_can_pin_pages()
a495b6a5d027 iommu/vt-d: Allow to use flush-queue when first level is default
990c539e9c33 iommu/vt-d: Use second level for GPA->HPA translation
727fb414fe9f iommu/vt-d: Check FL and SL capability sanity in scalable mode
b0a2bf28af77 iommu/vt-d: Remove duplicate identity domain flag
db05a58ed435 iommu/vt-d: Fix error handling in sva enable/disable paths
0bb33c5fe4a0 dmaengine: dw-axi-dmac: Do not dereference NULL structure
ad222c9af25e dmaengine: sf-pdma: pdma_desc memory leak fix
f119ef452e2d iommu: Fix error unwind in iommu_group_alloc()
76e0396313c7 iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry()
3df71bb7e8ad phy: rockchip-typec: fix tcphy_get_mode error case
295ab6d49ee5 dmaengine: dw-edma: Fix readq_ch() return value truncation
3d41d9b256ae tty: serial: imx: disable Ageing Timer interrupt request irq
908e091e1b66 tty: serial: imx: Handle RS485 DE signal active high
3fe888ce8152 serial: fsl_lpuart: fix RS485 RTS polariy inverse issue
87674a359ad1 RDMA/irdma: Cap MSIX used to online CPUs + 1
d9e1dae1e278 usb: max-3421: Fix setting of I/O pins
9dca64042d85 RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish()
16603bced2d1 power: supply: remove faulty cooling logic
c4f590e84a60 iommu/vt-d: Set No Execute Enable bit in PASID table entry
7bd1d1305c89 usb: gadget: configfs: Restrict symlink creation is UDC already binded
da589849cfdd usb: gadget: configfs: remove using list iterator after loop body as a ptr
3d0127aca18f usb: gadget: configfs: use to_usb_function_instance() in cfg (un)link func
c955f9cf75b7 usb: gadget: configfs: use to_config_usb_cfg() in os_desc_link()
f12829e5130f usb: musb: mediatek: don't unregister something that wasn't registered
2aff0632ac6b RDMA/cxgb4: add null-ptr-check after ip_dev_find()
fcbbf34d7820 tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case
e8fb0f13e45c usb: early: xhci-dbc: Fix a potential out-of-bound memory access
49bf49312b30 dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers
834af318db66 fotg210-udc: Add missing completion handler
b4fe158259fb firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle
ca39a7c65944 drivers: base: transport_class: fix resource leak when transport_add_device() fails
817b415f481b drivers: base: transport_class: fix possible memory leak
8d389e363075 driver core: fix resource leak in device_add()
6cdcee7393d4 misc/mei/hdcp: Use correct macros to initialize uuid_le
a3c89e8c69a5 VMCI: check context->notify_page after call to get_user_pages_fast() to avoid GPF
b1cdf1113e21 firmware: stratix10-svc: add missing gen_pool_destroy() in stratix10_svc_drv_probe()
7f9416f14e86 applicom: Fix PCI device refcount leak in applicom_init()
4a77ce51f9a8 eeprom: idt_89hpesx: Fix error handling in idt_init()
4143de03d397 Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in set_protocol"
c177d5f24723 serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init()
7159dced6ffb tty: serial: fsl_lpuart: clear LPUART Status Register in lpuart32_shutdown()
d5dcc89c8df8 tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown()
707d954d9b5c PCI: switchtec: Return -EFAULT for copy_to_user() errors
53b65fa40c01 PCI/IOV: Enlarge virtfn sysfs name buffer
645384e26f20 usb: typec: intel_pmc_mux: Don't leak the ACPI device reference count
2a023b47d9f5 usb: typec: intel_pmc_mux: Use the helper acpi_dev_get_memory_resources()
2dc1dba1d8d3 ACPI: resource: Add helper function acpi_dev_get_memory_resources()
950c6df6ec6e coresight: cti: Add PM runtime call in enable_store
ec4808025406 coresight: cti: Prevent negative values of enable count
4f125de654c4 coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR
4ff283009f55 media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible()
5052fe8a95a4 media: uvcvideo: Check controls flags before accessing them
bd3a78ace9bd media: uvcvideo: Use control names from framework
5f0b4c77e70d media: uvcvideo: Add support for V4L2_CTRL_TYPE_CTRL_CLASS
c7121f186c1c media: uvcvideo: refactor __uvc_ctrl_add_mapping
d9eacd945f16 media: uvcvideo: Remove s_ctrl and g_ctrl
07ab366a9aaf media: uvcvideo: Do not check for V4L2_CTRL_WHICH_DEF_VAL
0305bf6af005 alpha/boot/tools/objstrip: fix the check for ELF header
89a0079049f5 kobject: Fix slab-out-of-bounds in fill_kobj_path()
e8bfba508cf3 kobject: modify kobject_get_path() to take a const *
2c59650d078b driver core: fix potential null-ptr-deref in device_add()
18f50b830408 soundwire: cadence: Don't overflow the command FIFOs
83ce72f41464 i2c: designware: fix i2c_dw_clk_rate() return size to be u32
d725bc59db96 usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe()
806d41135051 iio: light: tsl2563: Do not hardcode interrupt trigger type
0d6282dc2bd3 dmaengine: HISI_DMA should depend on ARCH_HISI
d901a7fb4069 dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0
6a8a02dcfae1 mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read()
413f8b1f8be6 mfd: cs5535: Don't build on UML
41aed1bddcec objtool: add UACCESS exceptions for __tsan_volatile_read/write
1ca4adf2e099 printf: fix errname.c list
3927846a2a53 selftests/ftrace: Fix bash specific "==" operator
b41a42d11df7 sparc: allow PM configs for sparc32 COMPILE_TEST
1f3d6661f3f4 perf tools: Fix auto-complete on aarch64
f9a35cd8f017 perf intel-pt: Do not try to queue auxtrace data on pipe
bb0a6b5bcebf perf intel-pt: Add support for emulated ptwrite
6d60fdc1e6a1 perf intel-pt: Add link to the perf wiki's Intel PT page
ceecd014a8cc perf intel-pt: Add documentation for Event Trace and TNT disable
b51f0131fd41 perf inject: Use perf_data__read() for auxtrace
690efcb5827c leds: led-core: Fix refcount leak in of_led_get()
1cdf973d2b3a perf llvm: Fix inadvertent file creation
321b8b2b0b2b gfs2: jdata writepage fix
7cbd5bdb5bd4 cifs: Fix warning and UAF when destroy the MR list
46cd6c639cdd cifs: Fix lost destroy smbd connection when MR allocate failed
22f55cbb0605 nfsd: fix race to check ls_layouts
4abe8b100407 drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt()
350f0fc9052d hid: bigben_probe(): validate report count
0fd999805292 HID: bigben: use spinlock to safely schedule workers
be0b3f4a10bc HID: bigben_worker() remove unneeded check on report_field
4dccaf1e45e1 HID: bigben: use spinlock to protect concurrent accesses
547d18473a16 ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared
78b4d1e54531 spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one()
91758289faad NFS: fix disabling of swap
c78cfb19c9a2 nfs4trace: fix state manager flag printing
ccbf841c73ef NFSv4: keep state manager thread active if swap is enabled
24ff9c5cdea9 dm: remove flush_scheduled_work() during local_exit()
6739473a05ba ASoC: tlv320adcx140: fix 'ti,gpio-config' DT property init
75eef8cb9d07 hwmon: (mlxreg-fan) Return zero speed for broken fan
528181646644 spi: bcm63xx-hsspi: Fix multi-bit mode setting
caed289f95f2 ASoC: codecs: lpass: fix incorrect mclk rate
110589ecae84 ASoC: codecs: tx-macro: move to individual clks from bulk
b1c7f77e2831 ASoC: codecs: rx-macro: move to individual clks from bulk
05fd63e7f640 ASoC: codecs: tx-macro: move clk provider to managed variants
8ca893710c67 ASoC: codecs: rx-macro: move clk provider to managed variants
bed34709711a ASoC: codecs: Change bulk clock voting to optional voting in digital codecs
bf29fda763a9 HID: retain initial quirks set up when creating HID devices
2098a330b2a6 HID: multitouch: Add quirks for flipped axes
f6e9b77257c1 scsi: aic94xx: Add missing check for dma_map_single()
378cc0eec4aa scsi: mpt3sas: Fix a memory leak
2dc8d09c1e68 drm/amdgpu: fix enum odm_combine_mode mismatch
8b9415aecb1f hwmon: (ltc2945) Handle error case in ltc2945_value_store
9cd1a9b7de20 ASoC: dt-bindings: meson: fix gx-card codec node regex
fecd236ef6be ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params()
2b346cc075ec ASoC: rsnd: fixup #endif position
fa077baab8ea ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove()
667782d7ef5b ASoC: mchp-spdifrx: fix controls that works with completion mechanism
12396e9300da ASoC: mchp-spdifrx: fix return value in case completion times out
0c4e4d2ccb88 ASoC: mchp-spdifrx: fix controls which rely on rsr register
e4d1c3ce2fe3 spi: dw_bt1: fix MUX_MMIO dependencies
5f54a1d08e26 gpio: vf610: connect GPIO label to dev name
0b64984dfbc4 ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress()
49cf87919dae drm/mediatek: Clean dangling pointer on bind error path
62952905e195 drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc
cd98ea8fa15b drm/mediatek: Drop unbalanced obj unref
088a31fe1edb drm/mediatek: Use NULL instead of 0 for NULL pointer
2a83e2b5b121 drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd
be30b05c4a33 drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update()
f50858d1b66a drm/tegra: firewall: Check for is_addr_reg existence in IMM check
6f3614226430 gpu: host1x: Don't skip assigning syncpoints to channels
11d6f70f07b0 pinctrl: mediatek: Initialize variable *buf to zero
47a117028113 pinctrl: mediatek: Initialize variable pullen and pullup to zero
b5b81fc1ac08 pinctrl: mediatek: fix coding style
58151b609821 pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback()
82943a0730e0 drm/msm/mdp5: Add check for kzalloc
c7ee1772e3c3 drm/msm/dpu: Add check for pstates
d4ba50614cb3 drm/msm/dpu: Add check for cstate
f0e9f3e1d6c8 drm/msm: use strscpy instead of strncpy
c9b6a75aae4d drm/msm/dsi: Allow 2 CTRLs on v2.5.0
ce9fedc3099e drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags
3a40fd51e81e drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness
15edaafbff75 drm/bridge: lt9611: pass a pointer to the of node
75b3c2777dbb drm/bridge: lt9611: fix clock calculation
a2c196f05a30 drm/bridge: lt9611: fix programming of video modes
24e51dea9885 drm/bridge: lt9611: fix polarity programming
77ba2d294e16 drm/bridge: lt9611: fix HPD reenablement
1b5adc8752b0 drm/bridge: lt9611: fix sleep mode setup
bf661c5e3bc4 drm/msm/dpu: Disallow unallocated resources to be returned
436fb91cadb8 drm/msm/gem: Add check for kmalloc
525c43e67d47 ALSA: hda/ca0132: minor fix for allocation size
399d01375659 drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup()
e69f8e959b72 ASoC: fsl_sai: initialize is_dsp_mode flag
6fd4144985fc ASoC: fsl_sai: Update to modern clocking terminology
d58b45bbbea8 scsi: qla2xxx: Fix exchange oversubscription for management commands
2232e689f9d9 scsi: qla2xxx: Fix exchange oversubscription
9b2aab3da463 scsi: qla2xxx: edif: Fix I/O timeout due to over-subscription
09af894bc3bd drm/msm: clean event_thread->worker in case of an error
e76fbfdad503 drm/vc4: hdmi: Correct interlaced timings again
55f2645e4e12 drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5
ae8b24e8289b drm/vc4: hvs: Set AXI panic modes
0f735f232ff5 pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups
af54707c0cca pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain
b31ad2ecc4f7 pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins
9a01ecc312e7 drm/msm/hdmi: Add missing check for alloc_ordered_workqueue
1721badebfc8 hwmon: (ftsteutates) Fix scaling of measurements
11226ab2f99f gpu: ipu-v3: common: Add of_node_put() for reference returned by of_graph_get_port_by_id()
262f8e5940c6 drm: tidss: Fix pixel format definition
d2991e6b3002 drm/vc4: dpi: Fix format mapping for RGB565
8e04aaffb6de drm/vc4: dpi: Add option for inverting pixel clock and output enable
1f9836f95271 drm/vkms: Fix null-ptr-deref in vkms_release()
bad13de76488 drm/vkms: Fix memory leak in vkms_init()
309e785bae07 drm/bridge: megachips: Fix error handling in i2c_register_driver()
b02742255620 drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC
da56b06f3828 drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec
d72f8548a613 drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats
d06e827a65a6 drm: Fix potential null-ptr-deref due to drmm_mode_config_init()
50c75e7ce64c sefltests: netdevsim: wait for devlink instance after netns removal
1a452b449a29 selftest: fib_tests: Always cleanup before exit
96cf406dea06 net: bcmgenet: fix MoCA LED control
f6df58aa15f7 l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register()
f7854541b02e selftests/net: Interpret UDP_GRO cmsg data as an int value
75ee94229062 irqchip/irq-bcm7120-l2: Set IRQ_LEVEL for level triggered interrupts
3a413b05c66e irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts
95ab0725c521 bpf: Fix global subprog context argument resolution logic
bfc344d1e78c can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a bus error
f5aaf140ab1c thermal/drivers/hisi: Drop second sensor hi3660
2d20f9b6dd81 wifi: mac80211: make rate u32 in sta_set_rate_info_rx()
62ff301aa492 crypto: crypto4xx - Call dma_unmap_page when done
74fe2bf6746e ACPI: resource: Do IRQ override on all TongFang GMxRGxx
b577d0bde456 ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models
e0ae2d90bc0c selftests/bpf: Fix out-of-srctree build
15fe03e5dd05 wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize()
f15ef0ebcf56 wifi: iwl4965: Add missing check for create_singlethread_workqueue()
505c74c4c0b1 wifi: iwl3945: Add missing check for create_singlethread_workqueue
5ac2f1e3bbe6 RISC-V: time: initialize hrtimer based broadcast clock event device
e97dd92c3611 m68k: /proc/hardware should depend on PROC_FS
b677cb4f0b6b crypto: rsa-pkcs1pad - Use akcipher_request_complete
99e8e6fd70a1 rds: rds_rm_zerocopy_callback() correct order for list_add_tail()
d7bd166859fe libbpf: Fix alen calculation in libbpf_nla_dump_errormsg()
b8f6c28ce1cf s390/ap: fix status returned by ap_qact()
900a0c25a653 s390/ap: fix status returned by ap_aqic()
0e872b4da7c6 Bluetooth: hci_qca: get wakeup status from serdev device handle
31a288a4df7f Bluetooth: L2CAP: Fix potential user-after-free
bf1b79d57e44 OPP: fix error checking in opp_migrate_dentry()
db6efde0ab80 tap: tap_open(): correctly initialize socket uid
67f9f02928a3 tun: tun_chr_open(): correctly initialize socket uid
a8353cfb4eec net: add sock_init_data_uid()
15a66714bf28 s390/vmem: fix empty page tables cleanup under KASAN
6ce9a22fc021 s390/mem_detect: fix detect_memory() error handling
856fc2195494 irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe
88cb93d3a16f irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe
d6c66c468897 irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains
4401b4858557 irqchip: Fix refcount leak in platform_irqchip_probe
a7724a7c2236 net/mlx5: Enhance debug print in page allocation failure
a25ff23ba2d7 mt76: mt7915: fix polling firmware-own status
9af6aa18b4e8 bpftool: profile online CPUs instead of possible
457139238f34 crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware
68c1cfd01332 crypto: ccp - Refactor out sev_fw_alloc()
13cb7851a5b1 leds: led-class: Add missing put_device() to led_put()
912eb10b6564 crypto: xts - Handle EBUSY correctly
55a7f88059c8 x86/microcode: Adjust late loading result reporting message
36b6fc833437 x86/microcode: Check CPU capabilities after late microcode update correctly
de6e20f3f33e x86/microcode: Add a parameter to microcode_check() to store CPU capabilities
a9e76b276b10 x86/microcode: Print previous version of microcode after reload
6d2b3a319144 x86/microcode: Default-disable late loading
dce39c10d885 x86/microcode: Rip out the OLD_INTERFACE
54aa76ad5f01 x86: Mark stop_this_cpu() __noreturn
e4de2b98c4bd powercap: fix possible name leak in powercap_register_zone()
36ec108b7bd7 crypto: seqiv - Handle EBUSY correctly
840a1d3b77c1 crypto: essiv - Handle EBUSY correctly
416eb7cc967d crypto: ccp - Failure on re-initialization due to duplicate sysfs filename
3496c1b3f500 ACPI: battery: Fix missing NUL-termination with large strings
ac75c78f8f76 wifi: cfg80211: Fix extended KCK key length check in nl80211_set_rekey_data()
53c8a256e5d3 wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup
1af7eacfad45 wifi: ath9k: Fix potential stack-out-of-bounds write in ath9k_wmi_rsp_callback()
61490d271027 wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails
f1cdbe94f728 ath9k: htc: clean up statistics macros
4adfc9eb8a45 ath9k: hif_usb: simplify if-if to if-else
c0c0614f143b wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback function
88f6608c7ede wifi: orinoco: check return value of hermes_write_wordrec()
35fb0e275af1 wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU
ae17414de71b thermal/drivers/tsens: limit num_sensors to 9 for msm8939
80726a391973 thermal/drivers/tsens: fix slope values for msm8939
e991430d2375 thermal/drivers/tsens: Sort out msm8976 vs msm8956 data
df56f5265e73 thermal/drivers/tsens: Add compat string for the qcom,msm8960
21cb4e5700be thermal/drivers/tsens: Drop msm8976-specific defines
801d10065b8a ACPICA: nsrepair: handle cases without a return value correctly
0cf3af4de06a crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2
9ae0f82aa70b lib/mpi: Fix buffer overrun when SG is too long
d215e32fe18a rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes()
f7dc606a47d3 rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls
a0818534fb64 rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose
bcaa8b8fc1f1 genirq: Fix the return type of kstat_cpu_irqs_sum()
4222cc9e7912 ACPICA: Drop port I/O validation for some regions
2b56df9102a8 crypto: x86/ghash - fix unaligned access in ghash_setkey()
4f47453c39f3 wifi: wl3501_cs: don't call kfree_skb() under spin_lock_irqsave()
f19c9ed16294 wifi: libertas: cmdresp: don't call kfree_skb() under spin_lock_irqsave()
b9294aedfb17 wifi: libertas: main: don't call kfree_skb() under spin_lock_irqsave()
e9c889b0c458 wifi: libertas: if_usb: don't call kfree_skb() under spin_lock_irqsave()
068e986f2ba8 wifi: libertas_tf: don't call kfree_skb() under spin_lock_irqsave()
ddb864ea9ca2 wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid()
e8ef89e5b89e wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit()
5706d00fde3f wifi: wilc1000: fix potential memory leak in wilc_mac_xmit()
9424ea9d557e wifi: ipw2200: fix memory leak in ipw_wdev_init()
345692e96bb7 wifi: ipw2x00: don't call dev_kfree_skb() under spin_lock_irqsave()
d78d85d84a44 libbpf: Fix btf__align_of() by taking into account field offsets
0c962dcd6bf6 wifi: rtlwifi: Fix global-out-of-bounds bug in _rtl8812ae_phy_set_txpower_limit()
507ad94346da wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave()
037f84c0bfae wifi: libertas: fix memory leak in lbs_init_adapter()
8722f96adece wifi: iwlegacy: common: don't call dev_kfree_skb() under spin_lock_irqsave()
53aa5137560a wifi: rtlwifi: rtl8723be: don't call kfree_skb() under spin_lock_irqsave()
993cd8cf5442 wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under spin_lock_irqsave()
7d2cb8abaad7 wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under spin_lock_irqsave()
b56e60b3b158 wifi: rsi: Fix memory leak in rsi_coex_attach()
3d30678a59af block: bio-integrity: Copy flags when bio_integrity_payload is cloned
cabad071ab17 arm64: dts: qcom: pmk8350: Use the correct PON compatible
0e12d7725d58 arm64: dts: qcom: pmk8350: Specify PBS register for PON
2936952fa626 KEYS: asymmetric: Fix ECDSA use via keyctl uapi
a5fa5a41791c x86/perf/zhaoxin: Add stepping check for ZXC
2c36c390a749 sched/rt: pick_next_rt_entity(): check list_entry
3f191c2cc567 sched/deadline,rt: Remove unused parameter from pick_next_[rt|dl]_entity()
544a552be086 s390/dasd: Fix potential memleak in dasd_eckd_init()
a00cf3619f19 arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM and MPSS memory regions
8173defc3635 blk-mq: correct stale comment of .get_budget
7dd5f83c1149 blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx
5eb99e7a80fc blk-mq: avoid sleep in blk_mq_alloc_request_hctx
20b9d7b4e0e6 arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node
88022f659f63 arm64: dts: mt8192: Fix CPU map for single-cluster SoC
770e769834e1 ARM: dts: imx7s: correct iomuxc gpr mux controller cells
2fe22748d511 ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference
762c821b97a7 arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN
e29709ba5847 arm64: dts: renesas: beacon-renesom: Fix gpio expander reference
3f5ec3c335dd locking/rwsem: Disable preemption in all down_read*() and up_read() code paths
ab4d47a343da locking/rwsem: Optimize down_read_trylock() under highly contended case
ac0e5a181eff arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip
f4891e5725a0 arm64: dts: amlogic: meson-gxbb-kii-pro: fix led node name
665bdfabec52 arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name
f0b5101a6432 arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names
ae03ae3b6b93 arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name
5be0df1849b6 arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux node name
7a5b8cd5622b arm64: dts: amlogic: meson-gx: add missing unit address to rng node name
5c1ce648c6c3 arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names property
d089142bcc73 arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible
f562cc37f0f0 arm64: dts: amlogic: meson-axg: fix SCPI clock dvfs node name
334bb3461204 arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name
88083a25d80a ARM: imx: Call ida_simple_remove() for ida_simple_get
abfdfa339675 ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato
70aac3c6b14d arm64: dts: ti: k3-j7200: Fix wakeup pinmux range
c42defea2db0 ARM: s3c: fix s3c64xx_set_timer_source prototype
af48760133f1 ARM: bcm2835_defconfig: Enable the framebuffer
37858e17e45e ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init()
89895442387d arm64: dts: meson: remove CPU opps below 1GHz for G12A boards
69c7a270357a arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names
feb8c71f015d arm64: dts: qcom: ipq8074: fix Gen3 PCIe node
1563af0f28af arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges
e88204931d9a arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY
d9df682bcea5 arm64: dts: qcom: ipq8074: fix PCIe PHY serdes size
a55a645aa303 arm64: dts: qcom: Fix IPQ8074 PCIe PHY nodes
dd3d021ae547 arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names
8a5d81afa6e1 arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem
76e794cfd137 arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size
10c5fae6f99d arm64: dts: msm8992-bullhead: add memory hole region
410028a170f3 arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address
a240ab41b3bc arm64: dts: meson-g12a: Fix internal Ethernet PHY unit name
472c333be2c2 arm64: dts: meson-gx: Fix Ethernet MAC address unit name
b63bb187696c arm64: dts: qcom: sc7280: correct SPMI bus address cells
9e4063237957 arm64: dts: qcom: sc7180: correct SPMI bus address cells
6ca79943f5e3 arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name
e192005e3f69 arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description
1cc12d10d13a ARM: zynq: Fix refcount leak in zynq_early_slcr_init
a1d42650cf29 arm64: dts: imx8m: Align SoC unique ID node unit address
61ecb2df6923 arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings
738a716d2de6 arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k
a7d6e757169f arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up
795a9a93ed8d arm64: dts: qcom: qcs404: use symbol names for PCIe resets
10fcdad2b9f3 ARM: OMAP2+: Fix memory leak in realtime_counter_init()
e2f62d8302bb powerpc/mm: Rearrange if-else block to avoid clang warning
3959316f8ceb HID: asus: use spinlock to safely schedule workers
d2ce7b6f3ae4 HID: asus: use spinlock to protect concurrent accesses
(From OE-Core rev: 7be1bc5ce77b31bb634bd3572d8553cad127f38e)
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:
7eaef76fbc46 Linux 6.1.20
05650b267e67 UML: define RUNTIME_DISCARD_EXIT
bf899a4b1220 Revert "bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES"
d663e13ca866 filelocks: use mount idmapping for setlease permission check
38327b6cb1fa drm/amd/display: adjust MALL size available for DCN32 and DCN321
02c8fa11f545 drm/amd/display: Allow subvp on vactive pipes that are 2560x1440@60
00e81f191bc0 media: rc: gpio-ir-recv: add remove function
39111cedd7ba media: ov5640: Fix analogue gain control
42d9fb70770f scripts: handle BrokenPipeError for python scripts
9ba7b769cee0 PCI: Add SolidRun vendor ID
b655ba93b51f macintosh: windfarm: Use unsigned type for 1-bit bitfields
69c74104b0e9 alpha: fix R_ALPHA_LITERAL reloc for large modules
f69bbc0bd6d2 powerpc/kcsan: Exclude udelay to prevent recursive instrumentation
07a5f4e69761 powerpc/64: Move paca allocation to early_setup()
be2e726fa03a powerpc/64: Fix task_cpu in early boot when booting non-zero cpuid
5b5fab270f4d powerpc/bpf/32: Only set a stack frame when necessary
71e9501458aa clk: renesas: rcar-gen3: Disable R-Car H3 ES1.*
24c1bd1cd0d1 powerpc/iommu: fix memory leak with using debugfs_lookup()
ac872bb004c3 powerpc/64: Don't recurse irq replay
5759afd5e584 MIPS: Fix a compilation issue
e1f5c4c877af tpm/eventlog: Don't abort tpm_read_log on faulty ACPI address
587a6fda90f3 watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths
09fa1a6b0cdd drm/msm/adreno: fix runtime PM imbalance at unbind
d1a3ca3ad486 adreno: Shutdown the GPU properly
70f12dee2254 drm/amdgpu/soc21: Add video cap query support for VCN_4_0_4
69a56ace8bc2 drm/amdgpu/soc21: don't expose AV1 if VCN0 is harvested
2ef7f829214f ext4: Fix deadlock during directory rename
dc7d4b1a6568 drm/amdgpu: fix return value check in kfd
0a6321657eb8 RISC-V: Don't check text_mutex during stop_machine
324912d6c0c4 riscv: Use READ_ONCE_NOCHECK in imprecise unwinding stack mode
99e9188f9c55 erofs: Revert "erofs: fix kvcalloc() misuse with __GFP_NOFAIL"
ac1968ac3992 af_unix: fix struct pid leaks in OOB support
056b022cfc01 net: dsa: mt7530: permit port 5 to work without port 6 on MT7621 SoC
7a3720361068 SUNRPC: Fix a server shutdown leak
b93ed36b31c3 octeontx2-af: Unlock contexts in the queue context cache in case of fault detection
4de04f8f633c net/smc: fix fallback failed while sendmsg with fastopen
1bd92191773d ethernet: ice: avoid gcc-9 integer overflow warning
accd7904318a ice: Fix DSCP PFC TLV creation
ad7760898469 NFSD: Protect against filesystem freezing
e5febcfbae93 block: fix wrong mode for blkdev_put() from disk_scan_partitions()
49bfd991410b platform: x86: MLX_PLATFORM: select REGMAP instead of depending on it
d391a49ba1b2 platform: mellanox: select REGMAP instead of depending on it
5b5b69e3185f netfilter: conntrack: adopt safer max chain length
b26b85b18469 scsi: sd: Fix wrong zone_write_granularity value during revalidate
8f45d2f32c34 scsi: megaraid_sas: Update max supported LD IDs to 240
715396cca2ce net: tls: fix device-offloaded sendpage straddling records
0ce686fcab32 net: ethernet: mtk_eth_soc: fix RX data corruption issue
324361de111d net: phy: smsc: fix link up detection in forced irq mode
f0c8306c1aa2 btf: fix resolving BTF_KIND_VAR after ARRAY, STRUCT, UNION, PTR
17d0f2e8daa8 bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES
6a9379eba19b btrfs: fix extent map logging bit not cleared for split maps after dropping range
ceb089e2337f m68k: mm: Move initrd phys_to_virt handling after paging_init()
079d37e1624c netfilter: tproxy: fix deadlock due to missing BH disable
03b5128543d3 netfilter: ctnetlink: revert to dumping mark regardless of event type
fcae40e65802 bnxt_en: Avoid order-5 memory allocation for TPA data
796ae31ca256 net: phylib: get rid of unnecessary locking
b734a6f300d5 net: stmmac: add to set device wake up flag when stmmac init phy
0592b05c5085 drm/msm/dpu: clear DSPP reservations in rm release
5ade9afa5c65 drm/msm/dpu: fix clocks settings for msm8998 SSPP blocks
f8049342f829 drm/msm/dpu: drop DPU_DIM_LAYER from MIXER_MSM8998_MASK
1ef5491ca2a4 drm/msm/dpu: fix len of sc7180 ctl blocks
f45cf3ae3068 bpf, sockmap: Fix an infinite loop error when len is 0 in tcp_bpf_recvmsg_parser()
90b40ab29298 ice: copy last block omitted in ice_get_module_eeprom()
287027d8a567 net: caif: Fix use-after-free in cfusbl_device_notify()
34f099b34b42 net: lan78xx: fix accessing the LAN7800's internal phy specific registers from the MAC driver
0b30a06b20e9 perf stat: Fix counting when initial delay configured
e8d7615d8f6f net: use indirect calls helpers for sk_exit_memory_pressure()
14c17c673e1b net: tls: fix possible race condition between do_tls_getsockopt_conf() and do_tls_setsockopt_conf()
34869f8e713e netfilter: nft_quota: copy content when cloning expression
227a7266fcd1 netfilter: nft_last: copy content when cloning expression
5d241eb8a124 selftests: nft_nat: ensuring the listening side is up before starting the client
6fac771473ca net: lan966x: Fix port police support using tc-matchall
25b54f247ea0 ila: do not generate empty messages in ila_xlat_nl_cmd_get_mapping()
78891a3c1e87 drm/msm/dpu: disable features unsupported by QCM2290
a3a087edd049 tls: rx: fix return value for async crypto
a7e0439c25f9 powerpc: dts: t1040rdb: fix compatible string for Rev A boards
ce93f1afc059 nfc: fdp: add null check of devm_kmalloc_array in fdp_nci_i2c_read_device_properties
3ee0c9fb7f46 bgmac: fix *initial* chip reset to support BCM5358
56d67b9788da drm/msm/a5xx: fix context faults during ring switch
ac3af300a2f8 drm/msm/a5xx: fix the emptyness check in the preempt code
84053e7dc47b drm/msm/a5xx: fix highest bank bit for a530
d334248d199f drm/msm/a5xx: fix setting of the CP_PREEMPT_ENABLE_LOCAL register
fa73f67ac0f1 drm/msm: Fix potential invalid ptr free
5dca696143bf drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype
512aa2fd8c9f cifs: improve checking of DFS links over STATUS_OBJECT_NAME_INVALID
b0bb13612292 ext4: Fix possible corruption when moving a directory
17e98a5ede81 scsi: core: Remove the /proc/scsi/${proc_name} directory earlier
0d14555f536a riscv: Add header include guards to insn.h
82f713e8b881 block: fix scan partition for exclusively open device again
573e58f5e7e1 block: Revert "block: Do not reread partition table on exclusively open device"
783c225e910f drm/i915: Populate encoder->devdata for DSI on icl+
bd61a84b5eee drm/i915: Do panel VBT init early if the VBT declares an explicit panel type
e340197a4539 drm/i915: Introduce intel_panel_init_alloc()
87228e1c18dc spi: intel: Check number of chip selects after reading the descriptor
9858e0fb32b6 ipmi:ssif: Add a timer between request retries
8a676b6eb2d5 ipmi:ssif: Increase the message retry time
f12869ff7643 ipmi:ssif: Remove rtc_us_timer
526a177ac635 Input: exc3000 - properly stop timer on shutdown
86e9eb69c0e7 bus: mhi: ep: Change state_lock to mutex
b6dc68ac967a bus: mhi: ep: Power up/down MHI stack during MHI RESET
9ee18ff099b0 udf: Fix off-by-one error when discarding preallocation
a926daa8b13c fs: dlm: fix race setting stop tx flag
3c1bc8ded4e4 fs: dlm: be sure to call dlm_send_queue_flush()
29682b8a3dba fs: dlm: use WARN_ON_ONCE() instead of WARN_ON()
a3b0e9ac3c24 fs: dlm: fix use after free in midcomms commit
387c30389494 fd: dlm: trace send/recv of dlm message and rcom
8885e12aa107 fs: dlm: use packet in dlm_mhandle
cb2849caad02 fs: dlm: remove send repeat remove handling
14c5a584cbf2 fs: dlm: start midcomms before scand
f78892061075 fs: dlm: add midcomms init/start functions
e7935f5af426 fs: dlm: fix log of lowcomms vs midcomms
e136e969d268 KVM: VMX: Do _all_ initialization before exposing /dev/kvm to userspace
adc0dd8b0439 KVM: x86: Move guts of kvm_arch_init() to standalone helper
5daa32be8c02 KVM: VMX: Don't bother disabling eVMCS static key on module exit
afb26bfc01db KVM: VMX: Reset eVMCS controls in VP assist page during hardware disabling
4d72cdd63909 nfc: change order inside nfc_se_io error path
4cd8ffa48800 HID: uhid: Over-ride the default maximum data buffer value with our own
5a144cfe35d8 HID: core: Provide new max_buffer_size attribute to over-ride the default
9cb27b1e76f0 ext4: zero i_disksize when initializing the bootloader inode
35161cec7677 ext4: fix WARNING in ext4_update_inline_data
50a70036ac3a ext4: move where set the MAY_INLINE_DATA flag is set
eb3a695aa71a ext4: fix another off-by-one fsmap error on 1k block filesystems
f3b8cc218bd1 ext4: fix RENAME_WHITEOUT handling for inline directories
f327490e0500 ext4: fix cgroup writeback accounting with fs-layer encryption
f0417bf138af staging: rtl8723bs: Pass correct parameters to cfg80211_get_bss()
4a6d23b76c12 staging: rtl8723bs: Fix key-store index handling
8d2ca666a7b4 drm/connector: print max_requested_bpc in state debugfs
9f6f6f42b9ef drm/display: Don't block HDR_OUTPUT_METADATA on unknown EOTF
d07d152d762d drm/amdgpu: fix error checking in amdgpu_read_mm_registers for nv
a11e210dc595 drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc21
39190482e5d0 drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15
cc4dd679912d x86/CPU/AMD: Disable XSAVES on AMD family 0x17
1c39d126b51b RISC-V: Stop emitting attributes
120f7a928719 fork: allow CLONE_NEWTIME in clone3 flags
a36f845f57a9 perf inject: Fix --buildid-all not to eat up MMAP2
fa4056781ac0 erofs: fix wrong kunmap when using LZMA on HIGHMEM platforms
da8fab32a712 io_uring/uring_cmd: ensure that device supports IOPOLL
fceed91ea1ba btrfs: fix percent calculation for bg reclaim message
99d232798c06 btrfs: fix unnecessary increment of read error stat on write error
cec08b7d1ebc fs: prevent out-of-bounds array speculation when closing a file descriptor
6449a0ba6843 Linux 6.1.19
49393a43c63a staging: rtl8192e: Remove call_usermodehelper starting RadioPower.sh
83d76e3d8b91 staging: rtl8192e: Remove function ..dm_check_ac_dc_power calling a script
7b3eac1950e7 wifi: cfg80211: Partial revert "wifi: cfg80211: Fix use after free for wext"
dc64dc4c80ae tpm: disable hwrng for fTPM on some AMD designs
1cc3fcf63192 Linux 6.1.18
cc4b55a48f4a usb: gadget: uvc: fix missing mutex_unlock() if kstrtou8() fails
58b656177d17 arm64: Reset KASAN tag in copy_highpage with HW tags only
96122e776fe7 arm64: mte: Fix/clarify the PG_mte_tagged semantics
8b38969fa016 arm64: efi: Make efi_rt_lock a raw_spinlock
c6b9c79c3df9 io_uring/poll: allow some retries for poll triggering spuriously
3453b1b0439b io_uring: fix two assignments in if conditions
4ca25c0b74dd media: uvcvideo: Fix race condition with usb_kill_urb
27b5871abd5c drm/i915: Fix system suspend without fbdev being initialized
fb5f2b42650f drm/i915/dp_mst: Add the MST topology state for modesetted CRTCs
6e48e7901e62 drm/display/dp_mst: Fix payload addition on a disconnected sink
efe5ce019a9b drm/display/dp_mst: Fix down message handling after a packet reception error
b30fcedeba64 drm/display/dp_mst: Fix down/up message handling after sink disconnect
6130b22fb677 drm/display/dp_mst: Add drm_atomic_get_old_mst_topology_state()
beb15de99ae8 vDPA/ifcvf: allocate the adapter in dev_add()
dd5d2d8821b2 vDPA/ifcvf: manage ifcvf_hw in the mgmt_dev
6ddb3b805827 vDPA/ifcvf: ifcvf_request_irq works on ifcvf_hw
154c0aea566d vDPA/ifcvf: decouple config/dev IRQ requester and vectors allocator from the adapter
e35beaa142d7 vDPA/ifcvf: decouple vq irq requester from the adapter
c0fca7704f5e vDPA/ifcvf: decouple config IRQ releaser from the adapter
62fb450c4dd2 vDPA/ifcvf: decouple vq IRQ releasers from the adapter
aa2af9353aeb vDPA/ifcvf: alloc the mgmt_dev before the adapter
50da55ec0f04 vDPA/ifcvf: decouple config space ops from the adapter
447d1c9abc84 vDPA/ifcvf: decouple hw features manipulators from the adapter
7ec0076b424e x86/resctl: fix scheduler confusion with 'current'
1f800f6aae57 net: tls: avoid hanging tasks on the tx_lock
f5a21755ee55 soundwire: cadence: Drain the RX FIFO after an IO timeout
51eb90be9fd8 soundwire: cadence: Remove wasted space in response_buf
425cd1b47124 iommu: Attach device group to old domain in error path
4e11ac106f69 RDMA/cma: Distinguish between sockaddr_in and sockaddr_in6 by size
a577aac0dac6 phy: rockchip-typec: Fix unsigned comparison with less than zero
52ec1cae5277 PCI: pciehp: Add Qualcomm quirk for Command Completed erratum
455ed25b5945 PCI: Add ACS quirk for Wangxun NICs
2d07ad44e741 PCI: loongson: Add more devices that need MRRS quirk
29d53c4c5a6f kernel/fail_function: fix memory leak with using debugfs_lookup()
5a7a9efdb193 drivers: base: dd: fix memory leak with using debugfs_lookup()
79ac2b01e033 drivers: base: component: fix memory leak with using debugfs_lookup()
d1c545e44c1e misc: vmw_balloon: fix memory leak with using debugfs_lookup()
4459d1e7bd04 tty: pcn_uart: fix memory leak with using debugfs_lookup()
d1589b73519e PCI: Distribute available resources for root buses, too
bf1ab09d2c45 PCI: Take other bus devices into account when distributing resources
a39f741e6021 PCI: Align extra resources for hotplug bridges properly
8dd58d3c1385 usb: gadget: uvc: Make bSourceID read/write
7a7de5957b8f usb: uvc: Enumerate valid values for color matching
ff542083b105 USB: ene_usb6250: Allocate enough memory for full object
cbf54771bc21 usb: host: xhci: mvebu: Iterate over array indexes instead of using pointer math
b14d188d0d0b USB: gadget: pxa27x_udc: fix memory leak with using debugfs_lookup()
78d9586d8e72 USB: gadget: pxa25x_udc: fix memory leak with using debugfs_lookup()
7a5fdd866017 USB: gadget: lpc32xx_udc: fix memory leak with using debugfs_lookup()
31de0b70ae56 USB: gadget: bcm63xx_udc: fix memory leak with using debugfs_lookup()
be21a66e17ee USB: gadget: gr_udc: fix memory leak with using debugfs_lookup()
b0a8195a84a7 USB: isp1362: fix memory leak with using debugfs_lookup()
542a99cd6ead USB: isp116x: fix memory leak with using debugfs_lookup()
7d2d3bef6d70 USB: fotg210: fix memory leak with using debugfs_lookup()
54166af8941d USB: sl811: fix memory leak with using debugfs_lookup()
e529aeb771ae USB: uhci: fix memory leak with using debugfs_lookup()
dcbe69f4f743 USB: ULPI: fix memory leak with using debugfs_lookup()
610373dd354f USB: chipidea: fix memory leak with using debugfs_lookup()
ce234af49d10 USB: dwc3: fix memory leak with using debugfs_lookup()
04f3cda40e9f staging: pi433: fix memory leak with using debugfs_lookup()
d8c911d3d879 PCI: loongson: Prevent LS7A MRRS increases
bace2a37de7c soundwire: bus_type: Avoid lockdep assert in sdw_drv_probe()
638eeb0e8ade media: uvcvideo: Add GUID for BGRA/X 8:8:8:8
f5a2a15da3bc iio: accel: mma9551_core: Prevent uninitialized variable in mma9551_read_config_word()
be0c84d90807 iio: accel: mma9551_core: Prevent uninitialized variable in mma9551_read_status_word()
2d1716aba462 bus: mhi: ep: Fix the debug message for MHI_PKT_TYPE_RESET_CHAN_CMD cmd
945877c145dd tools/iio/iio_utils:fix memory leak
947530c84044 mei: bus-fixup:upon error print return values of send and receive
f57c2164d082 serial: sc16is7xx: setup GPIO controller later in probe
59aba0393275 tty: serial: fsl_lpuart: disable the CTS when send break signal
765566110eb0 tty: fix out-of-bounds access in tty_driver_lookup_tty()
3c8dce696a66 staging: emxx_udc: Add checks for dma_alloc_coherent()
2f588d0345d6 cacheinfo: Fix shared_cpu_map to handle shared caches at different levels
c68ece7baf2a USB: fix memory leak with using debugfs_lookup()
15aed90f3e05 media: uvcvideo: Silence memcpy() run-time false positive warnings
3c4a3bbe025c media: uvcvideo: Quirk for autosuspend in Logitech B910 and C910
acfed4676a59 media: uvcvideo: Handle errors from calls to usb_string
11196ee3916e media: uvcvideo: Handle cameras with invalid descriptors
2c8ea08b86a5 media: uvcvideo: Remove format descriptions
7b41160db120 PCI/ACPI: Account for _S0W of the target bridge in acpi_pci_bridge_d3()
60ac0a6de6b0 iommu/amd: Fix error handling for pdev_pri_ats_enable()
2ec4d5ef0800 IB/hfi1: Update RMT size calculation
9893771097b2 mfd: arizona: Use pm_runtime_resume_and_get() to prevent refcnt leak
8caa60c20ae1 bootconfig: Increase max nodes of bootconfig from 1024 to 8192 for DCC support
a6426afbca51 firmware/efi sysfb_efi: Add quirk for Lenovo IdeaPad Duet 3
c578a68ffcdc kernel/printk/index.c: fix memory leak with using debugfs_lookup()
2072332c04df tracing: Add NULL checks for buffer in ring_buffer_free_read_page()
92271fc1cc5d thermal: intel: BXT_PMIC: select REGMAP instead of depending on it
69e49f1b5360 thermal: intel: quark_dts: fix error pointer dereference
ada41093fb1b ASoC: mediatek: mt8195: add missing initialization
bb12470672e7 ASoC: zl38060 add gpiolib dependency
daf8c1062d13 nvme-fabrics: show well known discovery name
fe2d9e54165d nvme-tcp: don't access released socket during error recovery
117dc3f6b641 nvme: bring back auto-removal of deleted namespaces during sequential scan
124fee6c62b2 ASoC: apple: mca: Improve handling of unavailable DMA channels
0c398c1c19ff ASoC: apple: mca: Fix SERDES reset sequence
c664c3835519 ASoC: apple: mca: Fix final status read on SERDES reset
f558edac8f6c ASoC: adau7118: don't disable regulators on device unbind
4be26d553a3f loop: loop_set_status_from_info() check before assignment
b0498e95cae7 io_uring: fix size calculation when registering buf ring
1e276e8acb8e rtc: allow rtc_read_alarm without read_alarm callback
6a675a6d57d3 scsi: mpi3mr: Use number of bits to manage bitmap sizes
abfe73c16b29 scsi: mpi3mr: Fix an issue found by KASAN
66050599b980 scsi: ipr: Work around fortify-string warning
926aef60ea64 genirq/ipi: Fix NULL pointer deref in irq_data_get_affinity_mask()
9425d1ee2c0c rtc: sun6i: Always export the internal oscillator
aa7dc954e809 spi: tegra210-quad: Fix iterator outside loop
d6e15f8de5b5 vc_screen: modify vcs_size() handling in vcs_read()
95c131b41f00 tcp: tcp_check_req() can be called from process context
fb987e7a9bd0 ARM: dts: spear320-hmi: correct STMPE GPIO compatible
df2dac168c74 net: dsa: felix: fix internal MDIO controller resource length
9df677d78130 net: dsa: seville: ignore mscc-miim read errors from Lynx PCS
113d2d158f24 net/sched: act_sample: fix action bind logic
af8bfc1add67 net/sched: act_mpls: fix action bind logic
2cabfa2c404d net/sched: act_pedit: fix action bind logic
d3ad82430e9b net/sched: transition act_pedit to rcu and percpu stats
b2036a252381 nfc: fix memory leak of se_io context in nfc_genl_se_io
f19d8f93682a ext4: fix incorrect options show of original mount_opt and extend mount_opt2
2b7cf1bcd447 net/mlx5: Geneve, Fix handling of Geneve object id as error code
a383f5fcc891 net/mlx5e: Verify flow_source cap before using it
2a0b214ab49f net/mlx5: ECPF, wait for VF pages only after disabling host PFs
52e6e7a0bc04 mlx5: fix possible ptp queue fifo use-after-free
234cffda95e1 mlx5: fix skb leak while fifo resync and push
f6c0536b41e6 spi: tegra210-quad: Fix validate combined sequence
7dd49d434d2e 9p/rdma: unmap receive dma buffer in rdma_request()/post_recv()
4f0e9244770f 9p/xen: fix connection sequence
db886cb3ecc6 9p/xen: fix version parsing
896f014a1761 net: fix __dev_kfree_skb_any() vs drop monitor
8dba9e7073a0 octeontx2-pf: Use correct struct reference in test condition
03c3a5584a0a sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop
d28467230dd9 net: sunhme: Fix region request
e3aa5d1bb1b2 octeontx2-pf: Recalculate UDP checksum for ptp 1-step sync packet
e11e4d524eba ipv6: Add lwtunnel encap size of all siblings in nexthop calculation
b232d4e840ed drm/i915: move a Kconfig symbol to unbreak the menu presentation
f94becae90b0 ptp: vclock: use mutex to fix "sleep on atomic" bug
512b6c4b83c9 netfilter: x_tables: fix percpu counter block leak on error path when creating new netns
ffba2d579026 netfilter: ctnetlink: make event listener tracking global
f2ccb36b8f76 netfilter: xt_length: use skb len to match in length_mt6
3dd6ac973351 netfilter: ebtables: fix table blob use-after-free
8291cfdfa6cd netfilter: ip6t_rpfilter: Fix regression with VRF interfaces
1fd3c69f6511 netfilter: conntrack: fix rmmod double-free race
4f25d1dff805 netfilter: ctnetlink: fix possible refcount leak in ctnetlink_create_conntrack()
12a91ade681b watchdog: sbsa_wdog: Make sure the timeout programming is within the limits
ce64f72e988b watchdog: pcwd_usb: Fix attempting to access uninitialized memory
ac099d94e048 watchdog: Fix kmemleak in watchdog_cdev_register
89c682e9d04c watchdog: at91sam9_wdt: use devm_request_irq to avoid missing free_irq() in error path
1bcf3a9846e8 watchdog: rzg2l_wdt: Handle TYPE-B reset for RZ/V2M
edaed0cd7695 watchdog: rzg2l_wdt: Issue a reset before we put the PM clocks
102b82708c15 f2fs: synchronize atomic write aborts
a02a91057652 um: virt-pci: properly remove PCI device from bus
e38d2adf110c um: virtio_uml: move device breaking into workqueue
1954d3cd49d3 um: virtio_uml: mark device as unregistered when breaking it
4e774bf6ea50 um: virtio_uml: free command if adding to virtqueue failed
28ebc1164a45 x86: um: vdso: Add '%rcx' and '%r11' to the syscall clobber list
44b713a24251 netfilter: nf_tables: allow to fetch set elements when table has an owner
13a6366bbfa2 ext4: don't show commit interval if it is zero
aa936286e71a ext4: use ext4_fc_tl_mem in fast-commit replay path
0bf3672946a3 soc: qcom: stats: Populate all subsystem debugfs files
22ddbbff116e f2fs: fix to avoid potential memory corruption in __update_iostat_latency()
cc4bc532acda ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed
84253f3c2dad ubi: Fix UAF wear-leveling entry in eraseblk_count_seq_show()
c670b05127d3 ubi: fastmap: Fix missed fm_anchor PEB in wear-leveling after disabling fastmap
7750be5d3e18 ubifs: ubifs_releasepage: Remove ubifs_assert(0) to valid this process
824452d5e90f ubifs: ubifs_writepage: Mark page dirty after writing inode failed
76c488e8a0e2 ubifs: dirty_cow_znode: Fix memleak in error handling path
0b8beac8a3c5 ubifs: Re-statistic cleaned znode count if commit failed
2ea7195b1950 ubi: Fix possible null-ptr-deref in ubi_free_volume()
26ec45f1c504 ubifs: Fix memory leak in alloc_wbufs()
27b760b81951 ubi: Fix unreferenced object reported by kmemleak in ubi_resize_volume()
b0c951742348 ubi: Fix use-after-free when volume resizing failed
c17e1ae20f6b ubifs: Reserve one leb for each journal head while doing budget
31282bc47fcd ubifs: do_rename: Fix wrong space budget when target inode's nlink > 1
b08071c68b58 ubifs: Fix wrong dirty space budget for dirty inode
f8bd27b6252a ubifs: Rectify space budget for ubifs_xrename()
f9e074845367 ubifs: Rectify space budget for ubifs_symlink() if symlink is encrypted
1c5fdf2d4647 ubifs: Fix memory leak in ubifs_sysfs_init()
7508453ede98 ubifs: Fix build errors as symbol undefined
61aeba0e4b41 ubi: ensure that VID header offset + VID header size <= alloc, size
c8583b4655aa um: vector: Fix memory leak in vector_config
14e8bd4cfae3 f2fs: fix to abort atomic write only during do_exist()
e11707d5f86f f2fs: allow set compression option of files without blocks
05006a1521d8 fs: f2fs: initialize fsdata in pagecache_write()
125f89809501 soc: mediatek: mtk-svs: Use pm_runtime_resume_and_get() in svs_init01()
8fc4291f8de2 soc: mediatek: mtk-svs: reset svs when svs_resume() fail
e05aa300fb69 soc: mediatek: mtk-svs: restore default voltages when svs_init02() fail
0b65ff13f943 f2fs: clear atomic_write_task in f2fs_abort_atomic_write()
4bc488c5ca0e f2fs: correct i_size change for atomic writes
9ad51915f4b3 f2fs: introduce trace_f2fs_replace_atomic_write_block
9a0af7cb1c0b pwm: stm32-lp: fix the check on arr and cmp registers update
094ffaf50bb9 pwm: sifive: Always let the first pwm_apply_state succeed
6b99ebd30d65 soc: mediatek: mtk-svs: Enable the IRQ later
2c82bf3f1762 memory: renesas-rpc-if: Move resource acquisition to .probe()
fbb7c9096342 memory: renesas-rpc-if: Split-off private data from struct rpcif
e59c4d34f8ec soc: mediatek: mtk-pm-domains: Allow mt8186 ADSP default power on
a8f63d747bf7 objtool: Fix memory leak in create_static_call_sections()
4a229379a72e f2fs: fix to avoid potential deadlock
14b3742f34b1 f2fs: don't rely on F2FS_MAP_* in f2fs_iomap_begin
d35290addcba driver: soc: xilinx: fix memory leak in xlnx_add_cb_for_notify_event()
1f4a325933f8 fs/jfs: fix shift exponent db_agl2size negative
6cd37f8232f5 auxdisplay: hd44780: Fix potential memory leak in hd44780_remove()
3abebc503a51 net/sched: Retire tcindex classifier
11585e2f8b9d Linux 6.1.17
deef2947d5f6 Revert "blk-cgroup: dropping parent refcount after pd_free_fn() is done"
b5dae1cd0d83 Revert "blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and blkcg_deactivate_policy()"
8a923980a190 Linux 6.1.16
7c7570791b15 net: avoid double iput when sock_alloc_file fails
5355a120e428 kbuild: Port silent mode detection to future gnu make.
ff9571a4dee9 sbitmap: Try each queue to wake up at least one waiter
d710b1e91bc0 wait: Return number of exclusive waiters awaken
12815a7d8f82 sbitmap: Advance the queue index before waking up a queue
7ebde70510a1 brd: use radix_tree_maybe_preload instead of radix_tree_preload
48d46319bedc qede: avoid uninitialized entries in coal_entry array
f0f427f3858f drm/edid: fix parsing of 3D modes from HDMI VSDB
26cbe4c63d1e drm/edid: fix AVI infoframe aspect ratio handling
832f861a4603 drm/gud: Fix UBSAN warning
be11d0d9c4eb drm/i915: Don't use BAR mappings for ring buffers with LLC
d805c28e11fc drm/i915: Don't use stolen memory for ring buffers with LLC
8551ddbff0c3 drm/radeon: Fix eDP for single-display iMac11,2
c63e43906ba6 drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv
749b249d1ba9 drm/amd: Fix initialization for nbio 7.5.1
bf119a3c9c9f vfio/type1: restore locked_vm
9f0fd4f8ec0c vfio/type1: track locked_vm per dma
a6b2aabe6640 vfio/type1: prevent underflow of locked_vm via exec()
e8c21b19c2d0 vfio/type1: exclude mdevs from VFIO_UPDATE_VADDR
2bed9455db7c iommu/vt-d: Fix PASID directory pointer coherency
fd045119e1ab iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode
01836e56fdd2 bus: mhi: ep: Save channel state locally during suspend and resume
69cc38576293 bus: mhi: ep: Move chan->lock to the start of processing queued ch ring
353aea15d6ed bus: mhi: ep: Only send -ENOTCONN status if client driver is available
189f856e76f5 PCI/DPC: Await readiness of secondary bus after reset
358dbd575101 PCI: Avoid FLR for AMD FCH AHCI adapters
6ea16c1e6853 PCI: hotplug: Allow marking devices as disconnected during bind/unbind
24400824053f PCI: Unify delay handling for reset and resume
ef56d0e0b779 PCI/PM: Observe reset delay irrespective of bridge_d3
d7608b85661b MIPS: DTS: CI20: fix otg power gpio
676465bf756b riscv: ftrace: Reduce the detour code size to half
8d4084ccdfce riscv: ftrace: Remove wasted nops for !RISCV_ISA_C
6e433ccb6844 riscv, mm: Perform BPF exhandler fixup on page fault
49064b50704b riscv: jump_label: Fixup unaligned arch_static_branch function
4c71ccae1d28 riscv: mm: fix regression due to update_mmu_cache change
3e92e7fa24ac riscv: Avoid enabling interrupts in die()
a1f8e6981488 RISC-V: add a spin_shadow_stack declaration
82143faf01dd scsi: ses: Fix slab-out-of-bounds in ses_intf_remove()
414418abc19f scsi: ses: Fix possible desc_ptr out-of-bounds accesses
27067c672980 scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses
0dfe68394cbe scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process()
5ca5470b33e5 scsi: ses: Don't attach if enclosure has no components
7fa1203a1e6f scsi: qla2xxx: Remove increment of interface err cnt
d5da42d99c70 scsi: qla2xxx: Fix erroneous link down
98ee35fb6ffe scsi: qla2xxx: Remove unintended flag clearing
3ee4f1991c54 scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests
494074747091 scsi: qla2xxx: Check if port is online before sending ELS
54bf124b960d scsi: qla2xxx: Fix link failure in NPIV environment
86bdf3ffff8d scsi: aacraid: Allocate cmd_priv with scsicmd
be8301e2d5a8 iommu/amd: Improve page fault error reporting
2ae19ac3ea82 iommu/amd: Add a length limitation for the ivrs_acpihid command-line parameter
4aa738940016 tracing/eprobe: Fix to add filter on eprobe description in README file
b1e96ca73cf9 tools/bootconfig: fix single & used for logical condition
9674390ac540 ring-buffer: Handle race between rb_move_tail and rb_check_pages
313b18c77466 memory tier: release the new_memtier in find_create_memory_tier()
e10a97f68480 ktest.pl: Add RUN_TIMEOUT option with default unlimited
81dca9177d01 ktest.pl: Fix missing "end_monitor" when machine check fails
a467e3e04de6 kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list
76c2ecaf570a ktest.pl: Give back console on Ctrt^C on monitor
71946389a765 mm/thp: check and bail out if page in deferred queue already
f65d6ee1d1c4 mm: memcontrol: deprecate charge moving
58c02890a32c docs: gdbmacros: print newest record
4509a11ec3bc remoteproc/mtk_scp: Move clk ops outside send_lock
9b15b558cdb8 media: ipu3-cio2: Fix PM runtime usage_count in driver unbind
e39c25b0c115 mips: fix syscall_get_nr
6b60250d8a82 dax/kmem: Fix leak of memory-hotplug resources
37d1b326c95c alpha: fix FEN fault handling
deab8114fb67 mm/hwpoison: convert TTU_IGNORE_HWPOISON to TTU_HWPOISON
e6737d97722a panic: fix the panic_print NMI backtrace setting
c61df79a4ed4 regulator: core: Use ktime_get_boottime() to determine how long a regulator was off
d15bc167c6a2 ceph: update the time stamps and try to drop the suid/sgid
faa7b683e436 rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails
bea92c2d45a5 fuse: add inode/permission checks to fileattr_get/fileattr_set
5a66e59e1fd9 arm64: mm: hugetlb: Disable HUGETLB_PAGE_OPTIMIZE_VMEMMAP
17a7cd7bdb68 ARM: dts: exynos: correct TMU phandle in Odroid HC1
dcfb64e88941 ARM: dts: exynos: correct TMU phandle in Odroid XU
7d633d11724f ARM: dts: exynos: correct TMU phandle in Exynos5250
635d07cff6de ARM: dts: exynos: correct TMU phandle in Odroid XU3 family
2b957333aaaf ARM: dts: exynos: correct TMU phandle in Exynos4
3a5c8e52f32d ARM: dts: exynos: correct TMU phandle in Exynos4210
f8187b3faf97 ARM: dts: qcom: sdx55: Add Qcom SMMU-500 as the fallback for IOMMU node
75862e6fe659 ARM: dts: qcom: sdx65: Add Qcom SMMU-500 as the fallback for IOMMU node
688ae6ce05be hwmon: (nct6775) Fix incorrect parenthesization in nct6775_write_fan_div()
57c07e552e0d hwmon: (peci/cputemp) Fix off-by-one in coretemp_label allocation
70a135c6d1e0 dm flakey: fix a bug with 32-bit highmem systems
be360c83f2d8 dm flakey: don't corrupt the zero page
673a3af21d5e dm cache: free background tracker's queued work in btracker_destroy
ea603083f9d7 dm flakey: fix logic when corrupting a bio
b57ba4e95250 thermal: intel: powerclamp: Fix cur_state for multi package system
6f2bce88c134 qede: fix interrupt coalescing configuration
6bfdc8194245 cpuidle: add ARCH_SUSPEND_POSSIBLE dependencies
dd43f8f90206 wifi: cfg80211: Set SSID if it is not already set
22dfb21bf1cd wifi: cfg80211: Fix use after free for wext
b18188e87f1c wifi: ath11k: allow system suspend to survive ath11k
3182ece59779 wifi: rtl8xxxu: Use a longer retry limit of 48
19fcf5d50c5a wifi: rtw88: use RTW_FLAG_POWERON flag to prevent to power on/off twice
2b3c953226cb dm: add cond_resched() to dm_wq_requeue_work()
7f093695b49a dm: add cond_resched() to dm_wq_work()
bc0734f689f8 dm: send just one event on resize, not two
53b2916ebde7 mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type
10aed92f7f6b mtd: spi-nor: spansion: Consider reserved bits in CFR5 register
bd74e1e3dc77 mtd: spi-nor: sfdp: Fix index value for SCCR dwords
a371788d4f4a cxl/pmem: Fix nvdimm registration races
05cbf6ddd984 ext4: refuse to create ea block when umounted
8b6d06b3be76 ext4: optimize ea_inode block expansion
45b99c35f812 jbd2: fix data missing when reusing bh which is ready to be checkpointed
2439ccfa5da2 ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC
98606a002d71 ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls()
daa5a586e43a mm/damon/paddr: fix missing folio_put()
dc3809f39035 crypto: qat - fix out-of-bounds read
d2bea5788847 irqdomain: Fix domain registration race
b89b0c737d1c irqdomain: Fix mapping-creation race
1c89f39e754f irqdomain: Refactor __irq_domain_alloc_irqs()
1b4aa065ea46 irqdomain: Drop bogus fwspec-mapping error handling
b6655a4910a6 irqdomain: Look for existing mapping only once
deb243ca052b irqdomain: Fix disassociation race
33bf92b1d00a irqdomain: Fix association race
82f3b18daef7 selftests: seccomp: Fix incorrect kernel headers search path
5bed9f821f2a selftests: vm: Fix incorrect kernel headers search path
0545d5d25c9e selftests: dmabuf-heaps: Fix incorrect kernel headers search path
88c2276087e3 selftests: drivers: Fix incorrect kernel headers search path
fe2ff9d2af85 selftests: futex: Fix incorrect kernel headers search path
f3b63b7fae23 selftests: ipc: Fix incorrect kernel headers search path
ce31cc0d43fc selftests: perf_events: Fix incorrect kernel headers search path
f7007a7a7723 selftests: mount_setattr: Fix incorrect kernel headers search path
238d9471a70c selftests: move_mount_set_group: Fix incorrect kernel headers search path
33adb9b047be selftests: rseq: Fix incorrect kernel headers search path
d804597155ec selftests: sync: Fix incorrect kernel headers search path
5baeb2a2a247 selftests: ptp: Fix incorrect kernel headers search path
cdc9cfaa0ba0 selftests: user_events: Fix incorrect kernel headers search path
f12ec4e7a80c selftests: filesystems: Fix incorrect kernel headers search path
38fe9e0cbd0f selftests: gpio: Fix incorrect kernel headers search path
277ec3b556b3 selftests: media_tests: Fix incorrect kernel headers search path
2b6933dd5707 selftests: kcmp: Fix incorrect kernel headers search path
1af311d9104c selftests: membarrier: Fix incorrect kernel headers search path
c1017c80fa82 selftests: pidfd: Fix incorrect kernel headers search path
a9588d80b7b0 selftests: clone3: Fix incorrect kernel headers search path
ef3d77238925 selftests: arm64: Fix incorrect kernel headers search path
c490a85e7dac selftests: pid_namespace: Fix incorrect kernel headers search path
168f19fffa65 selftests: core: Fix incorrect kernel headers search path
3005b2695175 selftests: sched: Fix incorrect kernel headers search path
db66ebfba234 selftests/ftrace: Fix eprobe syntax test case to check filter support
991ec754899e selftests/powerpc: Fix incorrect kernel headers search path
3b3016f874fc ima: Align ima_file_mmap() parameters with mmap_file LSM hook
7327b30a0084 ima: fix error handling logic when file measurement failed
1beb41094bbf brd: check for REQ_NOWAIT and set correct page allocation mask
f832bd2ee4c4 brd: return 0/-error from brd_insert_page()
95bb37e077db brd: mark as nowait compatible
3adf063bac2f virt/sev-guest: Return -EIO if certificate buffer is not large enough
38834acf5917 Documentation/hw-vuln: Document the interaction between IBRS and STIBP
08d87c87d646 x86/speculation: Allow enabling STIBP with legacy IBRS
d576547f489c x86/microcode/AMD: Fix mixed steppings support
88d3d95e75f2 x86/microcode/AMD: Add a @cpu parameter to the reloading functions
05749fd36631 x86/microcode/amd: Remove load_microcode_amd()'s bsp parameter
57d9df918745 x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe range
1a3439f548e2 x86/kprobes: Fix __recover_optprobed_insn check optimizing logic
e9d033963606 x86/reboot: Disable SVM, not just VMX, when stopping CPUs
4f555b03a02b x86/reboot: Disable virtualization in an emergency if SVM is supported
77ace6654355 x86/crash: Disable virt in core NMI crash handler to avoid double shootdown
c4765c973c1d x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows)
b261024d7ea8 selftests: x86: Fix incorrect kernel headers search path
32f87ee52113 KVM: SVM: hyper-v: placate modpost section mismatch error
a92d045f3706 KVM: SVM: Fix potential overflow in SEV's send|receive_update_data()
d639b16492fa KVM: x86: Inject #GP on x2APIC WRMSR that sets reserved bits 63:32
14f36160c7d1 KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI
97b2c22ec819 KVM: SVM: Don't put/load AVIC when setting virtual APIC mode
1ccd12324abd KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target
dbc2e9451559 KVM: SVM: Flush the "current" TLB when activating AVIC
59038be57a4a KVM: x86: Don't inhibit APICv/AVIC if xAPIC ID mismatch is due to 32-bit ID
b9e428136129 KVM: x86: Don't inhibit APICv/AVIC on xAPIC ID "change" if APIC is disabled
084a6deb86ab KVM: x86: Blindly get current x2APIC reg value on "nodecode write" traps
688e3a1bf3e4 KVM: x86: Purge "highest ISR" cache when updating APICv state
59320074afa4 KVM: Register /dev/kvm as the _very_ last thing during initialization
b2de2b4d4e00 KVM: VMX: Fix crash due to uninitialized current_vmcs
ccf6a7fb1aed KVM: Destroy target device if coalesced MMIO unregistration fails
5e2d29b58c2c RDMA/siw: Fix user page pinning accounting
42991f51d283 md: don't update recovery_cp when curr_resync is ACTIVE
12d461e224ef udf: Fix file corruption when appending just after end of preallocated extent
1f328751b65c udf: Detect system inodes linked into directory hierarchy
65f64fb9c2ab udf: Preserve link count of system files
6837910aeb2c udf: Do not update file length for failed writes to inline files
adac9ac6d2e0 udf: Do not bother merging very long extents
0e7d8e2991e5 udf: Truncate added extents on failed expansion
21477427ecb4 selftests/landlock: Test ptrace as much as possible with Yama
6c51c0702815 selftests/landlock: Skip overlayfs tests when not supported
fa7e18233f4f fs/cramfs/inode.c: initialize file_ra_state
85cdc9d2c865 ocfs2: fix non-auto defrag path not working issue
8163ea90d89b ocfs2: fix defrag path triggering jbd2 ASSERT
83dbb9a1bd5e f2fs: fix kernel crash due to null io->bio
de33f129253e f2fs: fix cgroup writeback accounting with fs-layer encryption
85e128901583 f2fs: retry to update the inode page given data corruption
f07a8d61b6ea f2fs: fix information leak in f2fs_move_inline_dirents()
9f955165d8d7 fs: dlm: send FIN ack back in right cases
e3df326f8cc2 fs: dlm: move sending fin message into state change handling
83c8cb2ba0ad fs: dlm: don't set stop rx flag after node reset
375009e22bd2 exfat: fix inode->i_blocks for non-512 byte sector size device
0fb929e7553d exfat: redefine DIR_DELETED as the bad cluster number
88384ae34a41 exfat: fix unexpected EOF while reading dir
569a77e5b882 exfat: fix reporting fs error when reading dir beyond EOF
0c80bef0b7d2 fs: hfsplus: fix UAF issue in hfsplus_put_super
8140cdc57bc5 hfs: fix missing hfs_bnode_get() in __hfs_bnode_create
55c9ddf6c656 io_uring: mark task TASK_RUNNING before handling resume/task work
f2e0fd28328f ARM: dts: exynos: correct HDMI phy compatible in Exynos4
77837a24bc54 torture: Fix hang during kthread shutdown phase
6bf555ed8938 ksmbd: fix possible memory leak in smb2_lock()
df6c263a31a4 ksmbd: do not allow the actual frame length to be smaller than the rfc1002 length
2254e82d2018 ksmbd: fix wrong data area length for smb2 lock request
35ab0cadbcc2 locking/rwsem: Prevent non-first waiter from spinning in down_write() slowpath
9b59fb27d4c5 btrfs: hold block group refcount during async discard
155ca832cfa3 scsi: mpi3mr: Remove unnecessary memcpy() to alltgt_info->dmi
8ba997b22f2c scsi: mpi3mr: Fix issues in mpi3mr_get_all_tgt_info()
4e0dfdb48a82 scsi: mpi3mr: Fix missing mrioc->evtack_cmds initialization
f5a6d69857eb cifs: return a single-use cfid if we did not get a lease
c992b699b9cb cifs: Check the lease context if we actually got a lease
f1d84943289e cifs: don't try to use rdma offload on encrypted connections
edf38e9f4269 cifs: split out smb3_use_rdma_offload() helper
363d67103f20 cifs: introduce cifs_io_parms in smb2_async_writev()
e49a6d569d7c cifs: fix mount on old smb servers
8db5028479f8 cifs: Fix uninitialized memory reads for oparms.mode
ab7a12c0efc1 cifs: Fix uninitialized memory read in smb3_qfs_tcon()
12bda36df57b KVM: s390: disable migration mode when dirty tracking is disabled
f9a38f5ecf90 s390/kprobes: fix current_kprobe never cleared after kprobes reenter
70afa77327e0 s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler
a829c5f7c3c6 s390: discard .interp section
24e2c6cfe82e s390/extmem: return correct segment type in __segment_load()
75a499fc9d66 io_uring: fix fget leak when fs don't support nowait buffered read
bfdd27a1eb8e io_uring: remove MSG_NOSIGNAL from recvmsg
68f703ad0355 io_uring/rsrc: disallow multi-source reg buffers
d9399e543062 io_uring: add reschedule point to handle_tw_list()
42fe280e267a io_uring: add a conditional reschedule to the IOPOLL cancelation loop
4c13c6a080ec io_uring: handle TIF_NOTIFY_RESUME when checking for task_work
c981a035dff0 io_uring: use user visible tail in io_uring_poll()
f09fb7ff2ab2 io_uring: Replace 0-length array with flexible array
fe0d40baa4ed ipmi_ssif: Rename idle state and check
605f607f0735 ipmi:ssif: resend_msg() cannot fail
0ad52040d1a9 ipmi: ipmb: Fix the MODULE_PARM_DESC associated to 'retry_time_ms'
9bb9941a9ce4 rtc: pm8xxx: fix set-alarm race
1af0bdca03f3 block: be a bit more careful in checking for NULL bdev while polling
398d8745262d block: clear bio->bi_bdev when putting a bio back in the cache
1796bc1e4499 block: don't allow multiple bios for IOCB_NOWAIT issue
0407aeed3501 firmware: coreboot: framebuffer: Ignore reserved pixel color bits
4ed8dca3d583 scsi: mpt3sas: Remove usage of dma_get_required_mask() API
0d4967202d69 wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu
11d93294b7c3 driver core: fw_devlink: Avoid spurious error message
29bc917b68a6 drm/shmem-helper: Revert accidental non-GPL export
cb26818c8b0d cifs: prevent data race in smb2_reconnect()
07db1151e015 nfsd: don't hand out delegation on setuid files being opened for write
c085476ad346 nfsd: zero out pointers after putting nfsd_files on COPY setup error
3033f2e3cf84 dm cache: add cond_resched() to various workqueue loops
e2c4490d4031 dm thin: add cond_resched() to various workqueue loops
bea13417361a drm/amd/display: Disable HUBP/DPP PG on DCN314 for now
2435156aa768 drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5
42bbbd6594f7 drm/amd/display: Enable P-state validation checks for DCN314
337c3624bcb0 HID: logitech-hidpp: Don't restart communication if not necessary
cf4549343270 scsi: ufs: core: Fix device management cmd timeout flow
3dec769caf33 scsi: snic: Fix memory leak with using debugfs_lookup()
d919f493bb7d drm/amd/display: Do not commit pipe when updating DRR
8e8cff444ec2 pinctrl: at91: use devm_kasprintf() to avoid potential leaks
388bcec9aa91 hwmon: (nct6775) B650/B660/X670 ASUS boards support
49f865f3d7e5 hwmon: (nct6775) Directly call ASUS ACPI WMI method
8fcdbc4bc013 hwmon: (coretemp) Simplify platform device handling
c2191e507147 gfs2: Improve gfs2_make_fs_rw error handling
4bdfa48d7464 drm/amd/display: fix FCLK pstate change underflow
804bdc5fe05d Revert "drm/amdgpu: TA unload messages are not actually sent to psp when amdgpu is uninstalled"
6f5f8d677c7f regulator: s5m8767: Bounds check id indexing into arrays
5e210046e3bd regulator: max77802: Bounds check regulator id against opmode
734350a83b14 ASoC: kirkwood: Iterate over array indexes instead of using pointer math
9a9942cbdb7c ASoC: soc-compress: Reposition and add pcm_mutex
9def1adcd667 drm/msm/dpu: Add DSC hardware blocks to register snapshot
d39202b201d0 docs/scripts/gdb: add necessary make scripts_gdb step
fa4c8baa6bf0 habanalabs: fix bug in timestamps registration code
60be72808501 habanalabs: extend fatal messages to contain PCI info
8f720a79bc66 drm/amd/display: Set hvm_enabled flag for S/G mode
214cdbe17923 drm/drm_print: correct format problem
d50cd50f612a drm: rcar-du: Fix setting a reserved bit in DPLLCR
afc9da1352cd drm: rcar-du: Add quirk for H3 ES1.x pclk workaround
25a6499b1a53 drm/msm/dsi: Add missing check for alloc_ordered_workqueue
2ee8ec2c12cb HID: uclogic: Add support for XP-PEN Deco Pro MW
26ac66039aa7 HID: uclogic: Add support for XP-PEN Deco Pro SW
f415a64eabad HID: uclogic: Add battery quirk
ac3d719de1d9 HID: uclogic: Add frame type quirk
8ce8a443ddd9 drm/amd/display: fix mapping to non-allocated address
83ace0dd67ee drm: amd: display: Fix memory leakage
a0f406db3ede drm/amd: Avoid ASSERT for some message failures
17d649967006 Revert "fbcon: don't lose the console font across generic->chip driver switch"
8dfefa8f424a scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write
82a6debd4e4b drm/amdkfd: Page aligned memory reserve size
12003ad0f35c drm/amd: Avoid BUG() for case of SRIOV missing IP version
107b8b542bb9 drm/radeon: free iio for atombios when driver shutdown
efb332a2037b drm/amd/display: Defer DIG FIFO disable after VID stream enable
dbe9140ed6bf drm/tiny: ili9486: Do not assume 8-bit only SPI controllers
b1c760073925 HID: Add Mapping for System Microphone Mute
457a969bc6f3 drm/omap: dsi: Fix excessive stack usage
8e365f1bd672 drm/amd/display: Fix potential null-deref in dm_resume
223e365ac60a drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h write
8e25eaae471d drm/amd/display: Reduce expected sdp bandwidth for dcn321
d5b286daecb4 drm: panel-orientation-quirks: Add quirk for DynaBook K50
260bdc633d5e drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Tab 3 X90F
fa66c02e4c11 scm: add user copy checks to put_cmsg()
eb726a791087 devlink: Fix TP_STRUCT_entry in trace of devlink health report
3c106b7eb1b6 s390/kfence: fix page fault reporting
c91cca8e39d4 hv_netvsc: Check status in SEND_RNDIS_PKT completion message
20a89a4442d1 wifi: rtw89: debug: avoid invalid access on RTW89_DBG_SEL_MAC_30
7dbb8ceea188 Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE
8917270ace46 Bluetooth: btusb: Add new PID/VID 0489:e0f2 for MT7921
25ea81801072 Bluetooth: Fix issue with Actions Semi ATS2851 based devices
5100c4efc306 PM: EM: fix memory leak with using debugfs_lookup()
cde67cb7d2d1 PM: domains: fix memory leak with using debugfs_lookup()
15cffd01ed80 time/debug: Fix memory leak with using debugfs_lookup()
611c39021710 s390/idle: mark arch_cpu_idle() noinstr
ab28522da564 uaccess: Add minimum bounds check on kernel buffer size
7d10fc49d8fa coda: Avoid partial allocation of sig_inputArgs
b79c51d0c085 net/mlx5: fw_tracer: Fix debug print
f4c1138d37c3 ACPI: video: Fix Lenovo Ideapad Z570 DMI match
c09feaa46a51 wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup
331918f22a1d tools/power/x86/intel-speed-select: Add Emerald Rapid quirk
ad04399765e3 gcc-plugins: drop -std=gnu++11 to fix GCC 13 build
9427584c2f15 can: isotp: check CAN address family in isotp_bind()
3b26e45ce1e1 netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj()
531570a18761 s390/mm,ptdump: avoid Kasan vs Memcpy Real markers swapping
ab5fd43a8abc m68k: Check syscall_trace_enter() return code
5f56767fb5f2 net: bcmgenet: Add a check for oversized packets
94b28dc12f40 crypto: hisilicon: Wipe entire pool on error
856dbac0a82e clocksource: Suspend the watchdog temporarily when high read latency detected
e52bddc469d9 thermal: intel: intel_pch: Add support for Wellsburg PCH
7e4edf9ab030 bpf, docs: Fix modulo zero, division by zero, overflow, and underflow
05841af18d4b ACPI: Don't build ACPICA with '-Os'
2aa469e6cd10 ice: add missing checks for PF vsi type
f0cf125056ac ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB
6965c92ef421 inet: fix fast path in __inet_hash_connect()
61d0163e2be7 wifi: mt7601u: fix an integer underflow
ecb980dc7970 wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out-of-bounds
d29e44273980 bpftool: Always disable stack protection for BPF objects
2135dd1be685 x86/bugs: Reset speculation control settings on init
3a43a366ecaa timers: Prevent union confusion from unexpected restart_syscall()
c115d466bed2 thermal: intel: Fix unsigned comparison with less than zero
982a936329d2 wifi: ath11k: debugfs: fix to work with multiple PCI devices
5a2153b83c8e rcu-tasks: Handle queue-shrink/callback-enqueue race condition
94ed8ac1bb1a rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
2c4d26dad76e srcu: Delegate work to the boot cpu if using SRCU_SIZE_SMALL
05737bd85c10 rcu: Suppress smp_processor_id() complaint in synchronize_rcu_expedited_wait()
4a501b4ef881 rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks
881f50d76c38 wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds()
d6ea1ca1d456 wifi: ath11k: fix monitor mode bringup crash
1f137c634a8c wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect()
8ea364aba332 perf/x86/intel/uncore: Add Meteor Lake support
b78434f6eee0 cpuidle: lib/bug: Disable rcu_is_watching() during WARN/BUG
463ef209628e cpuidle: drivers: firmware: psci: Dont instrument suspend code
909eb5116ee5 x86/fpu: Don't set TIF_NEED_FPU_LOAD for PF_IO_WORKER threads
a3a54e6a021c cpuidle, intel_idle: Fix CPUIDLE_FLAG_INIT_XSTATE
cc5541f8cca3 arm64: zynqmp: Enable hs termination flag for USB dwc3 controller
063c7d86ee89 btrfs: scrub: improve tree block error reporting
3036f5f5ae52 trace/blktrace: fix memory leak with using debugfs_lookup()
81c1188905f8 blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and blkcg_deactivate_policy()
029f1f1efa84 blk-cgroup: dropping parent refcount after pd_free_fn() is done
bf8eb1fd6110 blk-iocost: fix divide by 0 error in calc_lcoefs()
377f7d85bd27 fs: Use CHECK_DATA_CORRUPTION() when kernel bugs are detected
f2a6198f5ed7 ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy
711bd1b55329 exit: Detect and fix irq disabled state in oops
982f8ef8ec7e context_tracking: Fix noinstr vs KASAN
0f688febd5d2 udf: Define EFSCORRUPTED error code
938b99be5219 arm64: dts: qcom: msm8996: Add additional A2NoC clocks
1d9452ae3bdb ARM: OMAP2+: omap4-common: Fix refcount leak bug
4a46f52ae8f0 rpmsg: glink: Release driver_override
09699f0e5b69 rpmsg: glink: Avoid infinite loop on intent for missing channel
5df521e0b2cb media: saa7134: Use video_unregister_device for radio_dev
479796534a45 media: usb: siano: Fix use after free bugs caused by do_submit_urb
69a9a301a5d8 media: i2c: ov7670: 0 instead of -EINVAL was returned
5259b92dc466 media: atomisp: Only set default_run_mode on first open of a stream/asd
029c1410e345 media: rc: Fix use-after-free bugs caused by ene_tx_irqsim()
ece8818968a8 media: drivers/media/v4l2-core/v4l2-h264 : add detection of null pointers
80f98dc3ebf1 media: amphion: correct the unspecified color space
e66571729a5f media: imx-jpeg: Apply clk_bulk api instead of operating specific clk
756901c49ee8 media: hantro: Fix JPEG encoder ENUM_FRMSIZE on RK3399
3fca02c42689 media: v4l2-jpeg: ignore the unknown APP14 marker
1cfbe44e0c7d media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data
972bd67c2c7b media: platform: mtk-mdp3: fix Kconfig dependencies
689bd2b43d46 media: platform: mtk-mdp3: remove unused VIDEO_MEDIATEK_VPU config
ebec3d44b874 media: camss: csiphy-3ph: avoid undefined behavior
e68b43980a90 media: platform: mtk-mdp3: Fix return value check in mdp_probe()
9ffaf55e126c media: i2c: imx219: Fix binning for RAW8 capture
248fdc5dd225 media: i2c: imx219: Split common registers from mode tables
ac93f8ac66e6 media: i2c: ov772x: Fix memleak in ov772x_probe()
f5a4e595bce5 media: mc: Get media_device directly from pad
a40d94f0b314 media: ov5640: Handle delays when no reset_gpio set
8064bbb75481 media: ov5640: Fix soft reset sequence and timings
49b849824b98 media: ov5675: Fix memleak in ov5675_init_controls()
fc33380ae06f media: ov2740: Fix memleak in ov2740_init_controls()
724039e013b3 media: max9286: Fix memleak in max9286_v4l2_register()
9753f5ce9ce7 builddeb: clean generated package content
8570655c0f9b s390/vdso: Drop '-shared' from KBUILD_CFLAGS_64
8630e8b10250 powerpc: Remove linker flag from KBUILD_AFLAGS
4bc6977fb45c media: imx: imx7-media-csi: fix missing clk_disable_unprepare() in imx7_csi_init()
bc8681485312 media: platform: ti: Add missing check for devm_regulator_get
8a316112fd97 media: ti: cal: fix possible memory leak in cal_ctx_create()
dc5887dcc538 remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers
0e27e6598201 Revert "remoteproc: qcom_q6v5_mss: map/unmap metadata region before/after use"
eeaf35f4e3b3 IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors
db5f82e3a78b IB/hfi1: Fix math bugs in hfi1_can_pin_pages()
b7967f175e79 RDMA/rxe: Fix missing memory barriers in rxe_queue.h
0f2a0ebb89a7 RDMA/rxe: cleanup some error handling in rxe_verbs.c
f56c87aee1f8 iommu/vt-d: Allow to use flush-queue when first level is default
2d93a340ae31 iommu/vt-d: Fix error handling in sva enable/disable paths
8ae211370261 dmaengine: ptdma: check for null desc before calling pt_cmd_callback
c387ee97aebe dmaengine: dw-axi-dmac: Do not dereference NULL structure
03fece43fa10 dmaengine: sf-pdma: pdma_desc memory leak fix
1bfe5bce1baa iommu/amd: Do not identity map v2 capable device when snp is enabled
4c23124b45ee iommu: Fix error unwind in iommu_group_alloc()
24278dc380aa iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry()
f139c15c6cc6 PCI: qcom: Fix host-init error handling
fe5955b11f6e phy: rockchip-typec: fix tcphy_get_mode error case
fe6a1fbe83f5 PCI: Fix dropping valid root bus resources with .end = zero
6bce9ec9e0fa dmaengine: dw-edma: Fix readq_ch() return value truncation
9f53d9d8bc81 usb: host: fsl-mph-dr-of: reuse device_set_of_node_from_dev
775f970ec978 mtd: mtdpart: Don't create platform device that'll never probe
3dd596616d10 driver core: fw_devlink: Make cycle detection more robust
a3c171751512 driver core: fw_devlink: Improve check for fwnode with no device/driver
7a8ce4d2fbbc driver core: fw_devlink: Consolidate device link flag computation
16aa2487cf15 driver core: fw_devlink: Allow marking a fwnode link as being part of a cycle
eaf9b5612a47 driver core: fw_devlink: Don't purge child fwnode's consumer links
2455b81afe68 driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links
9795ece3a85b tty: serial: imx: disable Ageing Timer interrupt request irq
efe4bd88ab2c tty: serial: imx: Handle RS485 DE signal active high
a65192fc80a6 serial: fsl_lpuart: fix RS485 RTS polariy inverse issue
b3bd44bf20cb RDMA/irdma: Cap MSIX used to online CPUs + 1
59b040cf3339 usb: max-3421: Fix setting of I/O pins
2cfc00e974d7 RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish()
bc6405bca868 power: supply: remove faulty cooling logic
c1abca193874 iommu/vt-d: Set No Execute Enable bit in PASID table entry
bbbeb5414a9c iommu/dart: Fix apple_dart_device_group for PCI groups
78b291ba2906 iommu: dart: Support >64 stream IDs
1ad8b31653e2 iommu: dart: Add suspend/resume support
c7bd4bfd4b8e PCI: mt7621: Delay phy ports initialization
26bd2b5b18e1 phy: mediatek: remove temporary variable @mask_
dca51010f772 usb: gadget: configfs: Restrict symlink creation is UDC already binded
8c2059513e54 usb: musb: mediatek: don't unregister something that wasn't registered
a661cccff059 RDMA/cxgb4: add null-ptr-check after ip_dev_find()
fe9dd008b186 tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case
351c8d8650d1 usb: early: xhci-dbc: Fix a potential out-of-bound memory access
c169890b5f7b fpga: microchip-spi: rewrite status polling in a time measurable way
e9ed12b8c7f7 fpga: microchip-spi: move SPI I/O buffers out of stack
d937ab794b8d dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers
bdefbe1b0fd5 fotg210-udc: Add missing completion handler
e851996b3226 firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle
29274780dda0 drivers: base: transport_class: fix resource leak when transport_add_device() fails
e77745640f8f drivers: base: transport_class: fix possible memory leak
8fe72b8f59f6 driver core: location: Free struct acpi_pld_info *pld before return false
d1dbff10c6cd driver core: fix resource leak in device_add()
a68a09cc4b0f misc: fastrpc: Fix an error handling path in fastrpc_rpmsg_probe()
942c1239ff2e misc/mei/hdcp: Use correct macros to initialize uuid_le
023bf26fde38 mei: pxp: Use correct macros to initialize uuid_le
055891397f53 VMCI: check context->notify_page after call to get_user_pages_fast() to avoid GPF
77968ae69d4f firmware: stratix10-svc: fix error handle while alloc/add device failed
6fcedeadb3ef firmware: stratix10-svc: add missing gen_pool_destroy() in stratix10_svc_drv_probe()
959dd00ed4d8 applicom: Fix PCI device refcount leak in applicom_init()
23b534e82dbd eeprom: idt_89hpesx: Fix error handling in idt_init()
1b00494c8f92 Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in set_protocol"
d9b85a205d95 serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init()
64096d3b8d11 tty: serial: fsl_lpuart: clear LPUART Status Register in lpuart32_shutdown()
dc8ca4fb36af tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown()
7f8d2f78ae62 hwtracing: hisi_ptt: Only add the supported devices to the filters list
6bb43ee46310 PCI: endpoint: pci-epf-vntb: Add epf_ntb_mw_bar_clear() num_mws kernel-doc
16c06d34e27c PCI: endpoint: pci-epf-vntb: Clean up kernel_doc warning
86c1988d2695 PCI: switchtec: Return -EFAULT for copy_to_user() errors
41e9ad787fab PCI/IOV: Enlarge virtfn sysfs name buffer
c13e1a90fbf5 usb: typec: intel_pmc_mux: Don't leak the ACPI device reference count
1a31f1c5062d coresight: cti: Add PM runtime call in enable_store
431d8b2d1457 coresight: cti: Prevent negative values of enable count
b0081745f6e6 coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR
5029464da930 media: uvcvideo: Refactor power_line_frequency_controls_limited
54858223a925 media: uvcvideo: Refactor uvc_ctrl_mappings_uvcXX
367703c3ec4f media: uvcvideo: Implement mask for V4L2_CTRL_TYPE_MENU
aeab0c3644d3 media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible()
9b1f0df64946 alpha/boot/tools/objstrip: fix the check for ELF header
fe4dd80d58ec kobject: Fix slab-out-of-bounds in fill_kobj_path()
f3ffd86915ed kobject: modify kobject_get_path() to take a const *
7cf515bf9e8c driver core: fix potential null-ptr-deref in device_add()
65e07272b6c0 soundwire: cadence: Don't overflow the command FIFOs
bb2b4edaff38 i2c: designware: fix i2c_dw_clk_rate() return size to be u32
061609b555d4 usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe()
4f3dea31bfa1 iio: light: tsl2563: Do not hardcode interrupt trigger type
fa87cf2e756e RDMA/hns: Fix refcount leak in hns_roce_mmap
59d54a65151d dmaengine: HISI_DMA should depend on ARCH_HISI
8372207b009d RDMA/erdma: Fix refcount leak in erdma_mmap
bd93358f11d8 dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0
9cca3a4933ca mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read()
bcb57fd95534 mfd: cs5535: Don't build on UML
a52a2817d2aa objtool: add UACCESS exceptions for __tsan_volatile_read/write
2267c88f0499 perf tests stat_all_metrics: Change true workload to sleep workload for system wide check
adb2cfd3f2f4 printf: fix errname.c list
17f9131ef7c3 perf record: Fix segfault with --overwrite and --max-size
718eaef01e5a selftests: use printf instead of echo -ne
947de2882d42 selftests/ftrace: Fix bash specific "==" operator
96acb09a34ac selftests: find echo binary to use -ne options
13b56886c165 sparc: allow PM configs for sparc32 COMPILE_TEST
25fc1a80010b perf tools: Fix auto-complete on aarch64
cf21aaac3b0e perf test bpf: Skip test if kernel-debuginfo is not present
c795162b15ff perf intel-pt: Do not try to queue auxtrace data on pipe
67f1f53cfc97 perf inject: Use perf_data__read() for auxtrace
f86d50bf1969 tools/tracing/rtla: osnoise_hist: use total duration for average calculation
0cd7777c7476 leds: simatic-ipc-leds-gpio: Make sure we have the GPIO providing driver
d5a8fe4c3ff3 leds: is31fl319x: Wrap mutex_destroy() for devm_add_action_or_rest()
d880981b8222 leds: led-core: Fix refcount leak in of_led_get()
062547cbcd05 perf llvm: Fix inadvertent file creation
4750fc5f50bb gfs2: jdata writepage fix
212c79117f8c cifs: use tcon allocation functions even for dummy tcon
41832c62a75d cifs: Fix warning and UAF when destroy the MR list
c51ae01104b3 cifs: Fix lost destroy smbd connection when MR allocate failed
349eb7df6607 NFSD: copy the whole verifier in nfsd_copy_write_verifier
6851b4203e76 nfsd: don't fsync nfsd_files on last close
521b6116151b nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open
598e2d5d911d NFSD: fix problems with cleanup on errors in nfsd4_copy
75b8c681c563 nfsd: clean up potential nfsd_file refcount leaks in COPY codepath
17f2a1a3cdea nfsd: fix race to check ls_layouts
9f0df37520a2 NFSD: fix leaked reference count of nfsd4_ssc_umount_item
c8b346b79a70 NFSD: enhance inter-server copy cleanup
659d4c4ca537 drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt()
7c3a7f3aa134 ALSA: hda/hdmi: Register with vga_switcheroo on Dual GPU Macbooks
ac55ee431c03 hid: bigben_probe(): validate report count
f2bf592ebd50 HID: bigben: use spinlock to safely schedule workers
cc0f24739d90 HID: bigben_worker() remove unneeded check on report_field
d829fae53dae HID: bigben: use spinlock to protect concurrent accesses
1c3609ee824e ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared
d217a3b66bf2 spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one()
f859788868c4 NFS: fix disabling of swap
087245878d51 nfs4trace: fix state manager flag printing
5b8cd07aba15 dm: remove flush_scheduled_work() during local_exit()
0924b13f218e ASoC: tlv320adcx140: fix 'ti,gpio-config' DT property init
007374a1b4fb hwmon: (mlxreg-fan) Return zero speed for broken fan
e4aac4fb1dfe spi: bcm63xx-hsspi: Fix multi-bit mode setting
3e2e193d5d8a HID: logitech-hidpp: Hard-code HID++ 1.0 fast scroll support
062024bf77e9 drm/amd/display: don't call dc_interrupt_set() for disabled crtcs
7839422bed58 ASoC: codecs: lpass: fix incorrect mclk rate
7b642273438c ASoC: codecs: lpass: register mclk after runtime pm
adcc7c98ce4c ASoC: qcom: q6apm-dai: Add SNDRV_PCM_INFO_BATCH flag
cd57b2898a81 ASoC: qcom: q6apm-dai: fix race condition while updating the position pointer
91b7ce0cfff7 ASoC: qcom: q6apm-lpass-dai: unprepare stream if its already prepared
c95f4de66352 HID: retain initial quirks set up when creating HID devices
f380b1060ab0 HID: multitouch: Add quirks for flipped axes
be2876e01ad6 scsi: aic94xx: Add missing check for dma_map_single()
847cdbdcd5a2 scsi: mpt3sas: Fix a memory leak
099bd0a7b363 drm/amdgpu: fix enum odm_combine_mode mismatch
f716ca292a7d ALSA: hda: Fix the control element identification for multiple codecs
355d109fb6b7 hwmon: (ltc2945) Handle error case in ltc2945_value_store
c710243ed668 hwmon: (asus-ec-sensors) add missing mutex path
7b56f11cde26 regulator: tps65219: use generic set_bypass()
265fdccd77d4 ASoC: dt-bindings: meson: fix gx-card codec node regex
9eecb446fab0 ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params()
c3acfb79bde7 ASoC: rsnd: fixup #endif position
93bc34805393 regmap: apply reg_base and reg_downshift for single register ops
8a722ac86b7e dm: improve shrinker debug names
53b7166927b0 ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove()
bbded1ed4c44 ASoC: mchp-spdifrx: fix controls that works with completion mechanism
9e72142dcc06 ASoC: mchp-spdifrx: fix return value in case completion times out
2967cc9cf38f ASoC: mchp-spdifrx: fix controls which rely on rsr register
4eeeccf07dd9 spi: dw_bt1: fix MUX_MMIO dependencies
eee97569465a ASoC: topology: Properly access value coming from topology file
1f874b9cd790 gpio: vf610: connect GPIO label to dev name
9a576e668411 dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp-ccorr
5ee1bce74c5f ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress()
7b551a501fa7 drm/mediatek: Clean dangling pointer on bind error path
67ea657c7891 drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc
c21de3b3bcd1 drm/mediatek: Drop unbalanced obj unref
407f40df3b60 drm/mediatek: Use NULL instead of 0 for NULL pointer
6a46566628b1 drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd
dd5e3d8300e2 drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update()
a52c45560053 pinctrl: renesas: rzg2l: Fix configuring the GPIO pins as interrupts
fbb286284da7 drm/tegra: firewall: Check for is_addr_reg existence in IMM check
7009b78bb995 gpu: host1x: Don't skip assigning syncpoints to channels
0906026ac285 gpu: host1x: Fix mask for syncpoint increment register
b15b3e9499cb pinctrl: mediatek: Initialize variable *buf to zero
fa592fa1eeee pinctrl: mediatek: Initialize variable pullen and pullup to zero
6f16121d2205 pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback()
deb9379af500 habanalabs: bugs fixes in timestamps buff alloc
bc579a2ee8b2 drm/msm/mdp5: Add check for kzalloc
dd49cef313e6 drm/msm/dpu: Add check for pstates
42442d42c57b drm/msm/dpu: Add check for cstate
17f092f4c03a drm/msm: use strscpy instead of strncpy
2ef3ea75c4be drm/msm/dpu: sc7180: add missing WB2 clock control
473cc5169994 scsi: ufs: exynos: Fix DMA alignment for PAGE_SIZE != 4096
243a79c3dfd9 drm/msm/dsi: Allow 2 CTRLs on v2.5.0
af28abee67ac drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags
a64eb25a2919 drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness
533d94954412 regulator: tps65219: use IS_ERR() to detect an error pointer
72e330373241 drm/bridge: lt9611: pass a pointer to the of node
30ef50ccdab3 drm/bridge: lt9611: fix clock calculation
59646dabe92d drm/bridge: lt9611: fix programming of video modes
01c42582facf drm/bridge: lt9611: fix polarity programming
d15f67aed9c5 drm/bridge: lt9611: fix HPD reenablement
74131c671fe5 drm/bridge: lt9611: fix sleep mode setup
9e1e236acdc4 drm/msm/dpu: Disallow unallocated resources to be returned
31c4251a20fd drm/msm/gem: Add check for kmalloc
208680ccf7bf drm/amdgpu: Use the sched from entity for amdgpu_cs trace
a8fa33759563 ALSA: hda/ca0132: minor fix for allocation size
7af606b9eb11 drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup()
462a8af60ff4 drm/bridge: tc358767: Set default CLRSIPO count
94589fc6df3e ASoC: fsl_sai: initialize is_dsp_mode flag
7fe652f0f53e scsi: qla2xxx: edif: Fix clang warning
6626b7494a01 scsi: qla2xxx: Fix exchange oversubscription for management commands
3d5376ae518b scsi: qla2xxx: Fix exchange oversubscription
ee8d6231ad07 drm/panel-edp: fix name for IVO product id 854b
c83d0321d89c drm/msm: clean event_thread->worker in case of an error
15e78c7f2ddd drm/vc4: hdmi: Correct interlaced timings again
a9cce4831017 drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5
cc6b67e90717 drm/vc4: hvs: Correct interrupt masking bit assignment for HVS5
22134a4f02d2 drm/vc4: hvs: SCALER_DISPBKGND_AUTOHS is only valid on HVS4
d4bbf52e299d drm/vc4: hvs: Set AXI panic modes
dbef00ef4b9b pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups
601be03fa8b8 pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain
1d0190c62850 pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins
e55f93d67431 drm/msm/hdmi: Add missing check for alloc_ordered_workqueue
3723c4dbcd14 drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init()
9aba03fb5146 hwmon: (ftsteutates) Fix scaling of measurements
41286a53e7f5 drm/vc4: drop all currently held locks if deadlock happens
1a6e6d4996c7 gpu: ipu-v3: common: Add of_node_put() for reference returned by of_graph_get_port_by_id()
df29e4edee96 drm: tidss: Fix pixel format definition
29e9bb28ca0b drm/vc4: dpi: Fix format mapping for RGB565
596f1ba3987e drm/vkms: Fix null-ptr-deref in vkms_release()
bebd60ec3bf2 drm/vkms: Fix memory leak in vkms_init()
d446af74046e drm/bridge: megachips: Fix error handling in i2c_register_driver()
50b43490b028 drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC
1e9d46c765cb drm: mxsfb: DRM_IMX_LCDIF should depend on ARCH_MXC
c9ab539bf930 drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec
0de7fc4d9c01 drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats
b14147464251 drm: Fix potential null-ptr-deref due to drmm_mode_config_init()
92e832252ec4 sefltests: netdevsim: wait for devlink instance after netns removal
672039408784 selftest: fib_tests: Always cleanup before exit
2edd8c192fd2 net/mlx4_en: Introduce flexible array to silence overflow warning
209a8a5d57f9 net: lan966x: Fix possible deadlock inside PTP
2e0b1754dd82 net: bcmgenet: fix MoCA LED control
4bb736b40475 l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register()
5982e3f4886e selftests/net: Interpret UDP_GRO cmsg data as an int value
13457741d4ae net/smc: fix application data exception
f2f46de98c11 net/smc: fix potential panic dues to unprotected smc_llc_srv_add_link()
3d0e30ca57a4 irqchip/irq-bcm7120-l2: Set IRQ_LEVEL for level triggered interrupts
bf12b493caac irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts
bb1cc7fc3e1d bpf: Fix global subprog context argument resolution logic
30651cff1e21 LoongArch, bpf: Use 4 instructions for function address in JIT
cecc68559cd5 xsk: check IFF_UP earlier in Tx path
ccf81ec1f1ed can: esd_usb: Make use of can_change_state() and relocate checking skb for NULL
08d2f6779535 can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a bus error
026ba2f7760e selftests/bpf: Fix xdp_do_redirect on s390x
678ea18d6240 bpf: Zeroing allocated object from slab in bpf memory allocator
8c4615742602 wifi: mac80211: pass 'sta' to ieee80211_rx_data_set_sta()
ec2c00f84678 selftests/bpf: Fix map_kptr test.
9f6756cd0988 thermal/drivers/hisi: Drop second sensor hi3660
2de283088766 tools/lib/thermal: Fix thermal_sampling_exit()
558496d79b8c wifi: mac80211: fix off-by-one link setting
2a0200daeccf wifi: mac80211: avoid u32_encode_bits() warning
1ee0a1d7fb3b wifi: mac80211: Don't translate MLD addresses for multicast
1d7e57d794b5 wifi: mac80211: fix non-MLO station association
acb20912ff3b wifi: mac80211: make rate u32 in sta_set_rate_info_rx()
451fcf6e73e3 wifi: mac80211: move color collision detection report in a delayed work
dfcce7e6948e crypto: crypto4xx - Call dma_unmap_page when done
5f14842b64e0 crypto: octeontx2 - Fix objects shared between several modules
9dadb003e309 ACPI: resource: Do IRQ override on all TongFang GMxRGxx
35ed2f552b0b ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models
332213a34e0a selftests/bpf: Fix out-of-srctree build
225e75dc744f wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize()
2f85c768bea2 wifi: iwl4965: Add missing check for create_singlethread_workqueue()
34f611204ae5 wifi: iwl3945: Add missing check for create_singlethread_workqueue
05a94ebbaed8 clocksource/drivers/riscv: Patch riscv_clock_next_event() jump before first use
c984ddfdf67f RISC-V: time: initialize hrtimer based broadcast clock event device
cfbdf8869fe8 m68k: /proc/hardware should depend on PROC_FS
cf7cf7d1d4c7 crypto: rsa-pkcs1pad - Use akcipher_request_complete
b8dd6200fa8d rds: rds_rm_zerocopy_callback() correct order for list_add_tail()
cd9dff330e89 xen/grant-dma-iommu: Implement a dummy probe_device() callback
fbbe6ddb6062 libbpf: Fix alen calculation in libbpf_nla_dump_errormsg()
fb7f9c3b4461 s390/ap: fix status returned by ap_qact()
673b533fb5b0 s390/ap: fix status returned by ap_aqic()
19e29653c832 s390: vfio-ap: tighten the NIB validity check
8f36f6e5770e net: ipa: generic command param fix
720b2d5621ae Bluetooth: hci_qca: get wakeup status from serdev device handle
64e28ecf44e4 Bluetooth: L2CAP: Fix potential user-after-free
1913ff10fcea Bluetooth: hci_conn: Refactor hci_bind_bis() since it always succeeds
a5f024d0e6f9 cpufreq: davinci: Fix clk use after free
02c90e03e64f OPP: fix error checking in opp_migrate_dentry()
035a80733ec4 tap: tap_open(): correctly initialize socket uid
b4ada752eaf1 tun: tun_chr_open(): correctly initialize socket uid
ee01753c5d45 net: add sock_init_data_uid()
1a71a9eaf32d s390/boot: fix mem_detect extended area allocation
f458b7f354ff s390/mem_detect: rely on diag260() if sclp_early_get_memsize() fails
a5178cd3a802 s390/boot: cleanup decompressor header files
76b53cd95d2b s390/vmem: fix empty page tables cleanup under KASAN
9e1e58525d6c s390/mem_detect: fix detect_memory() error handling
a0d91a48e1a0 irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe
bb755e020abc irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe
65e30bd1310d irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains
ea54b608d85b irqchip: Fix refcount leak in platform_irqchip_probe
dcb8c33561f6 net/mlx5: Enhance debug print in page allocation failure
2a9a5f88e0da wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read
eadd65fc5603 wifi: mt76: add memory barrier to SDIO queue kick
f8baf3e6c389 wifi: mt76: mt7915: fix WED TxS reporting
4cbb876153b6 wifi: mt76: mt7915: fix memory leak in mt7915_mcu_exit
32e1e8b25dbf wifi: mt76: mt7915: call mt7915_mcu_set_thermal_throttling() only after init_work
9d786d1a1ccb bpftool: profile online CPUs instead of possible
daeef81825bf crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware
d0105ef2f05e selftests/bpf: Initialize tc in xdp_synproxy
71c83b54be42 can: rcar_canfd: Fix R-Car V3U GAFLCFG field accesses
d5ed96a1f8d4 kselftest/arm64: Fix enumeration of systems without 128 bit SME
33222abfe48b wifi: iwlwifi: mei: fix compilation errors in rfkill()
24f105f90ad3 s390/bpf: Add expoline to tail calls
bddd22cf5cc2 leds: led-class: Add missing put_device() to led_put()
57c3e1d63b63 crypto: xts - Handle EBUSY correctly
baffb1a112f7 selftests/bpf: Fix vmtest static compilation error
6d1b85adad6f selftests/bpf: Use consistent build-id type for liburandom_read.so
f82708c7965e x86/microcode: Adjust late loading result reporting message
252bb13e2f38 x86/microcode: Check CPU capabilities after late microcode update correctly
45c505d04976 x86/microcode: Add a parameter to microcode_check() to store CPU capabilities
7d8914c998d6 powercap: fix possible name leak in powercap_register_zone()
4d497e8b200a crypto: seqiv - Handle EBUSY correctly
a006aa3eedb8 crypto: essiv - Handle EBUSY correctly
dcdd2198bbff crypto: ccp - Failure on re-initialization due to duplicate sysfs filename
ccf60fee67f4 selftests/bpf: Fix build errors if CONFIG_NF_CONNTRACK=m
b49ff3a2c472 ACPI: battery: Fix missing NUL-termination with large strings
4bb071d9c2db wifi: cfg80211: Fix extended KCK key length check in nl80211_set_rekey_data()
e596b36e15a7 wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup
8f28513d9520 wifi: ath9k: Fix potential stack-out-of-bounds write in ath9k_wmi_rsp_callback()
9acdec72787a wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails
5a84e51f7258 wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback function
d9fedfdf2d0c thermal/drivers/imx_sc_thermal: Fix the loop condition
bb8db9ac0ea2 thermal/drivers/imx_sc_thermal: Drop empty platform remove function
7fe711014e5f wifi: orinoco: check return value of hermes_write_wordrec()
93c3f34ec02f wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU
e09eadf1976a wifi: rtw89: Add missing check for alloc_workqueue
1e336d6bab68 wifi: rtw89: fix potential leak in rtw89_append_probe_req_ie()
de92beb63a4b thermal/drivers/tsens: limit num_sensors to 9 for msm8939
eec28ff90f5f thermal/drivers/tsens: fix slope values for msm8939
1983e2a94c54 thermal/drivers/tsens: Sort out msm8976 vs msm8956 data
574b125bb802 thermal/drivers/tsens: Drop msm8976-specific defines
d7e2be5da9a9 x86/signal: Fix the value returned by strict_sas_size()
f61744f7b45d s390/vfio-ap: fix an error handling path in vfio_ap_mdev_probe_queue()
ec75af7e811d s390/early: fix sclp_early_sccb variable lifetime
0903111d67ef workqueue: Protects wq_unbound_cpumask with wq_pool_attach_mutex
3bfadfd8b62b kselftest/arm64: Fix syscall-abi for systems without 128 bit SME
c5721ba0f25e arm64/cpufeature: Fix field sign for DIT hwcap detection
b20197ece1ff selftests/xsk: print correct error codes when exiting
af76543a8448 selftests/xsk: print correct payload for packet dump
550802b8ed58 ACPICA: nsrepair: handle cases without a return value correctly
8ffe7de184cb platform/chrome: cros_ec_typec: Update port DP VDO
c65b76f6f3e5 crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2
553d8b25cc5e lib/mpi: Fix buffer overrun when SG is too long
62030a49158d rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes()
24f259ce3a7c rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls
a2b0cda452b7 rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose
e9ab0e81bc42 genirq: Fix the return type of kstat_cpu_irqs_sum()
c8a85ad1d8fc ACPICA: Drop port I/O validation for some regions
476dadca0b98 crypto: x86/ghash - fix unaligned access in ghash_setkey()
700aec11cbfc libbpf: Fix invalid return address register in s390
014a1f62706a wifi: wl3501_cs: don't call kfree_skb() under spin_lock_irqsave()
cb96e0164858 wifi: libertas: cmdresp: don't call kfree_skb() under spin_lock_irqsave()
ec1679db9a16 wifi: libertas: main: don't call kfree_skb() under spin_lock_irqsave()
492228fc0b44 wifi: libertas: if_usb: don't call kfree_skb() under spin_lock_irqsave()
9ce142fdb97e wifi: libertas_tf: don't call kfree_skb() under spin_lock_irqsave()
4da483f714b6 wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid()
7f159116d620 wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit()
a1bdecedc7ad wifi: wilc1000: add missing unregister_netdev() in wilc_netdev_ifc_init()
07dcd756e28f wifi: wilc1000: fix potential memory leak in wilc_mac_xmit()
62ec7e8bf42f wifi: ipw2200: fix memory leak in ipw_wdev_init()
b7a05cdce2cc wifi: ipw2x00: don't call dev_kfree_skb() under spin_lock_irqsave()
9e93b377dccf libbpf: Fix btf__align_of() by taking into account field offsets
f1fe40120de6 wifi: rtlwifi: Fix global-out-of-bounds bug in _rtl8812ae_phy_set_txpower_limit()
c7a97f6c73e0 wifi: rtw89: 8852c: rfk: correct DPK settings
6cc41f946aa2 wifi: rtw89: 8852c: rfk: correct DACK setting
afa42dbbb1f2 wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave()
653d13a73e49 wifi: libertas: fix memory leak in lbs_init_adapter()
e81114f49b67 wifi: iwlegacy: common: don't call dev_kfree_skb() under spin_lock_irqsave()
5366c223c0c6 wifi: rtlwifi: rtl8723be: don't call kfree_skb() under spin_lock_irqsave()
3e3962d52ffa wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under spin_lock_irqsave()
231385c75937 wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under spin_lock_irqsave()
c4f1ded67a90 wifi: rsi: Fix memory leak in rsi_coex_attach()
408a8295c896 wifi: mt76: fix coverity uninit_use_in_call in mt76_connac2_reverse_frag0_hdr_trans()
494ceb253aaf wifi: mt76: mt7915: fix unintended sign extension of mt7915_hw_queue_read()
c31759baecfd wifi: mt76: mt7915: drop always true condition of __mt7915_reg_addr()
8dd61e810fa4 wifi: mt76: mt7915: check return value before accessing free_block_num
8b5174a7f25d wifi: mt76: mt7921s: fix slab-out-of-bounds access in sdio host
4469ddf7d5ec wifi: mt76: mt7915: add missing of_node_put()
fba23dfd6f27 block: use proper return value from bio_failfast()
a07836bc0a32 block: bio-integrity: Copy flags when bio_integrity_payload is cloned
3c5059e24a20 block: Fix io statistics for cgroup in throttle path
cbe695b83845 block: sync mixed merged request's failfast with 1st bio's
afc983189496 erofs: relinquish volume with mutex held
1cae3dd88e50 arm64: dts: qcom: pmk8350: Use the correct PON compatible
669b26eb87f6 arm64: dts: qcom: pmk8350: Specify PBS register for PON
066de07e02a9 block: ublk: check IO buffer based on flag need_get_data
c77d664ab8e3 KEYS: asymmetric: Fix ECDSA use via keyctl uapi
2fb6b7006d23 x86/perf/zhaoxin: Add stepping check for ZXC
28057ce72204 perf/x86/intel/ds: Fix the conversion from TSC to perf time
6b4fcc4e8a30 sched/rt: pick_next_rt_entity(): check list_entry
ef3a7ffc0a6f s390/dasd: Fix potential memleak in dasd_eckd_init()
3f82ad843898 arm64: dts: qcom: msm8992-lg-bullhead: Enable regulators
8f21aa36f767 arm64: dts: qcom: msm8992-*: Fix up comments
9fee3bfc9026 arm64: dts: qcom: msm8953: correct TLMM gpio-ranges
b55c3db4ebf8 arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM and MPSS memory regions
16b6a0e91fd3 arm64: dts: qcom: sm8450: drop incorrect cells from serial
c051e3c59b45 arm64: dts: qcom: sm8350: drop incorrect cells from serial
d5f4a0f4ebd7 arm64: dts: qcom: msm8996 switch from RPM_SMD_BB_CLK1 to RPM_SMD_XO_CLK_SRC
02b40796f387 arm64: dts: qcom: msm8996: support using GPLL0 as kryocc input
800141f9b534 blk-mq: correct stale comment of .get_budget
c9cf2f38cb18 blk-mq: Fix potential io hung for shared sbitmap per tagset
b1f6feff7c6a blk-mq: wait on correct sbitmap_queue in blk_mq_mark_tag_wait
ad756d8cae3b blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx
14cea6cc8ad3 blk-mq: avoid sleep in blk_mq_alloc_request_hctx
76e64c9a0a82 ARM: dts: stm32: Update part number NVMEM description on stm32mp131
722ea8e50de8 arm64: dts: mediatek: mt7986: Fix watchdog compatible
d53255b6e005 arm64: dts: mediatek: mt8195: Fix watchdog compatible
2e5186b452e3 arm64: dts: mediatek: mt8186: Fix watchdog compatible
78b3831c4d98 arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node
335d89880d2d arm64: dts: mt8186: Fix CPU map for single-cluster SoC
d7219172bfa6 arm64: dts: mt8192: Fix CPU map for single-cluster SoC
f870eb010ee0 arm64: dts: mt8195: Fix CPU map for single-cluster SoC
3e5ddf2b8438 sbitmap: correct wake_batch recalculation to avoid potential IO hung
0f312961c799 sbitmap: Use single per-bitmap counting to wake up queued tags
b2fbd1c9bd30 sbitmap: remove redundant check in __sbitmap_queue_get_batch
ffdc6932437b ARM: dts: imx7s: correct iomuxc gpr mux controller cells
e6829910b93f ublk_drv: don't probe partitions if the ubq daemon isn't trusted
23e79f75e61b ublk_drv: remove nr_aborted_queues from ublk_device
0f58469c7864 ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference
58dccc65221c arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN
b556778f76f9 arm64: dts: meson: radxa-zero: allow usb otg mode
5379f4aa230d arm64: dts: renesas: beacon-renesom: Fix gpio expander reference
fd38b56f3a6a locking/rwsem: Disable preemption in all down_read*() and up_read() code paths
1c68c6006478 arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip
084f14099af9 arm64: dts: amlogic: meson-gxbb-kii-pro: fix led node name
16b3b00360f4 arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name
e35feeb3fdbe arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names
5c88975800f2 arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name
b362379ddf11 arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux node name
b7f839bc2e5c arm64: dts: amlogic: meson-axg-jethome-jethub-j1xx: fix invalid rtc node name
65d5ffb9639b arm64: dts: amlogic: meson-gxl-s905w-jethome-jethub-j80: fix invalid rtc node name
ce047a265a69 arm64: dts: amlogic: meson-gx: add missing unit address to rng node name
54b3c863762f arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names property
c727f9bb9e42 arm64: dts: amlogic: meson-axg-jethome-jethub-j1xx: fix supply name of USB controller node
79bf95227649 arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible
8edbf0894ba8 arm64: dts: amlogic: meson-axg: fix SCPI clock dvfs node name
0c38c2e2169d arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name
1e0a7b41f503 ARM: imx: Call ida_simple_remove() for ida_simple_get
7f02f32ee66e ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato
a0726e992dbc arm64: dts: ti: k3-j7200: Fix wakeup pinmux range
e1bfd8784cb5 ARM: s3c: fix s3c64xx_set_timer_source prototype
ed4400210105 ARM: bcm2835_defconfig: Enable the framebuffer
addbe278d723 arm64: dts: mediatek: mt8192: Mark scp_adsp clock as broken
ab5968aa3d7b ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init()
a8cc5a1e5005 arm64: dts: meson: remove CPU opps below 1GHz for G12A boards
3eb8dd85321f arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names
130d06c40cea arm64: dts: qcom: ipq8074: fix Gen3 PCIe node
8591695cb68e arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges
3cf94d7fdee7 arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY
8c9554012be6 arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY
03b414e181d2 arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names
d98ab7b969f6 arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem
91475aa72e21 arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size
2dd983e1dd54 arm64: dts: msm8992-bullhead: add memory hole region
3de06621abee arm64: tegra: Fix duplicate regulator on Jetson TX1
3fd1439e7b7d arm64: dts: ti: k3-am62-main: Fix clocks for McSPI
5453ea5d8865 arm64: dts: ti: k3-am62: Enable SPI nodes at the board level
07fc78d8f0c9 cpuidle, intel_idle: Fix CPUIDLE_FLAG_IRQ_ENABLE *again*
4259d9af7ef6 arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address
d314f2947aad arm64: dts: meson-g12a: Fix internal Ethernet PHY unit name
c91352826f3c arm64: dts: meson-gx: Fix Ethernet MAC address unit name
e9cbef47ae0c arm64: dts: meson-axg: jethub-j1xx: Fix MAC address node names
2b9ed2d4d6d1 arm64: dts: meson-gxl: jethub-j80: Fix Bluetooth MAC node name
6194b4422467 arm64: dts: meson-gxl: jethub-j80: Fix WiFi MAC address node
6c8d10d05884 arm64: dts: qcom: sc8280xp: Vote for CX in USB controllers
32785fada583 arm64: dts: qcom: sc8280xp: correct SPMI bus address cells
14af148bcf77 arm64: dts: qcom: sc7280: correct SPMI bus address cells
65e0c74501bc arm64: dts: qcom: sc7180: correct SPMI bus address cells
ce7d894bed1a x86/acpi/boot: Do not register processors that cannot be onlined for x2APIC
681964878331 arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name
57991c89c9b8 arm64: dts: mediatek: mt8186: Fix systimer 13 MHz clock description
ba20e0b2c6d3 arm64: dts: mediatek: mt8195: Fix systimer 13 MHz clock description
242196166ca6 arm64: dts: mediatek: mt8192: Fix systimer 13 MHz clock description
8770843a00af arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description
850fd7deb574 arm64: dts: mediatek: mt8195: Add power domain to U3PHY1 T-PHY
e43a06c73be4 ARM: zynq: Fix refcount leak in zynq_early_slcr_init
45df2f9562fb arm64: dts: imx8m: Align SoC unique ID node unit address
a4598dbf8079 arm64: dts: qcom: sm6125-seine: Clean up gpio-keys (volume down)
ca4dfd29ac90 arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings
f4996d63e721 arm64: dts: qcom: sm6350: Fix up the ramoops node
69283bfc0a7b arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k
53866b5a2ed2 arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up
5cace2e34bd9 arm64: dts: qcom: qcs404: use symbol names for PCIe resets
98df4bdf3b01 ARM: OMAP2+: Fix memory leak in realtime_counter_init()
10949d708742 ata: ahci: Revert "ata: ahci: Add Tiger Lake UP{3,4} AHCI controller"
57edc43c1569 powerpc/mm: Rearrange if-else block to avoid clang warning
ee907829b369 HID: asus: use spinlock to safely schedule workers
7fd279b82157 HID: asus: use spinlock to protect concurrent accesses
(From OE-Core rev: 589915be0e40d09d0581e2392fce025b1aea6970)
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:
d9b4a0c83a2d Linux 5.15.98
937c15e27a63 io_uring: ensure that io_init_req() passes in the right issue_flags
bf7123dd26a0 Linux 5.15.97
cf7f9cd50013 io_uring: add missing lock in io_get_file_fixed
77358093331e USB: core: Don't hold device lock while reading the "descriptors" sysfs file
3b24c980dc07 usb: gadget: u_serial: Add null pointer check in gserial_resume
2d72795ccde2 USB: serial: option: add support for VW/Skoda "Carstick LTE"
02190d23b731 usb: dwc3: pci: add support for the Intel Meteor Lake-M
cc09a7d5a6a1 scripts/tags.sh: fix incompatibility with PCRE2
1aee4ab2c107 scripts/tags.sh: Invoke 'realpath' via 'xargs'
06740b433d9d vc_screen: don't clobber return value in vcs_read
e7f460696340 net: Remove WARN_ON_ONCE(sk->sk_forward_alloc) from sk_stream_kill_queues().
16d319ec18b0 bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state
6dd1de27d771 staging: mt7621-dts: change palmbus address to lower case
07f0c6f9c357 x86/cpu: Add Lunar Lake M
e1b09162f268 HID: core: Fix deadloop in hid_apply_multiplier.
f1ee47003075 neigh: make sure used and confirmed times are valid
2590058fb058 IB/hfi1: Assign npages earlier
4534ea429ed8 ASoC: rt715-sdca: fix clock stop prepare timeout issue
e430f058d90c btrfs: send: limit number of clones and allocated memory size
d454a7212e17 ACPI: NFIT: fix a potential deadlock during NFIT teardown
435e8fabd19a HID: elecom: add support for TrackBall 056E:011C
6bd2f1754393 ARM: dts: rockchip: add power-domains property to dp node on rk3288
839a9c0047a1 arm64: dts: rockchip: drop unused LED mode property from rk3328-roc-cc
503e3d93cf35 Fix XFRM-I support for nested ESP tunnels
765b3a0e0a81 ionic: refactor use of ionic_rx_fill()
(From OE-Core rev: 4961d295599b1c3822752c42891006a49aea8ff3)
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:
42616e0f09fb Linux 6.1.15
c87fb861ec18 USB: core: Don't hold device lock while reading the "descriptors" sysfs file
c49bd6c2dd1b scripts/tags.sh: fix incompatibility with PCRE2
a591d9fd7001 fs: use consistent setgid checks in is_sxid()
89f5f21b960e attr: use consistent sgid stripping checks
c1df288f4495 attr: add setattr_should_drop_sgid()
e44f23ef9160 fs: move should_remove_suid()
18c2750856dc attr: add in_group_or_capable()
118ad80d27d9 drm/amd/display: Properly reuse completion structure
c9d3eb6151b3 usb: typec: pd: Remove usb_suspend_supported sysfs from sink PDO
fb9a79557942 arm64: dts: uniphier: Fix property name in PXs3 USB node
ec357cd3e8af usb: gadget: u_serial: Add null pointer check in gserial_resume
ad5914431b70 USB: serial: option: add support for VW/Skoda "Carstick LTE"
d9651c258d66 usb: dwc3: pci: add support for the Intel Meteor Lake-M
075e2099c32c drm/amd/display: Fix race condition in DPIA AUX transfer
4da108082a32 drm/amd/display: Move DCN314 DOMAIN power control to DMCUB
a595a81df673 vc_screen: don't clobber return value in vcs_read
ea4c208efea4 net: Remove WARN_ON_ONCE(sk->sk_forward_alloc) from sk_stream_kill_queues().
d879a777d148 bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state
f2173508b195 PM: sleep: Avoid using pr_cont() in the tasks freezing code
0c2f28f01fce x86/cpu: Add Lunar Lake M
bcc844436312 selftests: ocelot: tc_flower_chains: make test_vlan_ingress_modify() more comprehensive
56b6ea55f1dc HID: Ignore battery for ELAN touchscreen 29DF on HP
a03cc84f70a0 ASoC: codecs: es8326: Fix DTS properties reading
0412fe1deab1 HID: core: Fix deadloop in hid_apply_multiplier.
b7641733a4a1 neigh: make sure used and confirmed times are valid
6595071a3604 ARM: dts: stihxxx-b2120: fix polarity of reset line of tsin0 port
39cdf021fa05 ASoC: SOF: amd: Fix for handling spurious interrupts from DSP
8988889aaeb5 powerpc: Don't select ARCH_WANTS_NO_INSTR
ce77f44cb9ad IB/hfi1: Assign npages earlier
d06e776698ad ASoC: rt715-sdca: fix clock stop prepare timeout issue
46abcdf96db2 arm64: dts: rockchip: align rk3399 DMC OPP table with bindings
07c5877e1444 btrfs: send: limit number of clones and allocated memory size
91210aca68f3 pinctrl: amd: Fix debug output for debounce time
fdbcacfe495d ACPI: NFIT: fix a potential deadlock during NFIT teardown
1b7730f20355 HID: Ignore battery for Elan touchscreen on Asus TP420IA
0773ecf7bcda HID: elecom: add support for TrackBall 056E:011C
860a9c0509db arm64: dts: rockchip: fix probe of analog sound card on rock-3a
6a63f9795f6e arm64: dts: rockchip: add missing #interrupt-cells to rk356x pcie2x1
59770f4b5237 ARM: dts: rockchip: add power-domains property to dp node on rk3288
69eca8dd3c61 arm64: dts: rockchip: drop unused LED mode property from rk3328-roc-cc
fd606d611560 arm64: dts: rockchip: reduce thermal limits on rk3399-pinephone-pro
0b892d8fe90b Fix XFRM-I support for nested ESP tunnels
(From OE-Core rev: 4ed1c0990a897f8e6bf916de5d75a09b2c9106c9)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
As part of updating linux-yocto-dev to v6.3, lttng-modules needs to
have four backported patches to adjust for the new kernel version.
These are safe for inclusion in the upcoming release, as they are
version protected and provide some future proofing for folks trying
to use newer kernels than our released 6.1.
(From OE-Core rev: e9f0070631b032a143b765874a228674c19d0304)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumping lttng-modules to version v2.13.9-4-g12f43cab, which comprises the following commits:
da1f5a26 Version 2.13.9
dc2d1294 fix: jbd2: use the correct print format (v5.4.229)
d04c1211 fix: jbd2 upper bound for v5.10.163
4b8864fc fix: jbd2: use the correct print format (v5.10.163)
69d3aa79 fix: btrfs: move accessor helpers into accessors.h (v6.2)
We drop our previously backported commits as well, since they are part
of the release.
(From OE-Core rev: 79d8e93adde07ff3a4a239d66649ee566a2437d6)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is to fix build in RISCV64
| In constructor 'symresolution_info::symresolution_info(systemtap_session&, bool)',
| inlined from 'int semantic_pass_symbols(systemtap_session&)' at ../git/elaborate.cxx:1884:28:
| ../git/elaborate.cxx:2601:21: error: storing the address of local variable 'sym' in '*s.systemtap_session::symbol_resolver' [-Werror=dangling-pointer=]
| 2601 | s.symbol_resolver = this; // save resolver for early PR25841 function resolution
| | ~~~~~~~~~~~~~~~~~~^~~~~~
| ../git/elaborate.cxx: In function 'int semantic_pass_symbols(systemtap_session&)':
| ../git/elaborate.cxx:1884:22: note: 'sym' declared here
| 1884 | symresolution_info sym (s);
| | ^~~
| ../git/elaborate.cxx:1884:22: note: 's' declared here
(From OE-Core rev: dcc891059c5f3a17781febfff4a4280b4b7c8754)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Improve the ptest runner script:
* log output is available should any test fail to aid debugging
* document how to limit the runner to a single test
* stop hiding errors to stderr
* allow easier single test execution by avoiding path issues with PWD
Also depend upon binutils since one of the tests uses addr2line.
(From OE-Core rev: 0f111c6eb1673a60663bcdd3d70c0f81bad370c4)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
Add a missing dependency on make so ptests can run in a minimal image.
(From OE-Core rev: 3d0c068cdeaf819a62f5b918a70c36ab4fb86e76)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Tweak the ptest dependencies so they work correctly in minimal images. There
appears to be some usage of find or xargs that doesn't work with busybox.
Also improve the test runner so the test-suite.log is dumped upon error
which makes debugging much easier.
(From OE-Core rev: 6f52a0a9f0f26ac0039af3edd3df22e21bd8a4a7)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In the 6.2+ kernel, arm64 perf has a buildpaths QA warning as
a syscall table is now being dynamically generated. That generated
table includes unistd.h by absolute path, which in turn triggers
the buildpaths QA warning.
This could easily be patched in linux-yocto, but that would
leave the QA issue in perf built from other kernel trees.
So we instead to the following:
- Add the perf tools directory to the include path
- Modify the Makefile to have a relative path to unistd.h and
pass both the relative and absolute path to the generation
script
- Modify the generation script to take the relative location
of unistd.h as a new parameter, and use that in the generated
sycalls.c file
At build, the added include path of the perf source allows the
relative path file to be included, and no buildpaths warning is
generated.
(From OE-Core rev: c8845ab59cd7c28874473618f134a5d45906d6ea)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
pkgconfig is being required to find dependencies for building kernel
native tools, move "inherit pkgconfig" to kernel.bbclass so BSP kernel
recipes can also benefit from it.
(From OE-Core rev: 8a84bd98e3fbc16c782f83064801e469d086911e)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/5.15:
4d335265c101 'Linux 5.15.94-rt59'
c3b4464f5d2b 'Linux 5.15.93-rt58'
c67bd325f576 'Linux 5.15.92-rt57'
48e551ae0f55 'Linux 5.15.86-rt56'
977a63a270ad 'Linux 5.15.85-rt55'
adaa1d9e19a5 'Linux 5.15.79-rt54'
ff3c61c5ead1 'Linux 5.15.76-rt53'
e17260e8d340 'Linux 5.15.73-rt52'
c83f436b7981 'Linux 5.15.71-rt51'
e01c9e3ba82d 'Linux 5.15.70-rt50'
debedeb4264e mm/memcg: Only perform the debug checks on !PREEMPT_RT
1ef2cd0b8676 mm/memcg: Add a comment regarding the release `obj'.
f8d153e08d42 mm/memcg: Add missing counter index which are not update in interrupt.
11624404f67a mm/memcg: Disable migration instead of preemption in drain_all_stock().
0a1f4de6ed4f mm/memcg: Protect memcg_stock with a local_lock_t
3f15202f27da mm/memcg: Opencode the inner part of obj_cgroup_uncharge_pages() in drain_obj_stock()
40dbbd2f9773 mm/memcg: Protect per-CPU counter by disabling preemption on PREEMPT_RT where needed.
6269831106f5 mm/memcg: Disable threshold event handlers on PREEMPT_RT
8da0e71b7b7d mm/memcg: Revert ("mm/memcg: optimize user context object stock access")
(From OE-Core rev: f318c27fdc4ac276743bd37c466e3fc7296bcfd5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/6.1:
fb6c0ef43abf v6.1.12-rt7
18b89fa1b1fa softirq: Wake ktimers thread also in softirq.
d096b2295771 v6.1.12-rt6
(From OE-Core rev: 99f250c4f6ce6112c393f347f496475cf920a7f8)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
d383d0f28eca Linux 5.15.96
49ce63694cae bpf: add missing header file include
80569627ce46 Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child qdiscs"
0c168d7f36d5 lib/Kconfig.debug: Allow BTF + DWARF5 with pahole 1.21+
6ba3de5a8a02 lib/Kconfig.debug: Use CONFIG_PAHOLE_VERSION
0f59e08070ba scripts/pahole-flags.sh: Use pahole-version.sh
3597fd5f9217 kbuild: Add CONFIG_PAHOLE_VERSION
c98077f7598a ext4: Fix function prototype mismatch for ext4_feat_ktype
43cb0369c84a audit: update the mailing list in MAINTAINERS
b5ef61edb1e5 wifi: mwifiex: Add missing compatible string for SD8787
a24eb3f99063 nbd: fix possible overflow on 'first_minor' in nbd_dev_add()
d518ca02542f binder: Gracefully handle BINDER_TYPE_FDA objects with num_fds=0
367d0456c792 binder: Address corner cases in deferred copy and fixup
b345b2200288 binder: fix pointer cast warning
c194fc351fec binder: defer copies of pre-patched txn data
d107b4352284 binder: read pre-translated fds from sender buffer
41d8b591d70a uaccess: Add speculation barrier to copy_from_user()
0d3d5099a50b drm/i915/gvt: fix double free bug in split_2MB_gtt_entry
d835f9c4ede2 powerpc/64s/radix: Fix RWX mapping with relocated kernel
87b3e4f845a2 powerpc/64s/radix: Fix crash with unaligned relocated kernel
0b0e9b5adc8e powerpc/vmlinux.lds: Add an explicit symbol for the SRWX boundary
b6fff8fa4f5b powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned
e7f5e3b60c30 powerpc: use generic version of arch_is_kernel_initmem_freed()
fc58616b198b powerpc: dts: t208x: Disable 10G on MAC1 and MAC2
62302ac5777a can: kvaser_usb: hydra: help gcc-13 to figure out cmd_len
6b539a7dbb49 KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS
78c1d35ed66c KVM: SVM: Skip WRMSR fastpath on VM-Exit if next RIP isn't valid
676248836577 KVM: x86: Fail emulation during EMULTYPE_SKIP on any exception
5456f0d53b4a random: always mix cycle counter in add_latent_entropy()
d2edb20b003e clk: mxl: syscon_node_to_regmap() returns error pointers
04d31929df12 powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G
8ae31d36516b clk: mxl: Fix a clk entry by adding relevant flags
a0583edea4fd clk: mxl: Add option to override gate clks
ef1219115128 clk: mxl: Remove redundant spinlocks
e5580a805472 clk: mxl: Switch from direct readl/writel based IO to regmap based IO
20ea32ad9c99 drm/edid: Fix minimum bpc supported with DSC1.2 for HDMI sink
28985cd17ac7 wifi: rtl8xxxu: gen2: Turn on the rate control
d04d19cf0ead drm/etnaviv: don't truncate physical page address
60b502b3ffea Linux 5.15.95
3f94c70333f6 platform/x86/amd: pmc: add CONFIG_SERIO dependency
1c202909c8b0 net: sched: sch: Fix off by one in htb_activate_prios()
180a1632b6c7 ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak
68c2db8ef56d alarmtimer: Prevent starvation by small intervals and SIG_IGN
35351e3060d6 kvm: initialize all of the kvm_debugregs structure before sending it to userspace
1cbb51d83f56 net/sched: tcindex: search key must be 16 bits
cd9569062d8e i40e: Add checking for null for nlmsg_find_attr()
290e7084926c net/sched: act_ctinfo: use percpu stats
22d0cb47047a flow_offload: fill flags to action structure
d53360d443be drm/i915/gen11: Wa_1408615072/Wa_1407596294 should be on GT list
8174915c7bf3 drm/i915/gen11: Moving WAs to icl_gt_workarounds_init()
43dd56f7bfcb mm/filemap: fix page end in filemap_get_read_batch
a158782b56b0 nilfs2: fix underflow in second superblock position calculations
13bc7dd5b365 ipv6: Fix tcp socket connection with DSCP.
f3326fa5e480 ipv6: Fix datagram socket connection with DSCP.
9c35c81fd6f0 ixgbe: add double of VLAN header when computing the max MTU
59a74da8da75 net: mpls: fix stale pointer if allocation fails during device rename
bf8b820ea0ca net: stmmac: Restrict warning on disabling DMA store and fwd mode
269520bee744 bnxt_en: Fix mqprio and XDP ring checking logic
0428aabbcc15 net: stmmac: fix order of dwmac5 FlexPPS parametrization sequence
1563e998a938 net: openvswitch: fix possible memory leak in ovs_meter_cmd_set()
338f826d3afe net/usb: kalmia: Don't pass act_len in usb_bulk_msg error path
59e30d2bd309 dccp/tcp: Avoid negative sk_forward_alloc by ipv6_pinfo.pktoptions.
becf55394f6a net/sched: tcindex: update imperfect hash filters respecting rcu
3d5f95be49c5 sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list
fa56f164455e net: ethernet: ti: am65-cpsw: Add RX DMA Channel Teardown Quirk
2603a5ca6223 net: bgmac: fix BCM5358 support by setting correct flags
a5e4f2b284dc i40e: add double of VLAN header when computing the max MTU
1f23ca5dba6c ixgbe: allow to increase MTU to 3K with XDP enabled
65d07ae69bd3 revert "squashfs: harden sanity check in squashfs_read_xattr_id_table"
50267cf35ba0 net: Fix unwanted sign extension in netdev_stats_to_stats64()
3775c95ffbc6 Revert "mm: Always release pages to the buddy allocator in memblock_free_late()."
57081f83849c selftest/lkdtm: Skip stack-entropy test if lkdtm is not available
9197daee9eb6 of: reserved_mem: Have kmemleak ignore dynamically allocated reserved mem
8b29a1866f64 hugetlb: check for undefined shift on 32 bit architectures
cca2b3feb701 sched/psi: Fix use-after-free in ep_remove_wait_queue()
c5f2151afb2a ALSA: hda/realtek - fixed wrong gpio assigned
1a3f8c85cd2a ALSA: hda/conexant: add a new hda codec SN6180
ecad2fafd424 mmc: mmc_spi: fix error handling in mmc_spi_probe()
1e06cf04239e mmc: sdio: fix possible resource leaks in some error paths
732e3b293ca3 mmc: jz4740: Work around bug on JZ4760(B)
fdaf88531cfd tcp: Fix listen() regression in 5.15.88.
9a1d92cbeac3 netfilter: nft_tproxy: restrict to prerouting hook
3fc9dc0340e0 platform/x86/amd: pmc: Disable IRQ1 wakeup for RN/CZN
c2cb2c71da50 platform/x86: amd-pmc: Correct usage of SMU version
2dcf115681d4 platform/x86: amd-pmc: Fix compilation when CONFIG_DEBUGFS is disabled
32e3a6c4a756 platform/x86: amd-pmc: Export Idlemask values based on the APU
1723efa4c375 drm/amd/display: Fail atomic_check early on normalize_zpos error
178993157e8c aio: fix mremap after fork null-deref
3cfc5e84ac6f mptcp: do not wait for bare sockets' timeout
e0e93c8599c5 xfs: don't leak btree cursor when insrec fails after a split
294c022a070a xfs: purge dquots after inode walk fails during quotacheck
96f0651a264b xfs: assert in xfs_btree_del_cursor should take into account error
88ccad17784a xfs: don't assert fail on perag references on teardown
ddf1e0fd43b2 xfs: avoid unnecessary runtime sibling pointer endian conversions
5f0e21a4a885 xfs: validate v5 feature fields
ea0ce7c13610 xfs: set XFS_FEAT_NLINK correctly
0cc9f9cc8d91 xfs: detect self referencing btree sibling pointers
4e96f5ace9ac xfs: fix potential log item leak
8abef857eb91 xfs: zero inode fork buffer at allocation
63b8e4cc31fd nvmem: core: fix return value
eac1ad2f5e21 nvmem: core: fix registration vs use race
8f9c4b2a3b13 nvmem: core: fix cleanup after dev_set_name()
14eea6449473 nvmem: core: add error handling for dev_set_name
36a5ae5cf90a platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match
f1cb549bcd0b drm/amd/display: Properly handle additional cases where DCN is not supported
5ca46a04a5c3 nvme-fc: fix a missing queue put in nvmet_fc_ls_create_association
9ed522143f95 s390/decompressor: specify __decompress() buf len to avoid overflow
99875ea9b5b4 net: sched: sch: Bounds check priority
5027084bc097 drm/nouveau/devinit/tu102-: wait for GFW_BOOT_PROGRESS == COMPLETED
4fdc19e4fa23 net: stmmac: do not stop RX_CLK in Rx LPI state for qcs404 SoC
6769cd8a7488 net/rose: Fix to not accept on connected socket
2ddb9fa56665 tools/virtio: fix the vringh test for virtio ring changes
a35c241065ee ASoC: cs42l56: fix DT probe
f312367f5246 bpf, sockmap: Don't let sock_map_{close,destroy,unhash} call itself
e909f5f2aa55 ALSA: hda: Do not unset preset when cleaning up codec
5541d35f5d03 selftests/bpf: Verify copy_register_state() preserves parent/live fields
7814e28c4183 ASoC: Intel: sof_cs42l42: always set dpcm_capture for amplifiers
d15ab7320892 ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers
06f2a84d626a ACPI / x86: Add support for LPS0 callback handler
14a2de5c16f3 riscv: kprobe: Fixup misaligned load text
b5d5f1ad057e kprobes: treewide: Cleanup the error messages for kprobes
2a6853c0ea03 mptcp: fix locking for in-kernel listener creation
(From OE-Core rev: 020944ef921ae2b6923b139bad5f7a79217dace1)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
7d54cb2c26da Linux 6.1.14
de41a146f98e bpf: add missing header file include
a1bc22d04dcf randstruct: disable Clang 15 support
0a1394e07c5d ext4: Fix function prototype mismatch for ext4_feat_ktype
30b3075be48b platform/x86: nvidia-wmi-ec-backlight: Add force module parameter
16f118699259 platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
09e7816c61cd audit: update the mailing list in MAINTAINERS
2c97c5bc0b6f wifi: mwifiex: Add missing compatible string for SD8787
729bad73c01f sh: define RUNTIME_DISCARD_EXIT
af3fae1cb282 s390: define RUNTIME_DISCARD_EXIT to fix link error with GNU ld < 2.36
a783d7f7cb95 powerpc/vmlinux.lds: Don't discard .rela* for relocatable builds
9c87fd4a3044 powerpc/vmlinux.lds: Define RUNTIME_DISCARD_EXIT
bffd0bbf8c55 arch: fix broken BuildID for arm64 and riscv
3e3e4d234d46 arm64: remove special treatment for the link order of head.o
48e9a752ce40 riscv: remove special treatment for the link order of head.o
f977340022ad Bluetooth: btusb: Add more device IDs for WCN6855
9d80f3e60043 x86/static_call: Add support for Jcc tail-calls
c51a456b4179 x86/alternatives: Teach text_poke_bp() to patch Jcc.d32 instructions
75c066485bcb x86/alternatives: Introduce int3_emulate_jcc()
684db631a157 uaccess: Add speculation barrier to copy_from_user()
173cadcece76 nfp: ethtool: fix the bug of setting unsupported port speed
05c91c039139 nfp: ethtool: support reporting link modes
fd2dba8b4a35 powerpc/64s/radix: Fix RWX mapping with relocated kernel
05197a0916f5 selftests: kvm: move declaration at the beginning of main()
0e2dba8c0ebe KVM: x86: fix deadlock for KVM_XEN_EVTCHN_RESET
44610f4c3093 drm/i915: Remove __maybe_unused from mtl_info
185ffdeb772c spi: mediatek: Enable irq before the spi registration
5260618d5783 powerpc: dts: t208x: Disable 10G on MAC1 and MAC2
a169ff38abd0 can: kvaser_usb: hydra: help gcc-13 to figure out cmd_len
63fada296062 KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS
a51ed3943eba KVM: SVM: Skip WRMSR fastpath on VM-Exit if next RIP isn't valid
896143c4333d KVM: x86: Fail emulation during EMULTYPE_SKIP on any exception
3fab7adc2f65 docs: perf: Fix PMU instance name of hisi-pcie-pmu
80cf2b219ebc spi: mediatek: Enable irq when pdata is ready
e933c28aa5cd scsi: hisi_sas: Fix SATA devices missing issue during I_T nexus reset
8ec73f41504b scsi: libsas: Add smp_ata_check_ready_type()
38c5d24d8723 random: always mix cycle counter in add_latent_entropy()
afec25854ca7 sched/psi: Stop relying on timer_pending() for poll_work rescheduling
104cf4cc127b clk: mxl: syscon_node_to_regmap() returns error pointers
65e53eaad077 powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G
3391bea3d6b8 clk: mxl: Fix a clk entry by adding relevant flags
77fee59653c6 clk: mxl: Add option to override gate clks
005b9a123c97 clk: mxl: Remove redundant spinlocks
811bdf228e72 clk: mxl: Switch from direct readl/writel based IO to regmap based IO
0deb50618944 drm/edid: Fix minimum bpc supported with DSC1.2 for HDMI sink
0076bded9663 wifi: rtl8xxxu: gen2: Turn on the rate control
441961c43150 wifi: ath11k: fix warning in dma_free_coherent() of memory chunks while recovery
2af157c9c8f3 drm/etnaviv: don't truncate physical page address
1ac8758e0272 Linux 6.1.13
4419cb8e5b0f net: sched: sch: Fix off by one in htb_activate_prios()
0c89a43beb87 ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak
02f81e0256d0 nvme-pci: refresh visible attrs for cmb attributes
70fdd9831a5f alarmtimer: Prevent starvation by small intervals and SIG_IGN
cfc2faf3a6fe perf/x86: Refuse to export capabilities for hybrid PMUs
747ca7c8a0c7 kvm: initialize all of the kvm_debugregs structure before sending it to userspace
9ca0910b2def KVM: x86/pmu: Disable vPMU support on hybrid CPUs (host PMUs)
8017a161e84e nvme-rdma: stop auth work after tearing down queues in error recovery
e94e1ea596f0 nvme-tcp: stop auth work after tearing down queues in error recovery
513e4b876ec5 net/sched: tcindex: search key must be 16 bits
49f04300d495 i40e: Add checking for null for nlmsg_find_attr()
974cfed82cc9 mm: extend max struct page size for kmsan
eaba8521fd20 mm/gup: add folio to list when folio_isolate_lru() succeed
f16e2f7c52d0 ipv6: Fix tcp socket connection with DSCP.
22e6dc065323 ipv6: Fix datagram socket connection with DSCP.
b6eabfb05c3d ixgbe: add double of VLAN header when computing the max MTU
55c96c5e8e08 igb: Fix PPS input and output using 3rd and 4th SDP
39f797719d5c igb: conditionalize I2C bit banging on external thermal sensor support
c376227845ee net: mpls: fix stale pointer if allocation fails during device rename
54b6082aec17 tipc: fix kernel warning when sending SYN message
863a7de987f0 net: use a bounce buffer for copying skb->mark
92573c6d20c4 net: stmmac: Restrict warning on disabling DMA store and fwd mode
ac6e733f81f8 tracing: Make trace_define_field_ext() static
b444fcc306a7 bnxt_en: Fix mqprio and XDP ring checking logic
c9d483a82848 net: stmmac: fix order of dwmac5 FlexPPS parametrization sequence
e336a9e08618 net: openvswitch: fix possible memory leak in ovs_meter_cmd_set()
b6d204731178 net/sched: act_ctinfo: use percpu stats
02df3170c04a net/usb: kalmia: Don't pass act_len in usb_bulk_msg error path
229461ff0f43 dccp/tcp: Avoid negative sk_forward_alloc by ipv6_pinfo.pktoptions.
736281d45907 ice: xsk: Fix cleaning of XDP_TX frames
bd662ba56187 net/sched: tcindex: update imperfect hash filters respecting rcu
b70ec9872910 sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list
b7ec3971f183 net: ethernet: ti: am65-cpsw: Add RX DMA Channel Teardown Quirk
ec9938d1b56e net: bgmac: fix BCM5358 support by setting correct flags
5fbf79841b3f i40e: add double of VLAN header when computing the max MTU
6d9f1ff81a89 ixgbe: allow to increase MTU to 3K with XDP enabled
a813e55c1086 ice: fix lost multicast packets in promisc mode
2fc3ff76e96f drm/i915/gen11: Wa_1408615072/Wa_1407596294 should be on GT list
e105b5e0d703 drm/vc4: Fix YUV plane handling when planes are in different buffers
fcc6266d0da4 drm/vc4: crtc: Increase setup cost in core clock calculation to handle extreme reduced blanking
b5aa09a0d4b7 revert "squashfs: harden sanity check in squashfs_read_xattr_id_table"
3d16f4d7a1bc net: Fix unwanted sign extension in netdev_stats_to_stats64()
2578123d5bdb Revert "mm: Always release pages to the buddy allocator in memblock_free_late()."
0ed7b542c21c coredump: Move dump_emit_page() to kill unused warning
7f9f6c54da87 freezer,umh: Fix call_usermode_helper_exec() vs SIGKILL
854e1ecff266 gpio: sim: fix a memory leak
54806cb7516c mm/migrate: fix wrongly apply write bit after mkdirty on sparc64
d4d9bdc6946d mm/filemap: fix page end in filemap_get_read_batch
fd71c8d3b005 mm/MADV_COLLAPSE: set EAGAIN on unexpected page refcount
a8ef5109f93c nilfs2: fix underflow in second superblock position calculations
0047bcac7af7 hugetlb: check for undefined shift on 32 bit architectures
c6879a4dcefe sched/psi: Fix use-after-free in ep_remove_wait_queue()
bd302d7db300 ata: libata-core: Disable READ LOG DMA EXT for Samsung MZ7LH
939640b99743 ata: ahci: Add Tiger Lake UP{3,4} AHCI controller
6f07db9550a6 ALSA: hda/realtek: Enable mute/micmute LEDs and speaker support for HP Laptops
789597ef058d ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform.
9755eefe8ae0 ALSA: hda/realtek - fixed wrong gpio assigned
c1de4def2e88 ALSA: hda/conexant: add a new hda codec SN6180
e0089167543e ALSA: hda: Fix codec device field initializan
82645bf4ed02 mmc: mmc_spi: fix error handling in mmc_spi_probe()
f855d31bb38d mmc: sdio: fix possible resource leaks in some error paths
0de3e53eab95 mmc: meson-gx: fix SDIO mode if cap_sdio_irq isn't set
459980cc1448 mmc: jz4740: Work around bug on JZ4760(B)
0a127ac97240 drm/vmwgfx: Do not drop the reference to the handle too soon
14a14da042dd drm/vmwgfx: Stop accessing buffer objects which failed init
020eccac747e drm/amd/display: Fail atomic_check early on normalize_zpos error
dbe3529e816e drm/amd/amdgpu: fix warning during suspend
8da6df028d53 drm: Disable dynamic debug as broken
f1d91f0e9d5a fbdev: Fix invalid page access after closing deferred I/O devices
eb80a7f34f3a vmxnet3: move rss code block under eop descriptor
af126acf01a1 aio: fix mremap after fork null-deref
86e3baf6a6a2 mm: shrinkers: fix deadlock in shrinker debugfs
b184caaf62aa kasan: fix Oops due to missing calls to kasan_arch_is_ready()
50b21bba3626 of: reserved_mem: Have kmemleak ignore dynamically allocated reserved mem
421eea6b41ad selftests: mptcp: userspace: fix v4-v6 test in v6.1
66ec619e4591 ceph: blocklist the kclient when receiving corrupted snap trace
eb253f83d403 ceph: move mount state enum to super.h
b9f21e40135a platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match
b4e79d0c7f9b drm/amd/display: Properly handle additional cases where DCN is not supported
fc64b04297a0 drm/amdgpu: Enable vclk dclk node for gc11.0.3
e9cbb2b0d9f6 drm/amdgpu: enable HDP SD for gfx 11.0.3
488770cbddd8 drm/amd/display: Reset DMUB mailbox SW state after HW reset
383e32fa274a drm/amd/display: Unassign does_plane_fit_in_mall function from dcn3.2
7dbd205349f1 drm/amd/display: Adjust downscaling limits for dcn314
0c42622a573b drm/amd/display: Add missing brackets in calculation
53fb698a8a28 nvme: clear the request_queue pointers on failure in nvme_alloc_io_tag_set
84ea5242b723 nvme: clear the request_queue pointers on failure in nvme_alloc_admin_tag_set
fd646ac5403f nvme-fc: fix a missing queue put in nvmet_fc_ls_create_association
f1eb22d0ff06 s390/decompressor: specify __decompress() buf len to avoid overflow
f6415c9c9a0b net: sched: sch: Bounds check priority
5252655127c7 net: ethernet: mtk_eth_soc: Avoid truncating allocation
07a0e6d20106 drm/nouveau/devinit/tu102-: wait for GFW_BOOT_PROGRESS == COMPLETED
b266c2e72ef3 fscache: Use clear_and_wake_up_bit() in fscache_create_volume_work()
63c12d00d856 powerpc/64: Fix perf profiling asynchronous interrupt handlers
07c53834ec27 net: stmmac: do not stop RX_CLK in Rx LPI state for qcs404 SoC
15aa6a4274fb selftest: net: Improve IPV6_TCLASS/IPV6_HOPLIMIT tests apparmor compatibility
ad549f06e3de net/rose: Fix to not accept on connected socket
5d2cc32c1c10 vdpa: ifcvf: Do proper cleanup if IFCVF init fails
2ad95cb1af7a tools/virtio: fix the vringh test for virtio ring changes
925b1c909d11 ASoC: cs42l56: fix DT probe
749985988148 bpf, sockmap: Don't let sock_map_{close,destroy,unhash} call itself
22fcbb7802b9 ASoC: amd: yc: Add Xiaomi Redmi Book Pro 15 2022 into DMI table
427ca2530da8 ALSA: hda: Do not unset preset when cleaning up codec
544062e65f44 selftests/bpf: Verify copy_register_state() preserves parent/live fields
2cd6e872d88d ASoC: Intel: sof_ssp_amp: always set dpcm_capture for amplifiers
c2241c6c8e21 ASoC: Intel: sof_nau8825: always set dpcm_capture for amplifiers
0a0754ca3c7c ASoC: Intel: sof_cs42l42: always set dpcm_capture for amplifiers
f40f3dd00576 ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers
44bec0e7bf0a ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum610 Wireless
ad5716dea7d8 ASoC: SOF: sof-audio: start with the right widget type
591d69e47a58 ASoC: amd: yc: Add DMI support for new acer/emdoor platforms
d8c594da79bc btrfs: lock the inode in shared mode before starting fiemap
f2e0134b43be btrfs: move the auto defrag code to defrag.c
3fbcd42b3e66 mptcp: fix locking for in-kernel listener creation
c4fcda0def04 mptcp: deduplicate error paths on endpoint creation
03edc4a27dad mptcp: fix locking for setsockopt corner-case
94ed108bf18c mptcp: sockopt: make 'tcp_fastopen_connect' generic
(From OE-Core rev: b32be9bd95a6460181eb8ebe6885515b828f0313)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
e2c1a934fd8e Linux 5.15.94
17170acdc7c8 Documentation/hw-vuln: Add documentation for Cross-Thread Return Predictions
5122e0e44363 KVM: x86: Mitigate the cross-thread return address predictions bug
8f12dcab90e8 x86/speculation: Identify processors vulnerable to SMT RSB predictions
e63c434de8b6 drm/i915: Fix VBT DSI DVO port handling
fc88c6838183 drm/i915: Initialize the obj flags for shmem objects
2e557c8ca2c5 drm/amdgpu/fence: Fix oops due to non-matching drm_sched init/fini
3af734f3eac6 Fix page corruption caused by racy check in __free_pages
c94ce5ea68dc arm64: dts: meson-axg: Make mmc host controller interrupts level-sensitive
b796c02df37e arm64: dts: meson-g12-common: Make mmc host controller interrupts level-sensitive
5d9b771f53c1 arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive
ac39dce11912 rtmutex: Ensure that the top waiter is always woken up
86f7e4239336 powerpc/64s/interrupt: Fix interrupt exit race with security mitigation switch
2907cf3f2ec7 riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte
beb1cefa3ccd ceph: flush cap releases when the session is flushed
86733ab23933 clk: ingenic: jz4760: Update M/N/OD calculation algorithm
239e927eb2ea usb: typec: altmodes/displayport: Fix probe pin assign check
48aecce116e4 usb: core: add quirk for Alcor Link AK9563 smartcard reader
a8178bb1c776 btrfs: free device in btrfs_close_devices for a single device filesystem
8d13f2c3e2ba mptcp: be careful on subflow status propagation on errors
25141fb41191 net: USB: Fix wrong-direction WARNING in plusb.c
d1fba1e096ff cifs: Fix use-after-free in rdata->read_into_pages()
1b83e7e174d8 pinctrl: intel: Restore the pins that used to be in Direct IRQ mode
f5f025b703e2 spi: dw: Fix wrong FIFO level setting for long xfers
71668706fbe7 pinctrl: single: fix potential NULL dereference
a2a1065739e9 pinctrl: aspeed: Fix confusing types in return value
99450163bcf6 pinctrl: mediatek: Fix the drive register definition of some Pins
9f0d2c268488 ASoC: topology: Return -ENOMEM on memory allocation failure
1a52ef89e369 riscv: stacktrace: Fix missing the first frame
5fb815433450 ALSA: pci: lx6464es: fix a debug loop
105ea562f6cf selftests: forwarding: lib: quote the sysctl values
528e3f3a4b53 rds: rds_rm_zerocopy_callback() use list_first_entry()
48d6d8f2f609 igc: Add ndo_tx_timeout support
62ff7dd961ab net/mlx5: Serialize module cleanup with reload and remove
95d2394f84f1 net/mlx5: fw_tracer, Zero consumer index when reloading the tracer
ab7f3f6a9d9b net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers
193528646ed2 net/mlx5e: IPoIB, Show unknown speed instead of error
7c6e8eb617c1 net/mlx5: Bridge, fix ageing of peer FDB entries
49ece61a078f net/mlx5e: Update rx ring hw mtu upon each rx-fcs flag change
31172267bab0 net/mlx5e: Introduce the mlx5e_flush_rq function
e4e4e93d31b3 net/mlx5e: Move repeating clear_bit in mlx5e_rx_reporter_err_rq_cqe_recover
3f18b9ed8c83 net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol 802.1Q"
6acb5d853b41 net: dsa: mt7530: don't change PVC_EG_TAG when CPU port becomes VLAN-aware
ca834a017851 ice: Do not use WQ_MEM_RECLAIM flag for workqueue
70d48c7992ca uapi: add missing ip/ipv6 header dependencies for linux/stddef.h
3cec44036f48 ionic: clean interrupt before enabling queue to avoid credit race
fad12afe877a net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY
d23385a200e6 bonding: fix error checking in bond_debug_reregister()
11006d9d083f net: phylink: move phy_device_free() to correctly release phy device
fb022d7b1c79 xfrm: fix bug with DSCP copy to v6 from v4 tunnel
6fe1ad42afa8 RDMA/usnic: use iommu_map_atomic() under spin_lock()
8f5fe1cd8e6a RDMA/irdma: Fix potential NULL-ptr-dereference
1b4ef90cbcfa IB/IPoIB: Fix legacy IPoIB due to wrong number of queues
5dc688fae6b7 xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr()
9bae58d58b6b IB/hfi1: Restore allocated resources on failed copyout
558b1fa01cdc xfrm: compat: change expression for switch in xfrm_xlate64
238b38e89fff can: j1939: do not wait 250 ms if the same addr was already claimed
d859184b60d4 of/address: Return an error when no valid dma-ranges are found
70f37b3118de tracing: Fix poll() and select() do not work on per_cpu trace_pipe and trace_pipe_raw
df017495039a ALSA: hda/realtek: Enable mute/micmute LEDs on HP Elitebook, 645 G9
ca9d54220345 ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360
706b6d86a6f8 ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control()
731fc29de6a2 ALSA: hda/realtek: Add Positivo N14KP6-TG
b93805980714 btrfs: zlib: zero-initialize zlib workspace
e65faa7e39a2 btrfs: limit device extents to the device size
2e4dd07fda7a migrate: hugetlb: check for hugetlb shared PMD in node migration
072e7412e857 mm/migration: return errno when isolate_huge_page failed
85d7786c66b6 Linux 5.15.93
6e2fac197de2 bpf: Skip invalid kfunc call in backtrack_insn
46c9088cabd4 gfs2: Always check inode size of inline inodes
8eb2e58a92e0 gfs2: Cosmetic gfs2_dinode_{in,out} cleanup
e4991910f150 wifi: brcmfmac: Check the count value of channel spec to prevent out-of-bounds reads
97ccfffcc061 f2fs: fix to do sanity check on i_extra_isize in is_alive()
64fa364ad324 fbdev: smscufx: fix error handling code in ufx_usb_probe
a77141a06367 ovl: Use "buf" flexible array for memcpy() destination
1692fedd0f66 fs/ntfs3: Validate attribute data and valid sizes
a5b9cb72769b powerpc/imc-pmu: Revert nest_init_lock to being a mutex
3691f43a0959 iio:adc:twl6030: Enable measurement of VAC
8c84f50390b2 bpf: Do not reject when the stack read size is different from the tracked scalar size
14b6198abbd5 bpf: Fix incorrect state pruning for <8B spill/fill
575a9f6fefd9 phy: qcom-qmp-combo: fix runtime suspend
e58df87394be phy: qcom-qmp-combo: fix broken power on
368ea32e0ad0 phy: qcom-qmp-usb: fix memleak on probe deferral
2f27d3811a41 phy: qcom-qmp-combo: fix memleak on probe deferral
0cb10ddab7df phy: qcom-qmp-combo: disable runtime PM on unbind
0ef5ffe11682 serial: 8250_dma: Fix DMA Rx rearm race
e30328f599b9 serial: 8250_dma: Fix DMA Rx completion race
a5a171f61a04 nvmem: core: fix cell removal on error
6d9fa3ff6548 nvmem: core: remove nvmem_config wp_gpio
adf80e072c95 nvmem: core: initialise nvmem->id early
e3ebc3e23bd9 drm/i915: Fix potential bit_17 double-free
997bed0f3cde Squashfs: fix handling and sanity checking of xattr_ids count
7a0cfaf9d457 highmem: round down the address passed to kunmap_flush_on_unmap()
5dbe1ebd5647 mm/swapfile: add cond_resched() in get_swap_pages()
daf82418045f fpga: stratix10-soc: Fix return value check in s10_ops_write_init()
afd32b683154 x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses
066ecbf1a53e kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup()
481bf49f58bb usb: gadget: f_uac2: Fix incorrect increment of bNumEndpoints
fdf40e582442 mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps
6c300351c55d riscv: disable generation of unwind tables
a5c275add96b parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case
a964decd1307 parisc: Fix return code of pdc_iodc_print()
488eaf0625d9 nvmem: qcom-spmi-sdam: fix module autoloading
8569beb66fe6 iio: imu: fxos8700: fix MAGN sensor scale and unit
8aa5cdcfaf6a iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN
4112ba1ad5ca iio: imu: fxos8700: fix failed initialization ODR mode assignment
abf7b2ba51f5 iio: imu: fxos8700: fix incorrect ODR mode readback
412757741c22 iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback
34909532b12e iio: imu: fxos8700: fix map label of channel type to MAGN sensor
8346eb4987e5 iio: imu: fxos8700: fix IMU data bits returned to user space
7567cdf3ce21 iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback
6969852220af iio: imu: fxos8700: fix ACCEL measurement range selection
cdacfb220556 iio:adc:twl6030: Enable measurements of VUSB, VBAT and others
9988063dcefd iio: adc: berlin2-adc: Add missing of_node_put() in error path
c691a5c0fd03 iio: hid: fix the retval in gyro_3d_capture_sample
ef80a34699cd iio: hid: fix the retval in accel_3d_capture_sample
c4eae85c73be efi: Accept version 2 of memory attributes table
710db8206351 ALSA: hda/realtek: Add Acer Predator PH315-54
3fbddf86d924 watchdog: diag288_wdt: fix __diag288() inline assembly
700dd5bc72d3 watchdog: diag288_wdt: do not use stack buffers for hardware data
21bc51e29e66 net: qrtr: free memory on error path in radix_tree_insert()
dccbd062d716 fbcon: Check font dimension limits
5d7500d99164 Input: i8042 - add Clevo PCX0DX to i8042 quirk table
fc9e27f3ba08 vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF
9ba1188a719a usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait
fe86480e903f usb: dwc3: qcom: enable vbus override when in OTG dr-mode
a412fe7baf40 iio: adc: stm32-dfsdm: fill module aliases
994465939830 drm/amd/display: Fix timing not changning when freesync video is enabled
a3967128bc65 net/x25: Fix to not accept on connected socket
396ea318e7fa platform/x86: gigabyte-wmi: add support for B450M DS3H WIFI-CF
1577524633c7 platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table
540cea9f9b6d i2c: rk3x: fix a bunch of kernel-doc warnings
0aaabdb900c7 scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress
17b738590b97 scsi: iscsi_tcp: Fix UAF during logout when accessing the shost ipaddress
8cd0499f9c33 perf/x86/intel: Add Emerald Rapids
709351537096 scsi: target: core: Fix warning on RT kernels
b7960f54362b i2c: mxs: suppress probe-deferral error message
b9b87fc34b7f i2c: designware-pci: Add new PCI IDs for AMD NAVI GPU
d8fc0b5fb3e8 efi: fix potential NULL deref in efi_mem_reserve_persistent
f423c2efd51d net: openvswitch: fix flow memory leak in ovs_flow_cmd_new
798502864789 virtio-net: Keep stop() to follow mirror sequence of open()
5d884f9e80ff selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy benchmarking
63aa63af3a1e selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs
d41a3f9cc242 selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided
5af98283e554 selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning
89e0701e03c5 ata: libata: Fix sata_down_spd_limit() when no link speed is reported
9ab896775f98 can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate
02d77d98e020 igc: return an error if the mac type is unknown in igc_ptp_systim_to_hwtstamp()
04a735582095 riscv: kprobe: Fixup kernel panic when probing an illegal position
206c367b6a2e ip/ip6_gre: Fix non-point-to-point tunnel not generating IPv6 link local address
90178bc0f28f ip/ip6_gre: Fix changing addr gen mode not generating IPv6 link local address
dfe2f0ea3851 net: phy: meson-gxl: Add generic dummy stubs for MMD register access
b7398efe24a9 squashfs: harden sanity check in squashfs_read_xattr_id_table
89a69216f170 netfilter: br_netfilter: disable sabotage_in hook after first suppression
cdb444e73fdc drm/i915/adlp: Fix typo for reference clock
960f20d8582e drm/i915/guc: Fix locking when searching for a hung request
c27e0eac568a netrom: Fix use-after-free caused by accept on already connected socket
511c922c5bf6 block, bfq: fix uaf for bfqq in bic_set_bfqq()
a62c129dcbfa block, bfq: replace 0/1 with false/true in bic apis
37a744a068c9 block/bfq-iosched.c: use "false" rather than "BLK_RW_ASYNC"
2cd1e9c013ec net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices
18c18c2110ea sfc: correctly advertise tunneled IPv6 segmentation
878b06f60a08 dpaa2-eth: execute xdp_do_flush() before napi_complete_done()
3b5774cd6b94 dpaa_eth: execute xdp_do_flush() before napi_complete_done()
5a7040a649c8 virtio-net: execute xdp_do_flush() before napi_complete_done()
94add5b27290 qede: execute xdp_do_flush() before napi_complete_done()
a273f8e3ab90 ice: Prevent set_channel from changing queues while RDMA active
b432e183c26e fix "direction" argument of iov_iter_kvec()
d8b8306e963e fix iov_iter_bvec() "direction" argument
389c7c0ef9cc READ is "data destination", not source...
7a3649bf5bef WRITE is "data source", not destination...
83cc6a7bb75c vhost/net: Clear the pending messages when the backend is removed
7c7d344bc386 scsi: Revert "scsi: core: map PQ=1, PDT=other values to SCSI_SCAN_TARGET_PRESENT"
4b199dc09416 drm/vc4: hdmi: make CEC adapter name unique
dc1f8ab25a17 arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX
c681d7a4ed3d bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener
34ad5d8885f5 bpf: Fix to preserve reg parent/live fields when copying range info
7b86f9ab5692 bpf: Support <8-byte scalar spill and refill
1b9256c96220 ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path()
b7abeb691637 bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers
cfcc2390dbc5 ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use
b4b204565a45 ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use
1f1e7635c54d ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use
41d323c352ac ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use
6a9990e1d92b ASoC: Intel: bytcht_es8316: move comment to the right place
ffcdf354555b ASoC: Intel: boards: fix spelling in comments
bd0b17ab1b76 bus: sunxi-rsb: Fix error handling in sunxi_rsb_init()
5f4543c9382a firewire: fix memory leak for payload of request subaction to IEC 61883-1 FCP region
e515b9902f5f Linux 5.15.92
c7caf669b89d net: mctp: purge receive queues on sk destruction
046de74f9af9 net: fix NULL pointer in skb_segment_list
7ab3376703ce selftests: Provide local define of __cpuid_count()
e92e311ced6f selftests/vm: remove ARRAY_SIZE define from individual tests
c9e52db90031 tools: fix ARRAY_SIZE defines in tools and selftests hdrs
c1aa0dd52db4 Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt
02e61196c578 ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel systems
79dd676b445f extcon: usbc-tusb320: fix kernel-doc warning
c2bd60ef20de ext4: fix bad checksum after online resize
4cd1e18bc04a cifs: fix return of uninitialized rc in dfs_cache_update_tgthint()
43acd767bd90 dmaengine: imx-sdma: Fix a possible memory leak in sdma_transfer_init
a54c5ad007ea HID: playstation: sanity check DualSense calibration data.
6d7686cc11b7 blk-cgroup: fix missing pd_online_fn() while activating policy
2144859229c1 erofs/zmap.c: Fix incorrect offset calculation
0dfef5031335 bpf: Skip task with pid=1 in send_signal_common()
e8bb772f745e firmware: arm_scmi: Clear stale xfer->hdr.status
80cb9f1a76aa arm64: dts: imx8mq-thor96: fix no-mmc property for SDHCI
162fad24d2e1 arm64: dts: freescale: Fix pca954x i2c-mux node names
82ad105e1a55 ARM: dts: vf610: Fix pca9548 i2c-mux node names
5aee5f33e03a ARM: dts: imx: Fix pca9547 i2c-mux node name
(From OE-Core rev: f5deb914ba17c131c4880da8d9a1184c2d2a3ef6)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
129c15b60627 Linux 6.1.12
da1ae884562c Documentation/hw-vuln: Add documentation for Cross-Thread Return Predictions
40c4fdfc942e KVM: x86: Mitigate the cross-thread return address predictions bug
cc95b5d240b6 x86/speculation: Identify processors vulnerable to SMT RSB predictions
7fa83855852e drm/i915: Fix VBT DSI DVO port handling
baaed8c92927 drm/i915: Initialize the obj flags for shmem objects
bfa700d12274 drm/i915: Move fd_install after last use of fence
5af27a53a881 drm/amd/display: fix cursor offset on rotation 180
8d81e1c6865e drm/amd/display: properly handling AGP aperture in vm setup
4609e1773222 drm/amdgpu/smu: skip pptable init under sriov
2bcbbef9cace drm/amdgpu/fence: Fix oops due to non-matching drm_sched init/fini
d82e6903b395 drm/amd/pm: bump SMU 13.0.7 driver_if header version
e379d5662c26 drm/amdgpu: Add unique_id support for GC 11.0.1/2
daaa0760cd0b drm/amd/pm: bump SMU 13.0.0 driver_if header version
346631d52a42 arm64: efi: Force the use of SetVirtualAddressMap() on eMAG and Altra Max machines
3b4c045a98f5 Fix page corruption caused by racy check in __free_pages
274d9a28527d arm64: dts: meson-axg: Make mmc host controller interrupts level-sensitive
222b1070b0fa arm64: dts: meson-g12-common: Make mmc host controller interrupts level-sensitive
a01ad536becb arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive
446ac8dd8997 rtmutex: Ensure that the top waiter is always woken up
386a8d694f95 tracing: Fix TASK_COMM_LEN in trace event format file
a2e60fee4b76 drm/amdgpu: Use the TGID for trace_amdgpu_vm_update_ptes
6f097c24815e powerpc/64s/interrupt: Fix interrupt exit race with security mitigation switch
026cae99d064 riscv: kprobe: Fixup misaligned load text
7d151eccd07a riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte
9f55a0a2d94f nvdimm: Support sizeof(struct page) > MAX_STRUCT_PAGE_SIZE
a89868254cd2 ceph: flush cap releases when the session is flushed
62890f3eabf8 drm/amd/pm: add SMU 13.0.7 missing GetPptLimit message mapping
7d2cd4736d1a pinctrl: qcom: sm8450-lpass-lpi: correct swr_rx_data group
ab6fd64dda2b clk: ingenic: jz4760: Update M/N/OD calculation algorithm
15f9f8eb3b8b cxl/region: Fix passthrough-decoder detection
a04c7d062b53 cxl/region: Fix null pointer dereference for resetting decoder
01815a1caf2f usb: typec: altmodes/displayport: Fix probe pin assign check
db9c4a94b629 usb: core: add quirk for Alcor Link AK9563 smartcard reader
51aa10112b12 btrfs: free device in btrfs_close_devices for a single device filesystem
1ab4bed3fc8b btrfs: simplify update of last_dir_index_offset when logging a directory
f676c8a69588 selftests: mptcp: stop tests earlier
b7692fb9a2b0 selftests: mptcp: allow more slack for slow test-case
ba36772a1cc9 mptcp: be careful on subflow status propagation on errors
e266ad04ec39 mptcp: do not wait for bare sockets' timeout
0d2cf3fae701 net: USB: Fix wrong-direction WARNING in plusb.c
3684a2f6affa cifs: Fix use-after-free in rdata->read_into_pages()
33dd18fbbb2d pinctrl: intel: Restore the pins that used to be in Direct IRQ mode
3319d7292568 pinctrl: aspeed: Revert "Force to disable the function's signal"
ebe63349cd48 spi: dw: Fix wrong FIFO level setting for long xfers
bcc487001a15 pinctrl: single: fix potential NULL dereference
9eab7b053947 pinctrl: aspeed: Fix confusing types in return value
b048b969b362 pinctrl: mediatek: Fix the drive register definition of some Pins
6353ebac4612 clk: microchip: mpfs-ccc: Use devm_kasprintf() for allocating formatted strings
dcfe5431fb0f ASoC: topology: Return -ENOMEM on memory allocation failure
3b858f23cefb ASoC: fsl_sai: fix getting version from VERID
84560e33cea5 ASoC: tas5805m: add missing page switch.
3e984873e4ac ASoC: tas5805m: rework to avoid scheduling while atomic.
0f3d5c12b612 arm64: dts: mediatek: mt8195: Fix vdosys* compatible strings
12773070b09b riscv: stacktrace: Fix missing the first frame
885f729b249f ALSA: pci: lx6464es: fix a debug loop
65473ade5062 arm64: dts: rockchip: set sdmmc0 speed to sd-uhs-sdr50 on rock-3a
10150d350917 arm64: dts: rockchip: fix input enable pinconf on rk3399
81685c59dc4b selftests: forwarding: lib: quote the sysctl values
399f1cccc447 net: mscc: ocelot: fix all IPv6 getting trapped to CPU when PTP timestamping is used
1d52bbfd469a rds: rds_rm_zerocopy_callback() use list_first_entry()
da32c2d9f64b selftests: Fix failing VXLAN VNI filtering test
0ae9d81109e9 txhash: fix sk->sk_txrehash default
44a265af4aa9 net: ethernet: mtk_eth_soc: fix wrong parameters order in __xdp_rxq_info_reg()
5f9c656ab2c4 igc: Add ndo_tx_timeout support
190296d51b46 net/mlx5: Serialize module cleanup with reload and remove
b266f3158171 net/mlx5: fw_tracer, Zero consumer index when reloading the tracer
525e29974e3c net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers
ee128b700fd0 net/mlx5: Expose SF firmware pages counter
bbdfebb08ff5 net/mlx5: Store page counters in a single array
5ccc3707e975 net/mlx5e: IPoIB, Show unknown speed instead of error
026eb3e01a3d net/mlx5e: Fix crash unsetting rx-vlan-filter in switchdev mode
1e9b6d279db1 net/mlx5: Bridge, fix ageing of peer FDB entries
aee099bb0cd4 net/mlx5e: Update rx ring hw mtu upon each rx-fcs flag change
4d15289c22fa net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol 802.1Q"
139c759823b0 net: dsa: mt7530: don't change PVC_EG_TAG when CPU port becomes VLAN-aware
47f4ff6f23f0 ice: switch: fix potential memleak in ice_add_adv_recipe()
8eeca43d8e7e ice: Fix disabling Rx VLAN filtering with port VLAN enabled
df59e0540145 ice: Do not use WQ_MEM_RECLAIM flag for workqueue
437f8892ece7 nvidiafb: detect the hardware support before removing console.
c47c2b173d0c cpuset: Call set_cpus_allowed_ptr() with appropriate mask for task
5489930113dc drm/virtio: exbuf->fence_fd unmodified on interrupted wait
d05b72328810 drm/i915: Don't do the WM0->WM1 copy w/a if WM1 is already enabled
16da5f6d38ac HID: amd_sfh: if no sensors are enabled, clean up
c0eb3c0cdd1b net: microchip: sparx5: fix PTP init/deinit not checking all ports
89c0c69fc739 uapi: add missing ip/ipv6 header dependencies for linux/stddef.h
c97c7c3103a3 cpufreq: qcom-hw: Fix cpufreq_driver->get() for non-LMH systems
07154f94c213 ionic: missed doorbell workaround
a16f6ea194fe ionic: refactor use of ionic_rx_fill()
db34b5352e92 ionic: clean interrupt before enabling queue to avoid credit race
95e29c11abe5 net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY
9c6a896b8d40 net: macb: Perform zynqmp dynamic configuration only for SGMII interface
d974330c1d99 bonding: fix error checking in bond_debug_reregister()
a65723e299dc net: phylink: move phy_device_free() to correctly release phy device
a7f0ec26cd67 of: Make OF framebuffer device names unique
5954eaab6bb7 xfrm: fix bug with DSCP copy to v6 from v4 tunnel
d53903cc2396 RDMA/usnic: use iommu_map_atomic() under spin_lock()
360682fe7df2 RDMA/irdma: Fix potential NULL-ptr-dereference
f6d8b6762bee xfrm: annotate data-race around use_time
7197460dcd43 IB/IPoIB: Fix legacy IPoIB due to wrong number of queues
419674224390 xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr()
0a4f811f2e5d IB/hfi1: Restore allocated resources on failed copyout
cf118814ae89 xfrm: compat: change expression for switch in xfrm_xlate64
3fc0b7b7e9a5 HID: logitech: Disable hi-res scrolling on USB
c86e6d30c522 can: j1939: do not wait 250 ms if the same addr was already claimed
ad7e46427f92 of/address: Return an error when no valid dma-ranges are found
0a3e60b3fe49 tracing: Fix poll() and select() do not work on per_cpu trace_pipe and trace_pipe_raw
5c4bd3f2f6eb Revert "PCI/ASPM: Refactor L1 PM Substates Control Register programming"
3361eb2256f9 Revert "PCI/ASPM: Save L1 PM Substates Capability for suspend/resume"
63380b631f3d ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform.
fdc304eef6e8 ALSA: hda/realtek: Add quirk for ASUS UM3402 using CS35L41
566cad13beb6 ALSA: hda/realtek: Enable mute/micmute LEDs on HP Elitebook, 645 G9
49f4284ab3b5 ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360
9d26f571df4d ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control()
ab9b01a7acd5 ALSA: hda/realtek: Add Positivo N14KP6-TG
8ab575add354 btrfs: zlib: zero-initialize zlib workspace
66cf3a8273ab btrfs: limit device extents to the device size
6b2aaf302ce8 hv_netvsc: Allocate memory in netvsc_dma_map() with GFP_ATOMIC
d60c95efffe8 Linux 6.1.11
74eec8266f37 bpf: Skip invalid kfunc call in backtrack_insn
d458a0984429 gfs2: Always check inode size of inline inodes
62b11a34a98c gfs2: Cosmetic gfs2_dinode_{in,out} cleanup
f06de1bb6d61 wifi: brcmfmac: Check the count value of channel spec to prevent out-of-bounds reads
5b25035fb888 f2fs: fix to do sanity check on i_extra_isize in is_alive()
1b4c08844628 fbdev: smscufx: fix error handling code in ufx_usb_probe
ddeff03bb338 f2fs: initialize locks earlier in f2fs_fill_super()
07a96977b2f4 ovl: Use "buf" flexible array for memcpy() destination
543bba3be262 fs/ntfs3: Validate attribute data and valid sizes
0153009a7e65 powerpc/imc-pmu: Revert nest_init_lock to being a mutex
5a9fe6b7f4c1 powerpc/64s: Fix local irq disable when PMIs are disabled
18bac7de2459 powerpc/64s/radix: Fix crash with unaligned relocated kernel
54fb38bcaaa0 iio:adc:twl6030: Enable measurement of VAC
f6c0ebc10c0b ASoC: SOF: sof-audio: prepare_widgets: Check swidget for NULL on sink failure
02b9d653531d platform/x86/amd: pmc: add CONFIG_SERIO dependency
9d25aea2ab4f serial: 8250_dma: Fix DMA Rx rearm race
bd8d2ba9d9e0 serial: 8250_dma: Fix DMA Rx completion race
5f3dedbc3bf4 phy: qcom-qmp-combo: fix runtime suspend
5288d522a987 nvmem: core: fix return value
1dcd68c9cc5c nvmem: core: fix cell removal on error
d78f5d46fc2a nvmem: core: fix device node refcounting
897dfd346223 nvmem: core: fix registration vs use race
39708bc8da78 nvmem: core: fix cleanup after dev_set_name()
1e2a745a896e nvmem: core: remove nvmem_config wp_gpio
28829e5f1c88 nvmem: core: initialise nvmem->id early
86dbbc8f6ba7 drm/amdgpu: update wave data type to 3 for gfx11
91ef43f6b65b drm/amd/pm: drop unneeded dpm features disablement for SMU 13.0.4/11
814d83a710e8 drm/amd: Fix initialization for nbio 4.3.0
0769f997a7b6 drm/i915: Fix potential bit_17 double-free
764accc2c1b8 drm/i915: Avoid potential vm use-after-free
52c6d3a84a3e serial: stm32: Merge hard IRQ and threaded IRQ handling into single IRQ handler
e48a8ad77be3 dma-buf: actually set signaling bit for private stub fences
d8b46cc1cf9b migrate: hugetlb: check for hugetlb shared PMD in node migration
82587c0e2735 maple_tree: fix mas_empty_area_rev() lower bound validation
a7da7d01ac5c Squashfs: fix handling and sanity checking of xattr_ids count
c4fd07cd5e7e ia64: fix build error due to switch case label appearing next to declaration
ef8a286338c4 highmem: round down the address passed to kunmap_flush_on_unmap()
96aaaf866601 mm/MADV_COLLAPSE: catch !none !huge !bad pmd lookups
97f17a737270 mm, mremap: fix mremap() expanding for vma's with vm_ops->close()
acb08187b5a8 mm/khugepaged: fix ->anon_vma race
49178d4d61e7 mm/swapfile: add cond_resched() in get_swap_pages()
2d11727655bf mm/uffd: fix pte marker when fork() without fork event
b10990bee73c fpga: stratix10-soc: Fix return value check in s10_ops_write_init()
74cff472d3d6 fpga: m10bmc-sec: Fix probe rollback
32beac7a3d0f x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses
0b570a059cf4 HV: hv_balloon: fix memory leak with using debugfs_lookup()
cf1c917bf1c7 kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup()
512d1ed968d5 usb: gadget: udc: do not clear gadget driver.bus
fdd11d7136fd usb: typec: ucsi: Don't attempt to resume the ports before they exist
dd63f6f0d946 usb: gadget: f_uac2: Fix incorrect increment of bNumEndpoints
b79ba5953f6f mm: memcg: fix NULL pointer in mem_cgroup_track_foreign_dirty_slowpath()
139f866e420a mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps
04448022311c mm: multi-gen LRU: fix crash during cgroup migration
b40680220b13 Revert "mm: kmemleak: alloc gray object for reserved region with direct map"
4afacf17ff0f riscv: disable generation of unwind tables
3028c3a169a2 parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case
a6a5b7067018 parisc: Replace hardcoded value with PRIV_USER constant in ptrace.c
d386bc5bf1cd parisc: Fix return code of pdc_iodc_print()
96d3b446680e nvmem: qcom-spmi-sdam: fix module autoloading
68ce2c8f9d0e nvmem: sunxi_sid: Always use 32-bit MMIO reads
f5249bbae0e7 nvmem: brcm_nvram: Add check for kzalloc
4092267ad66a iio: imu: fxos8700: fix MAGN sensor scale and unit
ad3c145485b2 iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN
8ac10e1cb0f5 iio: imu: fxos8700: fix failed initialization ODR mode assignment
555daa41074d iio: imu: fxos8700: fix incorrect ODR mode readback
efc3dc3812cf iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback
af7b50e4f6ee iio: imu: fxos8700: fix map label of channel type to MAGN sensor
3a91ef914ab1 iio: imu: fxos8700: fix IMU data bits returned to user space
8f1b6aa3bf0f iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback
fb06fc5af496 iio: imu: fxos8700: fix ACCEL measurement range selection
1a48ba20a551 iio: light: cm32181: Fix PM support on system with 2 I2C resources
930351148181 iio:adc:twl6030: Enable measurements of VUSB, VBAT and others
e05b41391ab3 iio: imx8qxp-adc: fix irq flood when call imx8qxp_adc_read_raw()
9e480211d0f8 iio: adc: berlin2-adc: Add missing of_node_put() in error path
0b2f949909a3 iio: adc: xilinx-ams: fix devm_krealloc() return value check
f9e5c6d9ac6c iio: hid: fix the retval in gyro_3d_capture_sample
37b5824545e6 iio: hid: fix the retval in accel_3d_capture_sample
8c3203f47d33 rtc: efi: Enable SET/GET WAKEUP services as optional
661bb546c4d5 efi: Accept version 2 of memory attributes table
ac515839b1f3 ASoC: SOF: keep prepare/unprepare widgets in sink path
18691bdd5db5 ASoC: SOF: sof-audio: skip prepare/unprepare if swidget is NULL
b6552a76015a ASoC: SOF: sof-audio: unprepare when swidget->use_count > 0
60a1ffed517f ASoC: codecs: wsa883x: correct playback min/max rates
dd405afa4e97 ALSA: hda/realtek: fix mute/micmute LEDs, speaker don't work for a HP platform
e58d01b09930 ALSA: hda/realtek: Add Acer Predator PH315-54
be606481eb33 watchdog: diag288_wdt: fix __diag288() inline assembly
f3d786285f4c watchdog: diag288_wdt: do not use stack buffers for hardware data
ad8860868141 can: isotp: handle wait_event_interruptible() return values
cae4c9bc35f7 can: isotp: split tx timer into transmission and timeout
6e62048f527d net: qrtr: free memory on error path in radix_tree_insert()
334ce90fadd1 ARM: dts: imx7d-smegw01: Fix USB host over-current polarity
78792d25b658 hv_netvsc: Fix missed pagebuf entries in netvsc_dma_map/unmap()
a2ab7f2cf5ef cgroup/cpuset: Fix wrong check in update_parent_subparts_cpumask()
5e7f6e2ade57 fbcon: Check font dimension limits
8506f16aae9d vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF
3b1534f5bae7 usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait
f3ce160b301c usb: dwc3: qcom: enable vbus override when in OTG dr-mode
e99780c3e7a9 iio: adc: stm32-dfsdm: fill module aliases
016dadc60e2e bcache: Silence memcpy() run-time false positive warnings
f3056978934c drm/amd/display: Fix timing not changning when freesync video is enabled
22312eeab33e net/x25: Fix to not accept on connected socket
72e5a83b7c84 platform/x86/amd: pmc: Disable IRQ1 wakeup for RN/CZN
37e9784331f2 platform/x86: gigabyte-wmi: add support for B450M DS3H WIFI-CF
919ff2c40145 platform/x86: hp-wmi: Handle Omen Key event
eb74184dcc70 platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table
19e2f49914e7 x86/build: Move '-mindirect-branch-cs-prefix' out of GCC-only block
40971f2e525e Revert "gfs2: stop using generic_writepages in gfs2_ail1_start_one"
c671f7aaf2d8 i2c: rk3x: fix a bunch of kernel-doc warnings
61e43ebfd243 scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress
8859687f5b24 scsi: iscsi_tcp: Fix UAF during logout when accessing the shost ipaddress
35e44dc40283 perf/x86/intel/cstate: Add Emerald Rapids
e095f0d86e3a perf/x86/intel: Add Emerald Rapids
fcf8b1a6d5b8 x86/aperfmperf: Erase stale arch_freq_scale values when disabling frequency invariance readings
f6c8f682e588 scsi: target: core: Fix warning on RT kernels
c1435f5a03c8 i2c: mxs: suppress probe-deferral error message
8e9b15ad1484 i2c: designware-pci: Add new PCI IDs for AMD NAVI GPU
65166bccd038 kbuild: modinst: Fix build error when CONFIG_MODULE_SIG_KEY is a PKCS#11 URI
10282d9daaf7 certs: Fix build error when PKCS#11 URI contains semicolon
71ebd83f320e rtc: sunplus: fix format string for printing resource
a2e6a9ff89f1 efi: fix potential NULL deref in efi_mem_reserve_persistent
70d40674a549 net: openvswitch: fix flow memory leak in ovs_flow_cmd_new
2c036e21c2b6 virtio-net: Keep stop() to follow mirror sequence of open()
462a2c1bdf1a selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy benchmarking
14782ea872e0 selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs
430bc0756ae1 selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided
5bbc22fdbcbc selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning
3b7fbcf86eee ata: libata: Fix sata_down_spd_limit() when no link speed is reported
6366671954f0 can: mcp251xfd: mcp251xfd_ring_set_ringparam(): assign missing tx_obj_num_coalesce_irq
c3033f91ebd6 can: raw: fix CAN FD frame transmissions over CAN XL devices
1740a1e45eee can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate
0cb094179aa8 octeontx2-af: Fix devlink unregister
adf848eab2d4 igc: return an error if the mac type is unknown in igc_ptp_systim_to_hwtstamp()
12316538b1d1 riscv: kprobe: Fixup kernel panic when probing an illegal position
848b6074654e ip/ip6_gre: Fix non-point-to-point tunnel not generating IPv6 link local address
abac37d8f90c ip/ip6_gre: Fix changing addr gen mode not generating IPv6 link local address
e2d967b42a71 drm/panel: boe-tv101wum-nl6: Ensure DSI writes succeed during disable
11ee5d630827 net: phy: meson-gxl: Add generic dummy stubs for MMD register access
0cfe084e1530 sctp: do not check hb_timer.expires when resetting hb_timer
e0514483fa88 maple_tree: should get pivots boundary by type
29e774dcb271 squashfs: harden sanity check in squashfs_read_xattr_id_table
14f56034ec4e kunit: fix kunit_test_init_section_suites(...)
ee1e3fe4b457 block: ublk: extending queue_size to fix overflow
a1512f11ec02 netfilter: br_netfilter: disable sabotage_in hook after first suppression
3214b04de31b ALSA: firewire-motu: fix unreleased lock warning in hwdep device
37c0cdf7e491 net/tls: tls_is_tx_ready() checked list_entry
7a435fe0b6bb drm/i915/adlp: Fix typo for reference clock
04dcff26490c drm/i915: Fix up locking around dumping requests lists
9467397f417d drm/i915: Fix request ref counting during error capture & debugfs dump
de997938a7a5 drm/i915/guc: Fix locking when searching for a hung request
e7cdec97ebeb platform/x86: thinkpad_acpi: Fix thinklight LED brightness returning 255
21745fbfe760 platform/x86/amd/pmf: Ensure mutexes are initialized before use
7f7f441347b4 platform/x86/amd/pmf: Fix to update SPS thermals when power supply change
dadc3820a3d9 platform/x86/amd/pmf: Add helper routine to check pprof is balanced
1db1edddb873 platform/x86/amd/pmf: Fix to update SPS default pprof thermals
05484584cadf platform/x86/amd/pmf: Add helper routine to update SPS thermals
bb4a5cef532d platform/x86/amd/pmf: update to auto-mode limits only after AMT event
3be069f42a7b fscache: Use wait_on_bit() to wait for the freeing of relinquished volume
5c2227f3f177 netrom: Fix use-after-free caused by accept on already connected socket
cb1876fc33af block, bfq: fix uaf for bfqq in bic_set_bfqq()
b2e181cf9e57 block, bfq: replace 0/1 with false/true in bic apis
70fd5afb4c36 net: wwan: t7xx: Fix Runtime PM initialization
78901b10522c net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices
ddaf96f6953b sfc: correctly advertise tunneled IPv6 segmentation
a838f8a69b1f skb: Do mix page pool and page referenced frags in GRO
9e0d874c0a6b dpaa2-eth: execute xdp_do_flush() before napi_complete_done()
71a773ab79c9 dpaa_eth: execute xdp_do_flush() before napi_complete_done()
e5aed1336303 virtio-net: execute xdp_do_flush() before napi_complete_done()
b9fd30ea66e8 qede: execute xdp_do_flush() before napi_complete_done()
34e0dd0947e9 ice: Prevent set_channel from changing queues while RDMA active
c4cadb84e71b vhost-scsi: unbreak any layout for response
5a1909510387 use less confusing names for iov_iter direction initializers
6d6e144ffbf2 fix "direction" argument of iov_iter_kvec()
ff85ec97d14c fix 'direction' argument of iov_iter_{init,bvec}()
02f719be2f2b fix iov_iter_bvec() "direction" argument
b50705b5ef09 memcpy_real(): WRITE is "data source", not destination...
cefb33f5be6e zcore: WRITE is "data source", not destination...
98653e51618e READ is "data destination", not source...
a7fcd22a55a6 WRITE is "data source", not destination...
0332bdec060a copy_oldmem_kernel() - WRITE is "data source", not destination
ccbe22d4843d vhost/net: Clear the pending messages when the backend is removed
0b49da857d32 ALSA: memalloc: Workaround for Xen PV
3331d3416076 bpf: Fix the kernel crash caused by bpf_setsockopt().
c7ee7bad9c1b scsi: Revert "scsi: core: map PQ=1, PDT=other values to SCSI_SCAN_TARGET_PRESENT"
9e0097cb51e6 drm/ssd130x: Init display before the SSD130X_DISPLAY_ON command
c590a4a59a98 drm/vc4: hdmi: make CEC adapter name unique
0bdd5a7b517f arm64: dts: imx8mm-verdin: Do not power down eth-phy
3419ddcfa143 arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX
12b0ec7c6953 bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener
7715f96f4ba6 media: v4l2-ctrls-api.c: move ctrl->is_new = 1 to the correct line
d5c7a2ab5e1f bpf: Add missing btf_put to register_btf_id_dtor_kfuncs
d52f34784e4e ASoC: SOF: ipc4-mtrace: prevent underflow in sof_ipc4_priority_mask_dfs_write()
4ea7f83314f1 selftests/filesystems: grant executable permission to run_fat_tests.sh
7c7652ffa986 bpf: Fix to preserve reg parent/live fields when copying range info
f011360ad234 ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path()
6a199d556c02 bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers
c32efcf9ff85 bpf: Fix off-by-one error in bpf_mem_cache_idx()
ba32923bcedd ASoC: Intel: avs: Implement PCI shutdown
cdebb52d6098 ASoC: Intel: sof_es8336: Drop reference count of ACPI device after use
c48af765e183 ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use
c72c57b689bf ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use
877699a054ec ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use
eddc0f2ad6d5 ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use
7b1ed88ec3af ASoC: amd: acp-es8336: Drop reference count of ACPI device after use
ac949eae8d59 arm64: dts: freescale: imx8dxl: fix sc_pwrkey's property name linux,keycode
13d27de91ace arm64: dts: imx8m-venice: Remove incorrect 'uart-has-rtscts'
17b83ef66d0e bus: sunxi-rsb: Fix error handling in sunxi_rsb_init()
c8bdc88216f0 firewire: fix memory leak for payload of request subaction to IEC 61883-1 FCP region
17d99ea98b62 Linux 6.1.10
cfc15cbd85aa net: mctp: purge receive queues on sk destruction
60cd03ffe938 rust: print: avoid evaluating arguments in `pr_*` macros in `unsafe` blocks
888dad6f3e85 net: fix NULL pointer in skb_segment_list
9d369cd505ae gpiolib-acpi: Don't set GPIOs for wakeup in S3 mode
69622f270cc9 gpiolib: acpi: Add a ignore wakeup quirk for Clevo NL5xRU
30dc1de44e75 nvme-apple: only reset the controller when RTKit is running
38044859deee cifs: fix return of uninitialized rc in dfs_cache_update_tgthint()
1dba6881e332 gpiolib: acpi: Allow ignoring wake capability on pins that aren't in _AEI
ce4745a6b801 dmaengine: imx-sdma: Fix a possible memory leak in sdma_transfer_init
6b1cebcd9e89 HID: playstation: sanity check DualSense calibration data.
7f85560667ed HID: uclogic: Add support for XP-PEN Deco 01 V2
1fc24f9da259 s390: workaround invalid gcc-11 out of bounds read warning
6f13860bba96 block: fix hctx checks for batch allocation
99db989945cd ACPI: video: Add backlight=native DMI quirk for Acer Aspire 4810T
efc1058831f9 LoongArch: Get frame info in unwind_start() when regs is not available
a4a1af9fa08e blk-cgroup: fix missing pd_online_fn() while activating policy
6db03adf078e erofs: clean up parsing of fscache related options
27c54591ba26 kselftest: Fix error message for unconfigured LLVM builds
495cec3763d7 ARM: omap1: fix building gpio15xx
1d34087944a6 arm64: dts: msm8994-angler: fix the memory map
ea2be0ca6913 mac80211: Fix MLO address translation for multiple bss case
9f31d8c889d9 erofs/zmap.c: Fix incorrect offset calculation
1283a01b6e19 bpf: Skip task with pid=1 in send_signal_common()
e0b9560bf170 firmware: arm_scmi: Clear stale xfer->hdr.status
ba355e99eff0 arm64: dts: imx8mq-thor96: fix no-mmc property for SDHCI
a5a629d7dafc arm64: dts: freescale: Fix pca954x i2c-mux node names
ab603e92db12 ARM: dts: vf610: Fix pca9548 i2c-mux node names
7f68b6ecf5e9 ARM: dts: imx: Fix pca9547 i2c-mux node name
(From OE-Core rev: f9d61ad37ac07e551c0acebad031ac0e572e949c)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Updating the -dev kernel to the 6.2 kernel.
(From OE-Core rev: e65d10ea2c955c87a08e6ac0e2594e3618cdc7e8)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Integrating the following commit(s) to linux-yocto/6.1:
3b4c5ff8e4f1 net: fix net/netfilter/ipvs/ip_vs_ctl.c with u64 and u64_stats_t
(From OE-Core rev: 7d7044e8031009ecebd8586ce52d1c1207546668)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This helps in switching toolchains cleanly for kernel build
between gcc and clang
Currently, some kernels allow building with clang but not all
the distro might use clang as default system compiler but kernel
may demand gcc which is provided via KERNEL_* variables, however
kernel does use OBJCOPY at places during build and it maybe set
to use llvm objcopy when using clang. That should be a deliberate
setting when clang is used for kernel as well, otherwise it should
use binutils provided objcopy
(From OE-Core rev: 17b409f2fd97894e0943d13c2cb0d52abde647e3)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
The dtc project is dual licensed, and includes the text of both licenses as
part of its sources as well as a README documenting its license situation.
Use these sources to verify the licensing, and to monitor if it changes,
rather than a copyright line in a source file.
(From OE-Core rev: aaab4ffb4b17b222d1914d0feab286c4000b17da)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
Update the description to align with the current goals of the dtc project.
(From OE-Core rev: cfe4b6b4559191a7986ba48f54a1d0350705a86d)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add the taskstats configuration to any kernel built for qemuall for bitbake's
benefit:
WARNING: The Linux kernel on your build host was not configured to provide process I/O statistics. (CONFIG_TASK_IO_ACCOUNTING is not set)
(From OE-Core rev: 351f82b9918188eb4dbb6598733da5f5392fbd8f)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: a8e8ea1b4b100b6f0ba5ca9441a8f3f1ac31fbfd)
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: additional firmwares
(From OE-Core rev: 8e6134d39b840d96e1c37d3df21a522afea8bc76)
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>
|
|
|
|
|
|
|
|
|
|
|
| |
0001-fdtdump-fix-Werror-int-to-pointer-cast.patch
removed sinct it's included in 1.7.0
(From OE-Core rev: 3007669c903eecf8aa057add51c469bdb1337a38)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Backporting a patching from the 2.13.x stable branch of lttng
to fix the build against kernel 6.2+.
(From OE-Core rev: 3aed7dfe5ff6f52497dcffa58bc2f06cf709ea18)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
There is an issue during 'make modules_prepare' execution for PPC_85xx:
arch/powerpc/kernel/asm-offsets.c:58:10: fatal error: head_booke.h: No such file or directory
58 | #include "head_booke.h"
| ^~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [scripts/Makefile.build:118: arch/powerpc/kernel/asm-offsets.s] Error 1
asm-offests.c has dependency on head_booke.h so add it to kernel-devsrc package
(From OE-Core rev: 46705c47428a8d909518a0ed29dd2051f6321e2f)
Signed-off-by: Denys Zagorui <dzagorui@cisco.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Newest linux-firmware release got firmware for Adreno A200. Add these
two files to the ${PN}-qcom-adreno-a2xx package. As these files are
licensed under a separate BSD-3-Clause license, add separate license
package too.
(From OE-Core rev: 56e1b2b06ef7f22d4ac5899046f650ae8ec0d547)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
It is not enough to depend on the ${PN}-qcom-license package. Set
LICENSE variable for all the qcom packages to point to the proper
license.
(From OE-Core rev: 9dc41e18dc138a7cce920f8e4c85eb3130c0d553)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
5.19 is no longer getting upstream -stable support, and we've replaced
it with 6.1 as the latest (and default) version. Removing the recipes
to make this clear.
Released branches will still get bugfixes as appropriate.
(From OE-Core rev: c21586a46061af7e00fd30f4eb2b7ca2c74d9fc7)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
See https://review.lttng.org/c/lttng-tools/+/9268
(From OE-Core rev: 515ce47f62d34daababb65d206bdae8c4e1e548f)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
License-Update: additional firmwares, copyright years
(From OE-Core rev: fdb8c12fc71b4a985372f5d02ce59a1402c14c4a)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Drop determinism.patch as issue resolved upstream via linked ticket.
(From OE-Core rev: cd9e72a390efb778a6278e2e6c9604ab29d6feb9)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This was disabled in 2014[1] due to an error message which as far
as I can tell, no longer occurs.
Having debug information and source files present will make debugging
reproducibility issues much easier so remove this line as it appears
no longer needed.
Fix up a few files which have buildpaths in them to avoid QA warnings
and reproducubility issues.
[1] OE-Core revision c1b5a262c0201faf2c6bf545d6acb32dfe383ba3
(From OE-Core rev: 95983108121c8b96f5659d110498bf2afc6189d9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From OE-Core rev: 103993845bb8efa3a17df4585b248d775795ac4f)
Signed-off-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The pmu-events.c file is generated by a python script making os.scandir()
calls. The return value is "order on disk" which can cary between machines.
Add in a sed to fix the perf source to sort this data which makes
the pmu-events.c file deterministic.
We should try and upstream this change but we'll need to sed for varying
kernel versions. We should also try and get the perf source being added
to the perf-devsrc package so when failures like this occur, diffoscope
is much more helpful!
(From OE-Core rev: d2c27ae5c0d06363d2f0a2a8eb4e8e492df58444)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating to the latest korg -stable release that comprises
the following commits:
9cf4111cdf94 Linux 5.15.91
14cc13e433e1 perf/x86/amd: fix potential integer overflow on shift of a int
033636b32258 netfilter: conntrack: unify established states for SCTP paths
0b08201158f1 x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL
b57740036792 block: fix and cleanup bio_check_ro
1d152437e46f kbuild: Allow kernel installation packaging to override pkg-config
a1964688582d cpufreq: governor: Use kobject release() method to free dbs_data
7c513ced0dec cpufreq: Move to_gov_attr_set() to cpufreq.h
cf7a08622d2b Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode"
53c5d61198c1 tools: gpio: fix -c option of gpio-event-mon
a7d1a303ff0f treewide: fix up files incorrectly marked executable
046fe53907c5 net: mdio-mux-meson-g12a: force internal PHY off on mux switch
86bdccde7842 net/tg3: resolve deadlock in tg3_reset_task() during EEH
4364bf79d829 thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type()
e69c3a0d9d3d net: mctp: mark socks as dead on unhash, prevent re-add
954cc215cd7a net: ravb: Fix possible hang if RIS2_QFF1 happen
0f7218bf0a00 net: ravb: Fix lack of register setting after system resumed for Gen3
3db4ca2938eb ravb: Rename "no_ptp_cfg_active" and "ptp_cfg_active" variables
621f296f11cf gpio: mxc: Unlock on error path in mxc_flip_edge()
071a8392869f nvme: fix passthrough csi check
614471b7f7cd riscv/kprobe: Fix instruction simulation of JALR
3391bd42351b sctp: fail if no bound addresses can be used for a given scope
b0784860e145 net/sched: sch_taprio: do not schedule in taprio_reset()
d2d3ab1b1de3 netrom: Fix use-after-free of a listening socket.
9df5ab02c65e netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE
ca3cf947760d ipv4: prevent potential spectre v1 gadget in fib_metrics_match()
d50e7348b44f ipv4: prevent potential spectre v1 gadget in ip_metrics_convert()
ead06e3449f2 netlink: annotate data races around sk_state
c4eb423c6b9b netlink: annotate data races around dst_portid and dst_group
fac9b69a9370 netlink: annotate data races around nlk->portid
8a13595600f7 netfilter: nft_set_rbtree: skip elements in transaction from garbage collection
2bf1435fa19d netfilter: nft_set_rbtree: Switch to node list walk for overlap detection
e481654426b6 drm/i915/selftest: fix intel_selftest_modify_policy argument types
66689a72ba73 net: fix UaF in netns ops registration error path
41b74e95f297 netlink: prevent potential spectre v1 gadgets
2f29d780bd69 i2c: designware: use casting of u64 in clock multiplication to avoid overflow
b03f7ed9af6e scsi: ufs: core: Fix devfreq deadlocks
858d7e9218e1 net: mana: Fix IRQ name - add PCI and queue number
bff5243bd326 EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_info's pvt_info
5eedf4568d34 EDAC/device: Respect any driver-supplied workqueue polling value
4b7dfd0a6811 ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment
7807871f28f8 ipv6: fix reachability confirmation with proxy_ndp
f9a22f6fa187 thermal: intel: int340x: Protect trip temperature from concurrent updates
036093c08d83 KVM: arm64: GICv4.1: Fix race with doorbell on VPE activation/deactivation
c56683c0623e KVM: x86/vmx: Do not skip segment attributes if unusable bit is set
e91308e63710 ovl: fail on invalid uid/gid mapping at copy up
33a9657d67a4 ksmbd: limit pdu length size according to connection status
8d83a758ee21 ksmbd: downgrade ndr version error message to debug
87a7f38a9058 ksmbd: do not sign response to session request for guest login
4210c3555db4 ksmbd: add max connections parameter
cc6742b160fa ksmbd: add smbd max io size parameter
3c8a5648a591 i2c: mv64xxx: Add atomic_xfer method to driver
e619ab4fb3e9 i2c: mv64xxx: Remove shutdown method from driver
4b83bc6f87ee cifs: Fix oops due to uncleared server->smbd_conn in reconnect
89042d3d8542 ftrace/scripts: Update the instructions for ftrace-bisect.sh
592ba7116fa6 trace_events_hist: add check for return value of 'create_hist_field'
b0af180514ed tracing: Make sure trace_printk() can output as soon as it can be used
91135d723388 module: Don't wait for GOING modules
85ee9919add9 KVM: SVM: fix tsc scaling cache logic
f0227eca972c scsi: hpsa: Fix allocation size for scsi_host_alloc()
e5af9a458a13 drm/amdgpu: complete gfxoff allow signal during suspend without delay
62b9e9f92109 Bluetooth: hci_sync: cancel cmd_timer if hci_open failed
21998acd31fb exit: Use READ_ONCE() for all oops/warn limit reads
e82b1598eb2c docs: Fix path paste-o for /sys/kernel/warn_count
1c51698ad6f6 panic: Expose "warn_count" to sysfs
0691ddae56cd panic: Introduce warn_limit
7b98914a6c26 panic: Consolidate open-coded panic_on_warn checks
fc636b136272 exit: Allow oops_limit to be disabled
339f8a8e5211 exit: Expose "oops_count" to sysfs
f80fb0001f11 exit: Put an upper limit on how often we can oops
2857ce7f475f panic: Separate sysctl logic from CONFIG_SMP
e156d4dcb036 ia64: make IA64_MCA_RECOVERY bool instead of tristate
9024f772248e csky: Fix function name in csky_alignment() and die()
2ea497d153da h8300: Fix build errors from do_exit() to make_task_dead() transition
a452ca0228bb hexagon: Fix function name in die()
3b39f47474a2 objtool: Add a missing comma to avoid string concatenation
39a26d872178 exit: Add and use make_task_dead.
b5c1acaa43b6 kasan: no need to unset panic_on_warn in end_report()
b5c967dc6822 ubsan: no need to unset panic_on_warn in ubsan_epilogue()
e4cd2100324e panic: unset panic_on_warn inside panic()
191f1f1f6a42 kernel/panic: move panic sysctls to its own file
654f6e851271 sysctl: add a new register_sysctl_init() interface
3aa991cde94b fs: reiserfs: remove useless new_opts in reiserfs_remount
d830531f8fff x86: ACPI: cstate: Optimize C3 entry on AMD CPUs
1f5476223100 drm/i915: Remove unused variable
6e1012709320 Revert "selftests/bpf: check null propagation only neither reg is PTR_TO_BTF_ID"
619ee31b9641 drm/i915: Allow switching away via vga-switcheroo if uninitialized
ea435ba9eb85 firmware: coreboot: Check size of table entry and use flex-array
a4e70bcf2e87 lockref: stop doing cpu_relax in the cmpxchg loop
b0ee61f5eeab platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK
e8d2f7f56691 platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD
2e0a8bacbe1d r8152: add vendor/device ID pair for Microsoft Devkit
d4b717e34dac scsi: hisi_sas: Set a port invalid only if there are no devices attached when refreshing port id
e15750aa28a6 KVM: s390: interrupt: use READ_ONCE() before cmpxchg()
9300c65207f3 spi: spidev: remove debug messages that access spidev->spi without locking
48ff5d381298 ASoC: fsl-asoc-card: Fix naming of AC'97 CODEC widgets
5001ffb31d63 ASoC: fsl_ssi: Rename AC'97 streams to avoid collisions with AC'97 CODEC
b76120e20683 cpufreq: armada-37xx: stop using 0 as NULL pointer
eda26fa8560d perf/x86/intel/uncore: Add Emerald Rapids
544f9d4e9d8a perf/x86/msr: Add Emerald Rapids
b1eb964d785f s390: expicitly align _edata and _end symbols on page boundary
fb45ec279b00 s390/debug: add _ASM_S390_ prefix to header guard
cd488abed97e drm: Add orientation quirk for Lenovo ideapad D330-10IGL
ff7ab370b855 net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem
d6935084e444 ASoC: fsl_micfil: Correct the number of steps on SX controls
ac07316b2d57 cpufreq: Add SM6375 to cpufreq-dt-platdev blocklist
f0e6dcae1491 kcsan: test: don't put the expect array on the stack
c51c0b37543a cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist
28e4e8ca9e95 scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace
14b1df2004fe tcp: fix rate_app_limited to default to 1
120b8e527e07 net: stmmac: enable all safety features by default
a7d736cc3c6c thermal: core: call put_device() only after device_register() fails
ed08f958e481 thermal/core: fix error code in __thermal_cooling_device_register()
108a6f91e276 thermal: Validate new state in cur_state_store()
bd0ea77edf46 thermal/core: Rename 'trips' to 'num_trips'
521c6ebd4f6e thermal/core: Remove duplicate information when an error occurs
6504afa2632a net: dsa: microchip: ksz9477: port map correction in ALU table entry register
18346db1854a selftests/net: toeplitz: fix race on tpacket_v3 block close
caa28c7c83e3 driver core: Fix test_async_probe_init saves device in wrong array
89c62cee5d4d w1: fix WARNING after calling w1_process()
3d0eafe413a7 w1: fix deadloop in __w1_remove_master_device()
7701a4bd45c1 device property: fix of node refcount leak in fwnode_graph_get_next_endpoint()
ed0d8f731e0b ptdma: pt_core_execute_cmd() should use spinlock
29e9c67bf327 octeontx2-pf: Fix the use of GFP_KERNEL in atomic context on rt
03bff5819ad3 tcp: avoid the lookup process failing to get sk in ehash table
5bd69d2ea897 nvme-pci: fix timeout request state check
39178dfe8677 drm/amd/display: fix issues with driver unload
9a5a537e1444 phy: phy-can-transceiver: Skip warning if no "max-bitrate"
4095065b59bc dmaengine: xilinx_dma: call of_node_put() when breaking out of for_each_child_of_node()
5bd3c1c1bce1 cifs: fix potential deadlock in cache_refresh_path()
1a2a47b85cab HID: betop: check shape of output reports
b2a730974373 l2tp: prevent lockdep issue in l2tp_tunnel_register()
edf0e509cedd virtio-net: correctly enable callback during start_xmit
d3401c7624ec net: macb: fix PTP TX timestamp failure due to packet padding
71c601965532 dmaengine: Fix double increment of client_count in dma_chan_get()
1e7919f0b156 drm/panfrost: fix GENERIC_ATOMIC64 dependency
a1b3e50e2140 net: mlx5: eliminate anonymous module_init & module_exit
09e3fb6f53bc net/mlx5: E-switch, Fix setting of reserved fields on MODIFY_SCHEDULING_ELEMENT
01a6e108101f net: ipa: disable ipa interrupt during suspend
98aec50ff7f6 Bluetooth: Fix possible deadlock in rfcomm_sk_state_change
0e59f60b74cd usb: gadget: f_fs: Ensure ep0req is dequeued before free_request
ae8e136bcaae usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait
f25cd2b731d7 HID: revert CHERRY_MOUSE_000C quirk
39483511fd59 pinctrl: rockchip: fix mux route data for rk3568
1dae88a0b4df net: stmmac: fix invalid call to mdiobus_get_phy()
6716838bf801 HID: check empty report_list in bigben_probe()
2b4956825436 HID: check empty report_list in hid_validate_values()
ad67de330d83 net: mdio: validate parameter addr in mdiobus_get_phy()
486912937933 net: usb: sr9700: Handle negative len
2827c4eb429d octeontx2-pf: Avoid use of GFP_KERNEL in atomic context
77e8ed776cdb l2tp: close all race conditions in l2tp_tunnel_register()
af22d2c0b47f l2tp: convert l2tp_tunnel_list to idr
22c7d45ca3d7 l2tp: Don't sleep and disable BH under writer-side sk_callback_lock
87d9205d9a57 l2tp: Serialize access to sk_user_data with sk_callback_lock
c53acbf2facf net/sched: sch_taprio: fix possible use-after-free
40516d042b65 net: stmmac: Fix queue statistics reading
620aa67f8059 pinctrl: rockchip: fix reading pull type on rk3568
ddca674af1ba pinctrl/rockchip: add error handling for pull/drive register getters
259ab8fb8c7e pinctrl/rockchip: Use temporary variable for struct device
8cbf932c5c40 wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid
f792d26e5ce7 gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode
8335f877efe7 gpio: mxc: Protect GPIO irqchip RMW with bgpio spinlock
fb4fb3d267c9 gpio: use raw spinlock for gpio chip shadowed data
52e3eebfe670 sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb
8232e5a84d25 net: enetc: avoid deadlock in enetc_tx_onestep_tstamp()
95347e41cac6 net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs
7f129927feaf net: nfc: Fix use-after-free in local_cleanup()
397aaac88469 phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in rockchip_usb2phy_power_on()
01bdcc73dbe7 bpf: Fix pointer-leak due to insufficient speculative store bypass mitigation
261e2f12b653 amd-xgbe: Delay AN timeout during KR training
a8cf4af5441f amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent
8e897cb67421 ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60
0a27dcd53430 NFSD: fix use-after-free in nfsd4_ssc_setup_dul()
24af570c99b4 phy: ti: fix Kconfig warning and operator precedence
631fc3668539 arm64: dts: qcom: msm8992-libra: Fix the memory map
dda20ffec8fb arm64: dts: qcom: msm8992-libra: Add CPU regulators
37ba5e929349 arm64: dts: qcom: msm8992: Don't use sfpb mutex
bab87524f6d4 PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe()
b7a479c76481 affs: initialize fsdata in affs_truncate()
623d1116898e IB/hfi1: Remove user expected buffer invalidate race
47d5fc0dcd57 IB/hfi1: Immediately remove invalid memory from hardware
85caef2cfd1d IB/hfi1: Fix expected receive setup error exit issues
cb193984d424 IB/hfi1: Reserve user expected TIDs
891ddfae39f1 IB/hfi1: Reject a zero-length user expected buffer
362c9489720b RDMA/core: Fix ib block iterator counter overflow
e26c571c3b0d tomoyo: fix broken dependency on *.conf.default
7dfe83ecc341 firmware: arm_scmi: Harden shared memory access in fetch_notification
a653dbb70cce firmware: arm_scmi: Harden shared memory access in fetch_response
caffa7fed139 EDAC/highbank: Fix memory leak in highbank_mc_probe()
95de286200b2 reset: uniphier-glue: Fix possible null-ptr-deref
4773a8cf9a53 reset: uniphier-glue: Use reset_control_bulk API
7b33accc8ff9 soc: imx8m: Fix incorrect check for of_clk_get_by_name()
f07427f8d9c6 arm64: dts: imx8mm-venice-gw7901: fix USB2 controller OC polarity
c4cb73febe35 HID: intel_ish-hid: Add check for ishtp_dma_tx_map
25f97c9883bf ARM: imx: add missing of_node_put()
3e9d79ded9d6 arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux
538135076191 ARM: dts: imx6qdl-gw560x: Remove incorrect 'uart-has-rtscts'
0e4bba1656a4 ARM: dts: imx7d-pico: Use 'clock-frequency'
108cf4c6d510 ARM: dts: imx6ul-pico-dwarf: Use 'clock-frequency'
207c9e64edba arm64: dts: imx8mp-phycore-som: Remove invalid PMIC property
7ce380fe7574 dmaengine: ti: k3-udma: Do conditional decrement of UDMA_CHAN_RT_PEER_BCNT_REG
edba9b7a7037 memory: mvebu-devbus: Fix missing clk_disable_unprepare in mvebu_devbus_probe()
e66f6949da63 memory: atmel-sdramc: Fix missing clk_disable_unprepare in atmel_ramc_probe()
eda11ab55614 memory: tegra: Remove clients SID override programming
aabd5ba7e9b0 Linux 5.15.90
4b6f8263e931 io_uring/rw: remove leftover debug statement
b10acfcd61b2 io_uring/rw: ensure kiocb_end_write() is always called
124fb13cc757 io_uring: fix double poll leak on repolling
e944f1e37b97 io_uring: Clean up a false-positive warning from GCC 9.3.0
940e8922c1f5 mm/khugepaged: fix collapse_pte_mapped_thp() to allow anon_vma
e83cc8a780e6 soc: qcom: apr: Make qcom,protection-domain optional again
982c8b1e95c0 Revert "wifi: mac80211: fix memory leak in ieee80211_if_add()"
40a4797e08ec block: mq-deadline: Rename deadline_is_seq_writes()
3abf10b4c473 net/mlx5: fix missing mutex_unlock in mlx5_fw_fatal_reporter_err_work()
1aab00aa4192 net/ulp: use consistent error code when blocking ULP
2e4c95a404f3 io_uring/net: fix fast_iov assignment in io_setup_async_msg()
311b298a3337 io_uring: io_kiocb_update_pos() should not touch file for non -1 offset
487a086595b5 tracing: Use alignof__(struct {type b;}) instead of offsetof()
430443f8565e x86/fpu: Use _Alignof to avoid undefined behavior in TYPE_ALIGN
f114717dfa74 Revert "drm/amdgpu: make display pinning more flexible (v2)"
7a993c1be595 efi: rt-wrapper: Add missing include
de2af657cab9 arm64: efi: Execute runtime services from a dedicated stack
9cca110cf8bb fs/ntfs3: Fix attr_punch_hole() null pointer derenference
d4d112e5c458 drm/amdgpu: drop experimental flag on aldebaran
c82fa690da7c drm/amd/display: Fix COLOR_SPACE_YCBCR2020_TYPE matrix
88c33752248e drm/amd/display: Calculate output_color_space after pixel encoding adjustment
87e605b16111 drm/amd/display: Fix set scaling doesn's work
8687b8cdc3a3 drm/i915/display: Check source height is > 0
5d961791663d drm/i915: re-disable RC6p on Sandy Bridge
e9a7ec188b26 mei: me: add meteor lake point M DID
eb0421d90f91 gsmi: fix null-deref in gsmi_get_variable
b8d99cda526b serial: atmel: fix incorrect baudrate setup
b85498385afc serial: amba-pl011: fix high priority character transmission in rs486 mode
0f150134dd79 dmaengine: idxd: Let probe fail when workqueue cannot be enabled
1e8c127c2e81 dmaengine: tegra210-adma: fix global intr clear
473e2281f712 dmaengine: lgm: Move DT parsing after initialization
73337724cbd8 serial: pch_uart: Pass correct sg to dma_unmap_sg()
4307a41cbc44 dt-bindings: phy: g12a-usb3-pcie-phy: fix compatible string documentation
c9d55f564a69 dt-bindings: phy: g12a-usb2-phy: fix compatible string documentation
78aa45bb7a42 usb-storage: apply IGNORE_UAS only for HIKSEMI MD202 on RTL9210
a69c8dfb85b4 usb: gadget: f_ncm: fix potential NULL ptr deref in ncm_bitrate()
1ab67e87b178 usb: gadget: g_webcam: Send color matching descriptor per frame
b08167d8f07c usb: typec: altmodes/displayport: Fix pin assignment calculation
7fb1322e7a8c usb: typec: altmodes/displayport: Add pin assignment helper
59f9ee379640 usb: typec: tcpm: Fix altmode re-registration causes sysfs create fail
a1c8a5c2f8aa usb: host: ehci-fsl: Fix module alias
f073d10cd5a7 usb: cdns3: remove fetched trb from cache before dequeuing
73f4bde9730f USB: serial: cp210x: add SCALANCE LPE-9000 device id
a2e075f40122 USB: gadgetfs: Fix race between mounting and unmounting
2da67bff29ab tty: fix possible null-ptr-defer in spk_ttyio_release
cb53a3366eb2 tty: serial: qcom-geni-serial: fix slab-out-of-bounds on RX FIFO buffer
f322dd2e4a1c staging: mt7621-dts: change some node hex addresses to lower case
6508788b2c3b bpf: restore the ebpf program ID for BPF_AUDIT_UNLOAD and PERF_BPF_EVENT_PROG_UNLOAD
7b122c33bd31 riscv: dts: sifive: fu740: fix size of pcie 32bit memory
701f9c3da692 thunderbolt: Use correct function to calculate maximum USB3 link rate
5b1b03a3d3e4 cifs: do not include page data when checking signature
64287cd456a2 btrfs: fix race between quota rescan and disable leading to NULL pointer deref
f2e0e1615d65 btrfs: do not abort transaction on failure to write log tree when syncing log
f653abe6195c mmc: sdhci-esdhc-imx: correct the tuning start tap and step setting
9881436f01ce mmc: sunxi-mmc: Fix clock refcount imbalance during unbind
33bd0db750fc ACPI: PRM: Check whether EFI runtime is available
87e1ee6058e5 comedi: adv_pci1760: Fix PWM instruction handling
b5d24a8e4a61 usb: core: hub: disable autosuspend for TI TUSB8041
61a0890cb95a misc: fastrpc: Fix use-after-free race condition for maps
1b7b7bb400dd misc: fastrpc: Don't remove map on creater_process and device_release
e7e41fcf909f USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100
f3de34d90d90 staging: vchiq_arm: fix enum vchiq_status return types
16d09c4bc99b USB: serial: option: add Quectel EM05CN modem
34d769f0c607 USB: serial: option: add Quectel EM05CN (SG) modem
768d56ed2411 USB: serial: option: add Quectel EC200U modem
829916f069a7 USB: serial: option: add Quectel EM05-G (RS) modem
eb8808f769c6 USB: serial: option: add Quectel EM05-G (CS) modem
6e0430db195e USB: serial: option: add Quectel EM05-G (GR) modem
f01aefe374d3 prlimit: do_prlimit needs to have a speculation check
418e2c756d65 xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables
10cb7d53be5f usb: acpi: add helper to check port lpm capability using acpi _DSM
1818e2a97dab xhci: Add a flag to disable USB3 lpm on a xhci root port level.
8911ff796336 xhci: Add update_hub_device override for PCI xHCI hosts
c462ac871f49 xhci: Fix null pointer dereference when host dies
f39c813af0b6 usb: xhci: Check endpoint is valid before dereferencing it
0f175cebc46c xhci-pci: set the dma max_seg_size
89a410dbd0f1 io_uring/rw: defer fsnotify calls to task context
05d69b372b3b io_uring: do not recalculate ppos unnecessarily
ff8a070253d9 io_uring: update kiocb->ki_pos at execution time
b7958caf415b io_uring: remove duplicated calls to io_kiocb_ppos
86e2d6901a37 io_uring: ensure that cached task references are always put on exit
30b90689344b io_uring: fix async accept on O_NONBLOCK sockets
a79b13f24967 io_uring: allow re-poll if we made progress
3c1a3d02690f io_uring: support MSG_WAITALL for IORING_OP_SEND(MSG)
390b8816317f io_uring: add flag for disabling provided buffer recycling
9b7b0f2116d5 io_uring: ensure recv and recvmsg handle MSG_WAITALL correctly
cdc68e714d0b io_uring: improve send/recv error handling
ccf06b5a981c io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeups
77baf39227c0 eventfd: provide a eventfd_signal_mask() helper
a2d8ff00a7b0 eventpoll: add EPOLL_URING_WAKE poll wakeup flag
a9aa4aa7a5b2 io_uring: don't gate task_work run on TIF_NOTIFY_SIGNAL
bd9a23a4bb8a hugetlb: unshare some PMDs when splitting VMAs
393d9e3ed10c drm/amd: Delay removal of the firmware framebuffer
865e244e06c7 drm/amdgpu: disable runtime pm on several sienna cichlid cards(v2)
560373fb1e9a ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform
26264260a80b ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
1026756321bd efi: fix userspace infinite retry read efivars after EFI runtime services page fault
45627a1a6450 nilfs2: fix general protection fault in nilfs_btree_insert()
350d66d9e730 zonefs: Detect append writes at invalid locations
5054d001ffaf Add exception protection processing for vd in axi_chan_handle_err function
a12fd43bd175 wifi: mac80211: sdata can be NULL during AMPDU start
f96a6c009ed9 wifi: brcmfmac: fix regression for Broadcom PCIe wifi devices
908d1742b6e6 Bluetooth: hci_qca: Fix driver shutdown on closed serdev
7530fbc05ff5 fbdev: omapfb: avoid stack overflow warning
e1df7f0b27c2 perf/x86/rapl: Treat Tigerlake like Icelake
2c129e868992 f2fs: let's avoid panic if extent_tree is not created
58bac7440251 x86/asm: Fix an assembler warning with current binutils
fdb4a70bb768 btrfs: always report error in run_one_delayed_ref()
f641067ea2af RDMA/srp: Move large values to a new enum for gcc13
793f8ac21874 r8169: move rtl_wol_enable_rx() and rtl_prepare_power_down()
dc072762f900 net/ethtool/ioctl: return -EOPNOTSUPP if we have no phy stats
308d24d87599 vduse: Validate vq_num in vduse_validate_config()
8e1eb926a093 virtio_pci: modify ENOENT to EINVAL
64a6f3689d0d tools/virtio: initialize spinlocks in vring_test.c
95fc28a8e921 selftests/bpf: check null propagation only neither reg is PTR_TO_BTF_ID
d4a9d2944f2e pNFS/filelayout: Fix coalescing test for single DS
6a3319af6b36 btrfs: fix trace event name typo for FLUSH_DELAYED_REFS
(From OE-Core rev: 60c0f2100303bce62711c05efe9c8b775a804045)
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:
68a95455c153 Linux 6.1.9
432ddb5765c4 amdgpu: fix build on non-DCN platforms.
a4d01fb87ece perf/x86/amd: fix potential integer overflow on shift of a int
dc1ccb4c0f85 netfilter: conntrack: unify established states for SCTP paths
70654f995054 dt-bindings: i2c: renesas,rzv2m: Fix SoC specific string
137f1b47da5f x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL
9291e7f6f940 dt-bindings: riscv: fix single letter canonical order
709f785b6201 dt-bindings: riscv: fix underscore requirement for multi-letter extensions
b96903b7fc8c acpi: Fix suspend with Xen PV
2d4c140e9a60 x86/sev: Add SEV-SNP guest feature negotiation support
dd017697feb1 Input: i8042 - add Clevo PCX0DX to i8042 quirk table
6816478c0db1 Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode"
e1275a6b2d99 Revert "mm/compaction: fix set skip in fast_find_migrateblock"
2fd712538d68 Fix up more non-executable files marked executable
ff66e15a4e97 tools: gpio: fix -c option of gpio-event-mon
d88695e7cc85 treewide: fix up files incorrectly marked executable
fe10ce3041b6 block: ublk: move ublk_chr_class destroying after devices are removed
f81be7edb780 Partially revert "perf/arm-cmn: Optimise DTC counter accesses"
37f21dc8a489 net: mdio-mux-meson-g12a: force internal PHY off on mux switch
a4bbf0311755 tsnep: Fix TX queue stop/wake for multiple queues
994087b56e95 net/tg3: resolve deadlock in tg3_reset_task() during EEH
2d449b8dd373 riscv: Move call to init_cpu_topology() to later initialization stage
76d130250a25 thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type()
a8f2ee10718f net: mctp: mark socks as dead on unhash, prevent re-add
6a524787965f net: mctp: hold key reference when looking up a general key
2f87a60e9b4e net: mctp: move expiry timer delete to unhash
d0cdcc3da926 net: mctp: add an explicit reference from a mctp_sk_key to sock
d46d7516cba3 net: ravb: Fix possible hang if RIS2_QFF1 happen
4fd88b8d6e04 net: ravb: Fix lack of register setting after system resumed for Gen3
fc482705cb84 gpio: ep93xx: Fix port F hwirq numbers in handler
699378c56b1d gpio: mxc: Unlock on error path in mxc_flip_edge()
b51e3f5e86d8 nvme: fix passthrough csi check
f4c8fc775fcb riscv/kprobe: Fix instruction simulation of JALR
9f08bb650078 sctp: fail if no bound addresses can be used for a given scope
61a214dcda51 net/sched: sch_taprio: do not schedule in taprio_reset()
250cec4b26a5 tracing/osnoise: Use built-in RCU list checking
91c7ca226a24 ACPI: video: Fix apple gmux detection
bd100f492c7e platform/x86: apple-gmux: Add apple_gmux_detect() helper
4e1f8efbd719 platform/x86: apple-gmux: Move port defines to apple-gmux.h
8f7f8079ed93 platform/x86: asus-wmi: Fix kbd_dock_devid tablet-switch reporting
51e394c6f81a netrom: Fix use-after-free of a listening socket.
ecf1d4250ff4 netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE
f0907d08bac7 net: ethernet: adi: adin1110: Fix multicast offloading
118e95ce5fa0 net: dsa: microchip: fix probe of I2C-connected KSZ8563
f9753ebd61be ipv4: prevent potential spectre v1 gadget in fib_metrics_match()
6850fe301d01 ipv4: prevent potential spectre v1 gadget in ip_metrics_convert()
da553c7ca82f netlink: annotate data races around sk_state
13edec44a5f5 netlink: annotate data races around dst_portid and dst_group
b181c31fe893 netlink: annotate data races around nlk->portid
44d6de3b4f26 netfilter: nft_set_rbtree: skip elements in transaction from garbage collection
318cb24a4c3f netfilter: nft_set_rbtree: Switch to node list walk for overlap detection
6f81f0a952cd ACPI: video: Add backlight=native DMI quirk for Asus U46E
aa9483b94547 ACPI: video: Add backlight=native DMI quirk for HP EliteBook 8460p
ed796e0916a8 ACPI: video: Add backlight=native DMI quirk for HP Pavilion g6-1d80nr
2e3539d34b8e drm/i915/selftest: fix intel_selftest_modify_policy argument types
048c82c0b3bd nvme-fc: fix initialization order
74673597c100 nvme: consolidate setting the tagset flags
3130e38b0b29 nvme: simplify transport specific device attribute handling
554484a34e98 net: fec: Use page_pool_put_full_page when freeing rx buffers
12075708f2e7 net: fix UaF in netns ops registration error path
992e4ff7116a netlink: prevent potential spectre v1 gadgets
122d3a0ee454 iavf: schedule watchdog immediately when changing primary MAC
aa17cf8af776 iavf: fix temporary deadlock and failure to set MAC address
0bdc4b4ba720 drm/i915: Fix a memory leak with reused mmap_offset
67444f8ca31c drm/drm_vma_manager: Add drm_vma_node_allow_once()
e8267867fd1a i2c: designware: Fix unbalanced suspended flag
9f36aae9e80e i2c: designware: use casting of u64 in clock multiplication to avoid overflow
5e6618e28b33 io_uring: always prep_async for drain requests
3238146fcf26 net: mana: Fix IRQ name - add PCI and queue number
1ce29f7444df io_uring: inline __io_req_complete_put()
85224a3f89cf io_uring: remove io_req_tw_post_queue
65aeb34c0f2d io_uring: use io_req_task_complete() in timeout
0c4d95ad2160 io_uring: hold locks for io_req_complete_failed
6dbb84c7c2e1 io_uring: inline __io_req_complete_post()
bfd4d1884065 io_uring: inline io_req_task_work_add()
af8e87f72f9e drm/amdgpu/display/mst: update mst_mgr relevant variable when long HPD
be6bf2321343 drm/amdgpu/display/mst: limit payload to be updated one by one
5891a419031d drm/amdgpu/display/mst: Fix mst_state->pbn_div and slot count assignments
60cd9bb28b97 drm/amdgpu: remove unconditional trap enable on add gfx11 queues
076f7a8798f5 drm/amd/pm: add missing AllowIHInterrupt message mapping for SMU13.0.0
335ef7d0777c drm/display/dp_mst: Correct the kref of port.
4516ccd5e154 platform/x86: thinkpad_acpi: Fix profile modes on Intel platforms
6f0351d0c311 EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_info's pvt_info
77a92cc82665 EDAC/device: Respect any driver-supplied workqueue polling value
00ba539393bf ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment
a914e1132f01 ipv6: fix reachability confirmation with proxy_ndp
95cf086772c5 regulator: dt-bindings: samsung,s2mps14: add lost samsung,ext-control-gpios
19df0f77b3d1 thermal: intel: int340x: Protect trip temperature from concurrent updates
8294b4a88921 riscv: fix -Wundef warning for CONFIG_RISCV_BOOT_SPINWAIT
ea77e9b9fb53 scsi: ufs: core: Fix devfreq deadlocks
97856a9d776d KVM: arm64: GICv4.1: Fix race with doorbell on VPE activation/deactivation
b0487b40305b KVM: x86/vmx: Do not skip segment attributes if unusable bit is set
121d87eb5817 io_uring/net: cache provided buffer group value for multishot receives
42fea1c35254 ovl: fail on invalid uid/gid mapping at copy up
caa0ea92503f ovl: fix tmpfile leak
f03face5fda6 ksmbd: limit pdu length size according to connection status
dcb69eb91c84 ksmbd: downgrade ndr version error message to debug
eb563dce3d16 ksmbd: do not sign response to session request for guest login
d5d7847e57ac ksmbd: add max connections parameter
5109607a4ece cifs: Fix oops due to uncleared server->smbd_conn in reconnect
f9575ea163ad ftrace/scripts: Update the instructions for ftrace-bisect.sh
b4e7e81b4fdf trace_events_hist: add check for return value of 'create_hist_field'
198c83963f63 tracing: Make sure trace_printk() can output as soon as it can be used
e5ae9b5a652f ftrace: Export ftrace_free_filter() to modules
14f4d81f647b module: Don't wait for GOING modules
c00c20e3e351 nfsd: don't free files unconditionally in __nfsd_file_cache_purge
6eb0fc92eeee kvm/vfio: Fix potential deadlock on vfio group_lock
eced3d368f63 scsi: hpsa: Fix allocation size for scsi_host_alloc()
4ba7d17f2b3b vfio/type1: Respect IOMMU reserved regions in vfio_test_domain_fgsp()
b811432fc56f sched/uclamp: Fix a uninitialized variable warnings
390eb5433eff sched/fair: Check if prev_cpu has highest spare cap in feec()
63cccc92768d wifi: mac80211: Fix iTXQ AMPDU fragmentation handling
7b8fe53d2a1d wifi: mac80211: Proper mark iTXQs for resumption
c932501bc232 io_uring/msg_ring: fix remote queue to disabled ring
3964b0c2e843 drm/amdgpu: complete gfxoff allow signal during suspend without delay
2c8fb41ed0e6 drm/i915: Allow alternate fixed modes always for eDP
7fa092a05791 drm/i915: Allow panel fixed modes to have differing sync polarities
83b15fe00a45 Bluetooth: hci_sync: cancel cmd_timer if hci_open failed
cc2a13ec84a5 arm64: efi: Account for the EFI runtime stack in stack unwinder
cf1f38ef9567 arm64: efi: Avoid workqueue to check whether EFI runtime is live
119a34527ed8 arm64: efi: Recover from synchronous exceptions occurring in firmware
0bfa2249ca06 Revert "selftests/bpf: check null propagation only neither reg is PTR_TO_BTF_ID"
c19bd0d89720 btrfs: zoned: enable metadata over-commit for non-ZNS setup
5f366b36a83b firmware: coreboot: Check size of table entry and use flex-array
f594afe49946 ata: pata_cs5535: Don't build on UML
448e5fbbf9b7 lockref: stop doing cpu_relax in the cmpxchg loop
47da87959390 platform/x86: simatic-ipc: add another model
4bfccc9b1300 platform/x86: simatic-ipc: correct name of a model
e7f4e976d39e platform/x86: asus-wmi: Ignore fan on E410MA
71dfaccf2094 platform/x86: asus-wmi: Add quirk wmi_ignore_fan
63e3ff2e9ee4 platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK
790aefa09e39 platform/x86: asus-nb-wmi: Add alternate mapping for KEY_CAMERA
9527a8613960 platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD
564756d5ad9a r8152: add vendor/device ID pair for Microsoft Devkit
b886ccb190f0 scsi: hisi_sas: Set a port invalid only if there are no devices attached when refreshing port id
223dddc8807b scsi: hisi_sas: Use abort task set to reset SAS disks when discovered
3e711bb4409a KVM: s390: interrupt: use READ_ONCE() before cmpxchg()
75d8a514ceec spi: spidev: remove debug messages that access spidev->spi without locking
893d45394dbe cifs: fix potential memory leaks in session setup
ca6263dc22ac drm/amdkfd: Fix NULL pointer error for GC 11.0.1 on mGPU
92af2d3b57a1 drm/amdkfd: Add sync after creating vram bo
df675d4cf0e3 ACPI: resource: Skip IRQ override on Asus Expertbook B2402CBA
c6cf20e747ed ASoC: fsl-asoc-card: Fix naming of AC'97 CODEC widgets
39c315fe6e59 ASoC: fsl_ssi: Rename AC'97 streams to avoid collisions with AC'97 CODEC
74ed6ee3704c cpufreq: armada-37xx: stop using 0 as NULL pointer
141fe35cb13e tools/nolibc: prevent gcc from making memset() loop over itself
f3b7893078ca tools/nolibc: fix missing includes causing build issues at -O0
338ec07a14cd tools/nolibc: Fix S_ISxxx macros
99dd3449279b nolibc: fix fd_set type
0333c339781f perf/x86/intel/uncore: Add Emerald Rapids
a29933719f6b perf/x86/msr: Add Emerald Rapids
c5ed0fe3eb55 perf/x86/msr: Add Meteor Lake support
be839afcdf64 perf/x86/cstate: Add Meteor Lake support
b91ec58ffb8a xen/pvcalls: free active map buffer on pvcalls_front_free_map
25714807b1fd s390: expicitly align _edata and _end symbols on page boundary
a524f623daae s390/debug: add _ASM_S390_ prefix to header guard
68f5d286aa3d drm: Add orientation quirk for Lenovo ideapad D330-10IGL
748f31ba3ec6 net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem
c6fb430d3303 drm/msm/a6xx: Avoid gx gbit halt during rpm suspend
7daafbd2d934 ASoC: fsl_micfil: Correct the number of steps on SX controls
0d792453213f cpufreq: Add SM6375 to cpufreq-dt-platdev blocklist
d5cb15095a93 kcsan: test: don't put the expect array on the stack
fd14d29bb698 ASoC: support machine driver with max98360
f48c6b680e74 ASoC: amd: yc: Add ASUS M5402RA into DMI table
a0e83ab31144 ASoC: mediatek: mt8186: Add machine support for max98357a
80590863884a ASoC: mediatek: mt8186: support rt5682s_max98360
297b3d44bbc7 cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist
7d596bbc66a5 cpufreq: CPPC: Add u64 casts to avoid overflowing
528bd2aa1e7b spi: cadence: Fix busy cycles calculation
1a5ead77c9ce ASoC: amd: yc: Add Razer Blade 14 2022 into DMI table
c658a6d5501d ASoC: SOF: Add FW state to debugfs
4e491a1373a7 ASoC: SOF: pm: Always tear down pipelines before DSP suspend
7af7cb349c45 ASoC: SOF: pm: Set target state earlier
c9f0e54a2576 scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace
dc706d778746 tcp: fix rate_app_limited to default to 1
cefa85480ac9 bnxt: Do not read past the end of test names
aebf7e62708b net: stmmac: enable all safety features by default
2846a7412f62 thermal: core: call put_device() only after device_register() fails
d4dbbbbb2449 thermal/core: fix error code in __thermal_cooling_device_register()
80bb3b901abe thermal: Validate new state in cur_state_store()
3896f78b2203 net: dsa: microchip: ksz9477: port map correction in ALU table entry register
248f6a70eac1 selftests/net: toeplitz: fix race on tpacket_v3 block close
c80475214850 driver core: Fix test_async_probe_init saves device in wrong array
cfc7462ff824 w1: fix WARNING after calling w1_process()
8bc7d8706737 w1: fix deadloop in __w1_remove_master_device()
e75485fc589e device property: fix of node refcount leak in fwnode_graph_get_next_endpoint()
13ba563c2c80 ptdma: pt_core_execute_cmd() should use spinlock
0c5213ce6e72 usb: dwc3: fix extcon dependency
6df50d94697d tcp: avoid the lookup process failing to get sk in ehash table
4888f9fc03fc nvme-pci: fix timeout request state check
58bdab02b225 net: sched: gred: prevent races when adding offloads to stats
b0b029ee04ef drm/amd/display: fix issues with driver unload
8f4764c0d478 phy: phy-can-transceiver: Skip warning if no "max-bitrate"
567128076d55 dmaengine: tegra: Fix memory leak in terminate_all()
f7a57ef457ad dmaengine: xilinx_dma: call of_node_put() when breaking out of for_each_child_of_node()
a8a518ff3be5 cifs: fix potential deadlock in cache_refresh_path()
d5fb544b4ce5 drm/i915/selftests: Unwind hugepages to drop wakeref on error
07bc32e53c7b HID: betop: check shape of output reports
b717cf5a6bd8 l2tp: prevent lockdep issue in l2tp_tunnel_register()
c81fcd4e49e0 virtio-net: correctly enable callback during start_xmit
74a76b80177f net: macb: fix PTP TX timestamp failure due to packet padding
142d644fd2cc dmaengine: Fix double increment of client_count in dma_chan_get()
f5e58b546cbe drm/panfrost: fix GENERIC_ATOMIC64 dependency
459b413821ef net: mlx5: eliminate anonymous module_init & module_exit
d0453c63d38e net/mlx5: E-switch, Fix switchdev mode after devlink reload
a03b6ef0f6db net/mlx5e: Set decap action based on attr for sample
ad2732630ff6 net/mlx5e: QoS, Fix wrongfully setting parent_element_id on MODIFY_SCHEDULING_ELEMENT
0680225a559a net/mlx5: E-switch, Fix setting of reserved fields on MODIFY_SCHEDULING_ELEMENT
d8da8d96ff1d net/mlx5e: Avoid false lock dependency warning on tc_ht even more
e401ecbc3780 net: ipa: disable ipa interrupt during suspend
17511bd84871 Bluetooth: Fix possible deadlock in rfcomm_sk_state_change
9a7c3befef40 Bluetooth: hci_event: Fix Invalid wait context
2539cbc625c5 Bluetooth: ISO: Fix possible circular locking dependency
c524f9561c65 Bluetooth: ISO: Avoid circular locking dependency
8ac6043bd3e5 Bluetooth: hci_sync: fix memory leak in hci_update_adv_data()
f51a825b9f73 Bluetooth: hci_conn: Fix memory leaks
ed818fd8c531 Bluetooth: Fix a buffer overflow in mgmt_mesh_add()
5d947222e4e4 netfilter: conntrack: handle tcp challenge acks during connection reuse
bb03899b9ba3 usb: gadget: f_fs: Ensure ep0req is dequeued before free_request
6aee197b7fbc usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait
3d7f77e55da3 usb: ucsi: Ensure connector delayed work items are flushed
94fa550b9564 block/rnbd-clt: fix wrong max ID in ida_alloc_max
1c6c30cdcf61 HID: revert CHERRY_MOUSE_000C quirk
076a9ebfccc3 ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp151a-prtt1l
d0c5f5caf031 ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp157c-emstamp-argon
1c50efa1cd27 ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp15xx-dhcom-som
e482dc20a73c ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp15xx-dhcor-som
249f0149768a pinctrl: rockchip: fix mux route data for rk3568
5bd6174693aa net: stmmac: fix invalid call to mdiobus_get_phy()
09003f12f5fe HID: check empty report_list in bigben_probe()
cdcdc0531a51 HID: check empty report_list in hid_validate_values()
7879626296e6 net: mdio: validate parameter addr in mdiobus_get_phy()
8327104c28c0 net: usb: sr9700: Handle negative len
cef0845b6dcf l2tp: close all race conditions in l2tp_tunnel_register()
bf47eb2cc58c l2tp: convert l2tp_tunnel_list to idr
d3b2d2820a00 net/sched: sch_taprio: fix possible use-after-free
12dd32ab623f net: stmmac: Fix queue statistics reading
5a7205560755 pinctrl: rockchip: fix reading pull type on rk3568
7794efa358bc wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid
56e3e8da1efb gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode
4141fdfd7847 gpio: mxc: Protect GPIO irqchip RMW with bgpio spinlock
d314d0c3de79 sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb
96a88e3ab62f net: lan966x: add missing fwnode_handle_put() for ports node
e893dced1a18 net: enetc: avoid deadlock in enetc_tx_onestep_tstamp()
d807a7544a70 net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs
d3605282ec35 net: nfc: Fix use-after-free in local_cleanup()
5d48e5cbb1cd phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in rockchip_usb2phy_power_on()
c921fe22178d drm/vc4: bo: Fix unused variable warning
b0c89ef02556 bpf: Fix pointer-leak due to insufficient speculative store bypass mitigation
797bbdc7c30d amd-xgbe: Delay AN timeout during KR training
15d45a435e09 amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent
084e6764dc3e bpf: hash map, avoid deadlock with suitable hash mask
d838b5c99bce phy: usb: sunplus: Fix potential null-ptr-deref in sp_usb_phy_probe()
be960b061b89 drm/vc4: bo: Fix drmm_mutex_init memory hog
86e1955b28d9 ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60
32d5eb95f8f0 NFSD: fix use-after-free in nfsd4_ssc_setup_dul()
8103d53f25ec drm/msm/gpu: Fix potential double-free
ba4ca7d2dd85 phy: ti: fix Kconfig warning and operator precedence
758803e20260 kbuild: fix 'make modules' error when CONFIG_DEBUG_INFO_BTF_MODULES=y
80bb370bce77 kbuild: export top-level LDFLAGS_vmlinux only to scripts/Makefile.vmlinux
a504db9a140c arm64: dts: qcom: msm8992-libra: Fix the memory map
dd95362789c7 arm64: dts: qcom: msm8992: Don't use sfpb mutex
ad5daeb648ec PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe()
964f121334cd affs: initialize fsdata in affs_truncate()
c37e769f2707 IB/hfi1: Remove user expected buffer invalidate race
648cc5f41482 IB/hfi1: Immediately remove invalid memory from hardware
dffa4afa98e7 IB/hfi1: Fix expected receive setup error exit issues
39edbe1b549a IB/hfi1: Reserve user expected TIDs
3304cb63f4dc IB/hfi1: Reject a zero-length user expected buffer
43811d07ea64 RDMA/core: Fix ib block iterator counter overflow
e73f5dd9b322 arm64: dts: marvell: AC5/AC5X: Fix address for UART1
7b28a8920844 erofs: fix kvcalloc() misuse with __GFP_NOFAIL
d7c71f93cfac RDMA/rxe: Prevent faulty rkey generation
7ca8aa835464 RDMA/rxe: Fix inaccurate constants in rxe_type_info
78cfe7bfe5d1 tomoyo: fix broken dependency on *.conf.default
c2c3a71200c0 HID: amd_sfh: Fix warning unwind goto
fa5ee1bec7c7 interconnect: qcom: msm8996: Fix regmap max_register values
8086bd330a28 interconnect: qcom: msm8996: Provide UFS clocks to A2NoC
5362263b0c2f firmware: arm_scmi: Fix virtio channels cleanup on shutdown
d807aff1910c firmware: arm_scmi: Harden shared memory access in fetch_notification
3463203d1096 firmware: arm_scmi: Harden shared memory access in fetch_response
b7863ef8a8f0 EDAC/highbank: Fix memory leak in highbank_mc_probe()
633bad3dc81c reset: uniphier-glue: Fix possible null-ptr-deref
00b433d5664a reset: ti-sci: honor TI_SCI_PROTOCOL setting when not COMPILE_TEST
9eea16953ec1 soc: imx8m: Fix incorrect check for of_clk_get_by_name()
c47e53679af1 arm64: dts: imx8mm-venice-gw7901: fix USB2 controller OC polarity
9a65e90179ba HID: intel_ish-hid: Add check for ishtp_dma_tx_map
bd04fcc35d37 arm64: dts: imx8mp-evk: pcie0-refclk cosmetic cleanup
4df82eb50e3b arm64: dts: imx8mp: Fix power-domain typo
3a999c07a644 arm64: dts: imx8mp: Fix missing GPC Interrupt
2876069cbdc3 soc: imx: imx8mp-blk-ctrl: don't set power device name
e92f205c71d9 ARM: imx: add missing of_node_put()
504b06e529f1 arm64: dts: imx93-11x11-evk: correct clock and strobe pad setting
767a2c8e7354 arm64: dts: verdin-imx8mm: fix dev board audio playback
f20a2afec502 arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux
0cd7df5204e7 arm64: dts: verdin-imx8mm: fix dahlia audio playback
57e8959f1018 ARM: dts: imx6qdl-gw560x: Remove incorrect 'uart-has-rtscts'
02badccd1fcf ARM: dts: imx7d-pico: Use 'clock-frequency'
79ed997b7146 ARM: dts: imx6ul-pico-dwarf: Use 'clock-frequency'
7eef6180815c arm64: dts: imx8mp-phycore-som: Remove invalid PMIC property
02ef93c4dfb4 soc: imx: imx8mp-blk-ctrl: enable global pixclk with HDMI_TX_PHY PD
8aa234b1a492 dmaengine: ti: k3-udma: Do conditional decrement of UDMA_CHAN_RT_PEER_BCNT_REG
1ec709691008 dmaengine: qcom: gpi: Set link_rx bit on GO TRE for rx operation
7b91820fd753 arm64: dts: qcom: sc8280xp: fix primary USB-DP PHY reset
7003e0ea1418 memory: mvebu-devbus: Fix missing clk_disable_unprepare in mvebu_devbus_probe()
4c69fce6e537 memory: atmel-sdramc: Fix missing clk_disable_unprepare in atmel_ramc_probe()
e665b934695a memory: tegra: Remove clients SID override programming
93f875a8526a Linux 6.1.8
ebb677d21945 soc: qcom: apr: Make qcom,protection-domain optional again
effecd8d116d Revert "wifi: mac80211: fix memory leak in ieee80211_if_add()"
fa6357de7c5e block: mq-deadline: Rename deadline_is_seq_writes()
5a69eccf5638 net/mlx5: fix missing mutex_unlock in mlx5_fw_fatal_reporter_err_work()
659518e013d6 octeontx2-pf: Fix the use of GFP_KERNEL in atomic context on rt
ddb98087bd2a net/ulp: use consistent error code when blocking ULP
1eb57b87f106 octeontx2-pf: Avoid use of GFP_KERNEL in atomic context
6da17ac15e35 drm/amdgpu: correct MEC number for gfx11 APUs
40a66b6ca478 drm/amdgpu: add tmz support for GC IP v11.0.4
a63bd0539bf3 drm/amdgpu: add tmz support for GC 11.0.1
a74805429d38 drm/amdgpu: enable GFX Clock Gating control for GC IP v11.0.4
834a91425865 drm/amdgpu: enable GFX Power Gating for GC IP v11.0.4
09af1ee53ced drm/amdgpu: enable GFX IP v11.0.4 CG support
8cbe04b2e0a1 drm/amdgpu: enable PSP IP v13.0.11 support
11ffb9933730 drm/amdgpu/discovery: enable nbio support for NBIO v7.7.1
703011b41c4f drm/amdgpu/pm: use the specific mailbox registers only for SMU IP v13.0.4
fe4d9fb3326e drm/amdgpu/soc21: add mode2 asic reset for SMU IP v13.0.11
c776433afefd drm/amdgpu/pm: add GFXOFF control IP version check for SMU IP v13.0.11
6ed56b86918d drm/amdgpu: add smu 13 support for smu 13.0.11
bb856053b7d7 drm/amdgpu/pm: enable swsmu for SMU IP v13.0.11
3ed03b0b42c4 drm/amdgpu/discovery: add PSP IP v13.0.11 support
7d1e2273f21f drm/amdgpu: add gmc v11 support for GC 11.0.4
ea8f7acc35e2 drm/amdgpu: add gfx support for GC 11.0.4
09157e804d9e drm/amdgpu/discovery: set the APU flag for GC 11.0.4
333814dd71d8 drm/amdgpu: set GC 11.0.4 family
2ecc26293852 drm/amdgpu/discovery: enable mes support for GC v11.0.4
db4fa3b2d7d4 drm/amdgpu/discovery: enable gfx v11 for GC 11.0.4
907d5b697d85 drm/amdgpu/discovery: enable gmc v11 for GC 11.0.4
708509058b79 drm/amdgpu/discovery: enable soc21 common for GC 11.0.4
2705a9548594 x86/fpu: Use _Alignof to avoid undefined behavior in TYPE_ALIGN
a18417e27ed8 exit: Use READ_ONCE() for all oops/warn limit reads
3f38c2170714 docs: Fix path paste-o for /sys/kernel/warn_count
72c93f9897e9 panic: Expose "warn_count" to sysfs
f53b6dda4d9b panic: Introduce warn_limit
13aa82f00727 panic: Consolidate open-coded panic_on_warn checks
e0738725bbf6 exit: Allow oops_limit to be disabled
46cacd7913c8 exit: Expose "oops_count" to sysfs
767997ef5dc0 exit: Put an upper limit on how often we can oops
acc767cc70ce panic: Separate sysctl logic from CONFIG_SMP
72b0e5faa514 efi: rt-wrapper: Add missing include
f75a91c82dc8 arm64: efi: Execute runtime services from a dedicated stack
ff3b1a624380 fs/ntfs3: Fix attr_punch_hole() null pointer derenference
b542cb024a5d cifs: reduce roundtrips on create/qinfo requests
bf9261e4536f drm/amd/display: disable S/G display on DCN 3.1.4
3ad10fc4ad37 drm/amd/display: disable S/G display on DCN 3.1.5
b105b79ea050 drm/amd/display: Fix COLOR_SPACE_YCBCR2020_TYPE matrix
87e84d0ff97c drm/amd/display: Calculate output_color_space after pixel encoding adjustment
032cebdff71e drm/amd/display: Fix set scaling doesn's work
92c39d699592 drm/i915: Remove unused variable
4397bcbd729d drm/i915: Allow switching away via vga-switcheroo if uninitialized
597747eb58a7 drm/i915/display: Check source height is > 0
38a9b17d3b58 drm/i915: re-disable RC6p on Sandy Bridge
8dabe4e0daa9 drm/amdgpu: Correct the power calcultion for Renior/Cezanne.
d693fdf73eb2 drm/amdgpu: allow multipipe policy on ASICs with one MEC
af4a3c274a92 drm/amdgpu: fix amdgpu_job_free_resources v2
cfb7a66c99ad ARM: omap1: fix !ARCH_OMAP1_ANY link failures
4cc5622b2e9a ARM: dts: qcom: apq8084-ifc6540: fix overriding SDHCI
548ea9dd5e01 VMCI: Use threaded irqs instead of tasklets
32b39dccd69b mei: me: add meteor lake point M DID
a63171d0979c mei: bus: fix unlink on bus in error path
6646d769fdb0 gsmi: fix null-deref in gsmi_get_variable
1c5aaff754f3 serial: exar: Add support for Sealevel 7xxxC serial cards
13efa6b1a304 serial: atmel: fix incorrect baudrate setup
ab47d385da12 serial: amba-pl011: fix high priority character transmission in rs486 mode
e7c07deaa193 dmaengine: idxd: Do not call DMX TX callbacks during workqueue disable
b9e8e3fcfec6 dmaengine: idxd: Prevent use after free on completion memory
99dc4520b74e dmaengine: idxd: Let probe fail when workqueue cannot be enabled
8802fea8dd7f dmaengine: tegra210-adma: fix global intr clear
16848cad1a48 dmaengine: lgm: Move DT parsing after initialization
16b18ee00c40 serial: pch_uart: Pass correct sg to dma_unmap_sg()
caf81ca977b3 dt-bindings: phy: g12a-usb3-pcie-phy: fix compatible string documentation
f1288e054995 dt-bindings: phy: g12a-usb2-phy: fix compatible string documentation
1f1007d1301b arm64: dts: imx8mp: correct usb clocks
2cab24bd8f43 usb-storage: apply IGNORE_UAS only for HIKSEMI MD202 on RTL9210
09e4507ec8ef usb: gadget: f_ncm: fix potential NULL ptr deref in ncm_bitrate()
96abcf7230d7 USB: gadget: Add ID numbers to configfs-gadget driver names
f9c8c6b34d5d usb: gadget: g_webcam: Send color matching descriptor per frame
184cfc6afb55 usb: typec: altmodes/displayport: Fix pin assignment calculation
632b223797a9 usb: typec: altmodes/displayport: Add pin assignment helper
9a027eeb9860 usb: typec: tcpm: Fix altmode re-registration causes sysfs create fail
421492f229f0 usb: musb: fix error return code in omap2430_probe()
b3fdc02c6123 usb: host: ehci-fsl: Fix module alias
34f207ed1c10 usb: cdns3: remove fetched trb from cache before dequeuing
feb7840e57ca USB: serial: cp210x: add SCALANCE LPE-9000 device id
616fd34d0170 USB: gadgetfs: Fix race between mounting and unmounting
f59549814a64 selftests: mptcp: userspace: validate v4-v6 subflows mix
f44ce132016f mptcp: netlink: respect v4/v6-only sockets
1423c12b4f0c mptcp: explicitly specify sock family at subflow creation time
36fc7317cdb1 io_uring/poll: don't reissue in case of poll race on multishot request
66144d830f59 pktcdvd: check for NULL returna fter calling bio_split_to_limits()
64152e05a4de tty: fix possible null-ptr-defer in spk_ttyio_release
fd524ca7fe45 tty: serial: qcom-geni-serial: fix slab-out-of-bounds on RX FIFO buffer
8de08b0c44ae bpf: restore the ebpf program ID for BPF_AUDIT_UNLOAD and PERF_BPF_EVENT_PROG_UNLOAD
ea41602d3b2f riscv: dts: sifive: fu740: fix size of pcie 32bit memory
d1b531efcb8e thunderbolt: Do not call PM runtime functions in tb_retimer_scan()
16b4b0f8e5a0 thunderbolt: Do not report errors if on-board retimers are found
15a2e23fd585 thunderbolt: Use correct function to calculate maximum USB3 link rate
627ae8c6271e thunderbolt: Disable XDomain lane 1 only in software connection manager
d048df8baf90 cifs: do not include page data when checking signature
1004fc90f0d7 btrfs: fix race between quota rescan and disable leading to NULL pointer deref
8af00fc7b670 btrfs: fix invalid leaf access due to inline extent during lseek
bb2c2e62539f btrfs: qgroup: do not warn on record without old_roots populated
34fe5b527e68 btrfs: do not abort transaction on failure to update log root
23ffd7fc231a btrfs: do not abort transaction on failure to write log tree when syncing log
076fb040d447 btrfs: add missing setup of log for full commit at add_conflicting_inode()
f4c0df59e01a btrfs: fix directory logging due to race with concurrent index key deletion
168492decbb6 btrfs: fix missing error handling when logging directory items
6ec841132994 btrfs: add extra error messages to cover non-ENOMEM errors from device_add_list()
f2f52dd4f50f mm/MADV_COLLAPSE: don't expand collapse when vm_end is past requested end
bcde505af166 mm/userfaultfd: enable writenotify while userfaultfd-wp is enabled for a VMA
3b8ede66658c mm/hugetlb: pre-allocate pgtable pages for uffd wr-protects
8d6a675cd744 mm/hugetlb: fix uffd-wp handling for migration entries in hugetlb_change_protection()
6062c992e912 mm/hugetlb: fix PTE marker handling in hugetlb_change_protection()
33b161041471 mmc: sdhci-esdhc-imx: correct the tuning start tap and step setting
b7465be89040 mmc: sunxi-mmc: Fix clock refcount imbalance during unbind
7a106e8a1cdb ACPI: PRM: Check whether EFI runtime is available
580a2a541273 comedi: adv_pci1760: Fix PWM instruction handling
6a1594a780e7 usb: core: hub: disable autosuspend for TI TUSB8041
079c78c68714 misc: fastrpc: Fix use-after-free race condition for maps
35ddd482345c misc: fastrpc: Don't remove map on creater_process and device_release
a50c5c25b6e7 misc: fastrpc: Fix use-after-free and race in fastrpc_map_find
bab5687f4d1b usb: misc: onboard_hub: Move 'attach' work to the driver
cbb0da62573c usb: misc: onboard_hub: Invert driver registration order
aa5b95982f45 USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100
5d6ecc63abb4 staging: vchiq_arm: fix enum vchiq_status return types
32117ec83932 USB: serial: option: add Quectel EM05CN modem
2c163640ed73 USB: serial: option: add Quectel EM05CN (SG) modem
5fd46948fd51 USB: serial: option: add Quectel EC200U modem
1048bc1b852d USB: serial: option: add Quectel EM05-G (RS) modem
1e39e0b47ce6 USB: serial: option: add Quectel EM05-G (CS) modem
4173c542195c USB: serial: option: add Quectel EM05-G (GR) modem
91185568c99d prlimit: do_prlimit needs to have a speculation check
08bf23c33979 xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables
b7904d20157c usb: acpi: add helper to check port lpm capability using acpi _DSM
8c36de093546 xhci: Add a flag to disable USB3 lpm on a xhci root port level.
60c1eb013e1e xhci: Add update_hub_device override for PCI xHCI hosts
ea2ee5e9991c xhci: Fix null pointer dereference when host dies
08864dc14a68 usb: xhci: Check endpoint is valid before dereferencing it
0a8a71c4cb7d xhci-pci: set the dma max_seg_size
806e5ac71d34 Revert "serial: stm32: Merge hard IRQ and threaded IRQ handling into single IRQ handler"
2b5412ca6fd3 serial: stm32: Merge hard IRQ and threaded IRQ handling into single IRQ handler
48b94e49980b mm/khugepaged: fix collapse_pte_mapped_thp() to allow anon_vma
63f71b860901 hugetlb: unshare some PMDs when splitting VMAs
1cb76f566949 mm/shmem: restore SHMEM_HUGE_DENY precedence over MADV_COLLAPSE
0bf463939c09 nilfs2: fix general protection fault in nilfs_btree_insert()
d3317baa34e9 zonefs: Detect append writes at invalid locations
87615c0e5351 LoongArch: Add HWCAP_LOONGARCH_CPUCFG to elf_hwcap
51a7ad5b60ef Add exception protection processing for vd in axi_chan_handle_err function
6d114116da1b proc: fix PIE proc-empty-vm, proc-pid-vm tests
e733121383c0 nommu: fix split_vma() map_count error
6447569f4fce nommu: fix do_munmap() error path
1442d51026c5 nommu: fix memory leak in do_mmap() error path
a57c981d9f24 wifi: mac80211: fix initialization of rx->link and rx->link_sta
c838df8461a6 wifi: mac80211: sdata can be NULL during AMPDU start
b8d1d53bef5e wifi: mac80211: reset multiple BSSID options in stop_ap()
10644c9828c8 wifi: mac80211: fix MLO + AP_VLAN check
1590cee5342e wifi: brcmfmac: fix regression for Broadcom PCIe wifi devices
ea3ebda47dd5 Bluetooth: hci_qca: Fix driver shutdown on closed serdev
3b062a48b0de Bluetooth: hci_sync: Fix use HCI_OP_LE_READ_BUFFER_SIZE_V2
4e18618ced3b fbdev: omapfb: avoid stack overflow warning
b019db2fcf09 of: fdt: Honor CONFIG_CMDLINE* even without /chosen node, take 2
3848b6b2a696 perf/x86/rapl: Add support for Intel Emerald Rapids
f5f3c924f4fd perf/x86/rapl: Add support for Intel Meteor Lake
6fb614c68406 memblock tests: Fix compilation error.
060266625604 cifs: fix race in assemble_neg_contexts()
66c8b7b6e4bd perf/x86/rapl: Treat Tigerlake like Icelake
1c38cdc747f0 f2fs: let's avoid panic if extent_tree is not created
8ca718778b77 x86/asm: Fix an assembler warning with current binutils
853ffa1511b0 btrfs: always report error in run_one_delayed_ref()
5744ba445c9a selftests: net: fix cmsg_so_mark.sh test hang
307e8d9eef65 RDMA/srp: Move large values to a new enum for gcc13
6c27fc157479 bpf: keep a reference to the mm, in case the task is dead.
af0bedfbcb81 r8169: fix dmar pte write access is not set error
315a779c838d r8169: move rtl_wol_enable_rx() and rtl_prepare_power_down()
27b510785068 net/ethtool/ioctl: return -EOPNOTSUPP if we have no phy stats
11891c80f1a9 vdpa_sim_net: should not drop the multicast/broadcast packet
c6c6af90101f vduse: Validate vq_num in vduse_validate_config()
ab23a6dbfc72 virtio_pci: modify ENOENT to EINVAL
af3fca732e9a vdpa/mlx5: Avoid overwriting CVQ iotlb
909b96557b38 vdpa/mlx5: Avoid using reslock in event_handler
6dbffca77f12 vdpa/mlx5: Return error on vlan ctrl commands if not supported
dc6466fcdefe tools/virtio: initialize spinlocks in vring_test.c
a65644cef5db net: ethernet: marvell: octeontx2: Fix uninitialized variable warning
2e5d5c4ae77d selftests/bpf: check null propagation only neither reg is PTR_TO_BTF_ID
16e7fb3cc305 pNFS/filelayout: Fix coalescing test for single DS
77043645aa6c wifi: iwlwifi: fw: skip PPAG for JF
d1607059375d btrfs: fix trace event name typo for FLUSH_DELAYED_REFS
34762a3d6a85 dma-buf: fix dma_buf_export init order v2
(From OE-Core rev: 13b7e9a13488fc66564f11871699a71b9f895fad)
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/.:
dcb315fe731 media/media-usb-tv: remove tm6000 config
45a27304655 media/media-pci-capture: remove deprecated configs
(From OE-Core rev: 977b95b6f4bbb51776a0d573839370756d8117e8)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
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:
3bcc86eb3ed9 Linux 5.15.89
37c18ef49ec3 pinctrl: amd: Add dynamic debugging for active GPIOs
a5841b81adfa Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout"
7ec9a45fc4ee block: handle bio_split_to_limits() NULL return
ba86db02d408 io_uring/io-wq: only free worker if it was allocated for creation
bb135bcc9499 io_uring/io-wq: free worker if task_work creation is canceled
63c2fa09b856 scsi: mpt3sas: Remove scsi_dma_map() error messages
e2ea55564229 efi: fix NULL-deref in init error path
94b6cf84db42 arm64: cmpxchg_double*: hazard against entire exchange variable
3891fa4982b9 arm64: atomics: remove LL/SC trampolines
61e86339af2a arm64: atomics: format whitespace consistently
ed4629d1e968 io_uring: lock overflowing for IOPOLL
fbf501514182 KVM: x86: Do not return host topology information from KVM_GET_SUPPORTED_CPUID
ee16841134be Documentation: KVM: add API issues section
b8f3b3cffb4a mm: Always release pages to the buddy allocator in memblock_free_late().
d2dc110deabe platform/surface: aggregator: Add missing call to ssam_request_sync_free()
cfd5978411ed igc: Fix PPS delta between two synchronized end-points
0bf52601ced1 perf build: Properly guard libbpf includes
205f35eee7be net/mlx5e: Don't support encap rules with gbp option
0526fc9330fe net/mlx5: Fix ptp max frequency adjustment range
9e2c38827cdc net/sched: act_mpls: Fix warning during failed attribute validation
e3bb44beafde tools/nolibc: fix the O_* fcntl/open macro definitions for riscv
1e6ec75bb3b5 tools/nolibc: restore mips branch ordering in the _start block
bd0431a66c39 tools/nolibc: Remove .global _start from the entry point code
a77c54f5b50c tools/nolibc/arch: mark the _start symbol as weak
da51e086d154 tools/nolibc/arch: split arch-specific code into individual files
8591e788bea3 tools/nolibc/types: split syscall-specific definitions into their own files
4fceecdeaa8a tools/nolibc/std: move the standard type definitions to std.h
1792136f228e tools/nolibc: use pselect6 on RISCV
487386a49e01 tools/nolibc: x86-64: Use `mov $60,%eax` instead of `mov $60,%rax`
27af4f2260cd tools/nolibc: x86: Remove `r8`, `r9` and `r10` from the clobber list
a60b24192b1f af_unix: selftest: Fix the size of the parameter to connect()
39ae73e58111 nfc: pn533: Wait for out_urb's completion in pn533_usb_send_frame()
f6003784b1f6 hvc/xen: lock console list traversal
79c58b74244d octeontx2-af: Fix LMAC config in cgx_lmac_rx_tx_enable
303d06288122 tipc: fix unexpected link reset due to discovery messages
e79d0f97cc6e ALSA: usb-audio: Relax hw constraints for implicit fb sync
c9557906bd3b ALSA: usb-audio: Make sure to stop endpoints before closing EPs
83e758105bc8 ASoC: wm8904: fix wrong outputs volume after power reactivation
7c26d218729b scsi: ufs: core: WLUN suspend SSU/enter hibern8 fail recovery
513fdf0b8e20 scsi: ufs: Stop using the clock scaling lock in the error handler
13259b60b71b scsi: mpi3mr: Refer CONFIG_SCSI_MPI3MR in Makefile
470f6a9175f1 regulator: da9211: Use irq handler when ready
24107ad469df x86/resctrl: Fix task CLOSID/RMID update race
cd3da505fb35 EDAC/device: Fix period calculation in edac_device_reset_delay_period()
ab0d02c53a60 x86/boot: Avoid using Intel mnemonics in AT&T syntax asm
a90d339f1f66 powerpc/imc-pmu: Fix use of mutex in IRQs disabled section
511cf17b2447 netfilter: ipset: Fix overflow before widen in the bitmap_ip_create() function.
b22faa21b623 sched/core: Fix use-after-free bug in dup_user_cpus_ptr()
d766ccadbe85 iommu/mediatek-v1: Fix an error handling path in mtk_iommu_v1_probe()
c929a230c844 iommu/iova: Fix alloc iova overflows issue
4b51aa263ae4 usb: ulpi: defer ulpi_register on ulpi_read_id timeout
9a8bf443f6a2 bus: mhi: host: Fix race between channel preparation and M0 event
456e3794e08a ipv6: raw: Deduct extension header length in rawv6_push_pending_frames
4c93422a54cd ixgbe: fix pci device refcount leak
e97da5d97a97 platform/x86: sony-laptop: Don't turn off 0x153 keyboard backlight during probe
f3b1e04daf86 dt-bindings: msm/dsi: Don't require vcca-supply on 14nm PHY
52a5f596c6cc dt-bindings: msm/dsi: Don't require vdds-supply on 10nm PHY
984ad875db80 drm/msm/dp: do not complete dp_aux_cmd_fifo_tx() if irq is not for aux transfer
92ae83665e9e platform/x86: ideapad-laptop: Add Legion 5 15ARH05 DMI id to set_fn_lock_led_list[]
e38b5f81dfa8 dt-bindings: msm: dsi-phy-28nm: Add missing qcom, dsi-phy-regulator-ldo-mode
bb32ab40cb7f dt-bindings: msm: dsi-controller-main: Fix description of core clock
3fb8d10beef9 dt-bindings: msm: dsi-controller-main: Fix power-domain constraint
dc5b651cad66 drm/msm/adreno: Make adreno quirks not overwrite each other
757d665ee1fe dt-bindings: msm: dsi-controller-main: Fix operating-points-v2 constraint
c90cf47d309a platform/x86: dell-privacy: Fix SW_CAMERA_LENS_COVER reporting
25b5f693bc2d platform/surface: aggregator: Ignore command messages not intended for us
ee7b8ce2cc28 platform/x86: dell-privacy: Only register SW_CAMERA_LENS_COVER if present
e0072068adaf cifs: Fix uninitialized memory read for smb311 posix symlink create
f3495b5e9e68 net/mlx5e: Set action fwd flag when parsing tc action goto
1a8431cc202a drm/i915/gt: Reset twice
011ecdbcd520 drm/virtio: Fix GEM handle creation UAF
798dfeeae33d s390/percpu: add READ_ONCE() to arch_this_cpu_to_op_simple()
a400593eb373 s390/cpum_sf: add READ_ONCE() semantics to compare and swap loops
d4fa65960a9d ASoC: qcom: lpass-cpu: Fix fallback SD line index handling
8400b91c11db s390/kexec: fix ipl report address for kdump
c07e0babd1df perf auxtrace: Fix address filter duplicate symbol selection
e81d82da619a net: stmmac: add aux timestamps fifo clearance wait
44167b74a8a3 docs: Fix the docs build with Sphinx 6.0
24176bf2a145 efi: tpm: Avoid READ_ONCE() for accessing the event log
01b966b14c6e selftests: kvm: Fix a compile error in selftests/kvm/rseq_test.c
c773ebe11c39 KVM: arm64: nvhe: Fix build with profile optimization
c1d6a72fc810 KVM: arm64: Fix S1PTW handling on RO memslots
e04e6cd8830f ALSA: hda/realtek: Enable mute/micmute LEDs on HP Spectre x360 13-aw0xxx
b983c9a9714e ALSA: hda/realtek - Turn on power early
9ab3696881ca ALSA: control-led: use strscpy in set_led_id()
a8acfe2c6fb9 netfilter: nft_payload: incorrect arithmetics when fetching VLAN header bits
90bb4f8f399f Linux 5.15.88
cbd3e6d5e516 ALSA: hda - Enable headset mic on another Dell laptop with ALC3254
b98dee474642 ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list
26350c21bc5e ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF
dadd0dcaa67d net/ulp: prevent ULP without clone op from entering the LISTEN status
04941c1d5bb5 net: sched: disallow noqueue for qdisc classes
068b51219362 serial: fixup backport of "serial: Deassert Transmit Enable on probe in driver-specific way"
46aa1557581f selftests/vm/pkeys: Add a regression test for setting PKRU through ptrace
3c1940c54922 x86/fpu: Emulate XRSTOR's behavior if the xfeatures PKRU bit is not set
3f1c81426a9f x86/fpu: Allow PKRU to be (once again) written by ptrace.
b29773d6b0bb x86/fpu: Add a pkru argument to copy_uabi_to_xstate()
9813c5fc22bc x86/fpu: Add a pkru argument to copy_uabi_from_kernel_to_xstate().
fea26e83a196 x86/fpu: Take task_struct* in copy_sigframe_from_user_to_xstate()
d4d152017e1d parisc: Align parisc MADV_XXX constants with all other architectures
(From OE-Core rev: 6398ae4f5c5d07500ffdf0ae1bc0ecf80b63dbca)
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:
21e996306a6a Linux 6.1.7
046c9972dd40 pinctrl: amd: Add dynamic debugging for active GPIOs
86cd9d9ebda6 Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout"
73a630b359c8 block: handle bio_split_to_limits() NULL return
e62e6258ab14 io_uring/io-wq: only free worker if it was allocated for creation
0a14c3ded80c io_uring/io-wq: free worker if task_work creation is canceled
3925336af00f drm/i915: Fix CFI violations in gt_sysfs
c06015ebc436 io_uring/poll: attempt request issue after racy poll wakeup
7fc3990dad04 io_uring: lock overflowing for IOPOLL
adc96d30f650 efi: fix NULL-deref in init error path
a474d4ad59cd ALSA: usb-audio: Fix possible NULL pointer dereference in snd_usb_pcm_has_fixed_rate()
394416282129 platform/x86/amd: Fix refcount leak in amd_pmc_probe
50b3cdf8239b platform/surface: aggregator: Add missing call to ssam_request_sync_free()
de76fc134f74 bnxt: make sure we return pages to the pool
4fe577ad7b29 net: hns3: fix wrong use of rss size during VF rss config
c2258d55935c net: lan966x: check for ptp to be enabled in lan966x_ptp_deinit()
bbc17e883cba igc: Fix PPS delta between two synchronized end-points
8c3dc300617c perf kmem: Support field "node" in evsel__process_alloc_event() coping with recent tracepoint restructuring
4e81a8a47dc6 perf kmem: Support legacy tracepoints
d4bc9f017f31 perf build: Properly guard libbpf includes
c8ca0ad10df0 octeontx2-pf: Fix resource leakage in VF driver unbind
0daf5f4a1eef selftests/net: l2_tos_ttl_inherit.sh: Ensure environment cleanup on failure.
2440f74a9967 selftests/net: l2_tos_ttl_inherit.sh: Run tests in their own netns.
1621f9a53948 selftests/net: l2_tos_ttl_inherit.sh: Set IPv6 addresses with "nodad".
514d9c6a3921 net/mlx5e: Fix macsec possible null dereference when updating MAC security entity (SecY)
9be4e25bdc1f net/mlx5e: Fix macsec ssci attribute handling in offload path
e02190787f11 net/mlx5e: Don't support encap rules with gbp option
f594f740c352 net/mlx5: Fix ptp max frequency adjustment range
0fa15a13670d net/mlx5e: IPoIB, Fix child PKEY interface stats on rx path
5844a46f09f7 net/mlx5e: IPoIB, Block PKEY interfaces with less rx queues than parent
b5f108e202b7 net/mlx5e: IPoIB, Block queue count configuration when sub interfaces are present
798604a1bd6e net/mlx5e: Verify dev is present for fix features ndo
ddf458641a51 net/mlx5: Fix command stats access after free
1f232fb61913 net/mlx5e: TC, Keep mod hdr actions after mod hdr alloc
39124c14af45 net/mlx5: check attr pointer validity before dereferencing it
7697de4ad708 Revert "r8169: disable detection of chip version 36"
8a97b544b98e net/sched: act_mpls: Fix warning during failed attribute validation
7ac9578e45b2 drm/vmwgfx: Remove rcu locks from user resources
a3be7e2afc43 drm/vmwgfx: Remove vmwgfx_hashtab
7f3d691dedfe drm/vmwgfx: Refactor ttm reference object hashtable to use linux/hashtable.
e98d62090b6d drm/vmwgfx: Refactor resource validation hashtable to use linux/hashtable implementation.
c00e42f1c9f1 drm/vmwgfx: Remove ttm object hashtable
8557e0e42e02 drm/vmwgfx: Refactor resource manager's hashtable to use linux/hashtable implementation.
2f3313c55544 drm/vmwgfx: Write the driver id registers
96a987318855 ice: Add check for kzalloc
500ca1da9d08 ice: Fix potential memory leak in ice_gnss_tty_write()
f2faf0699af7 drm/amdgpu: Fix potential NULL dereference
cd57d5e5e28e tools/nolibc: fix the O_* fcntl/open macro definitions for riscv
91fa2bd35280 tools/nolibc: restore mips branch ordering in the _start block
c878ac66db42 ASoC: qcom: Fix building APQ8016 machine driver without SOUNDWIRE
31a997c40a8a af_unix: selftest: Fix the size of the parameter to connect()
0b1605e45c36 gro: take care of DODGY packets
df9cddce8f99 gro: avoid checking for a failed search
8998db5021a2 nfc: pn533: Wait for out_urb's completion in pn533_usb_send_frame()
7bed0d49ca35 hvc/xen: lock console list traversal
92b0051217f2 sched/core: Fix arch_scale_freq_tick() on tickless systems
d995fadd7f09 octeontx2-af: Fix LMAC config in cgx_lmac_rx_tx_enable
973acfdfe90c nfsd: fix handling of cached open files in nfsd4_open codepath
0aba4dd7f269 nfsd: rework refcounting in filecache
65469b10522f NFSD: Add an nfsd_file_fsync tracepoint
4ec7a0f277d0 nfsd: reorganize filecache.c
d7a6c190012a nfsd: remove the pages_flushed statistic from filecache
1c36dc563e1c NFSD: Add an NFSD_FILE_GC flag to enable nfsd_file garbage collection
7e4d3d500458 NFSD: Revert "NFSD: NFSv4 CLOSE should release an nfsd_file immediately"
90d5095b76f4 NFSD: Pass the target nfsd_file to nfsd_commit()
5ac01865a2b9 tipc: fix unexpected link reset due to discovery messages
34aed3646e82 stmmac: dwmac-mediatek: remove the dwmac_fix_mac_speed
0d81b8e86e75 ALSA: usb-audio: Relax hw constraints for implicit fb sync
254328ba4cd3 ALSA: usb-audio: Make sure to stop endpoints before closing EPs
fc78cb85abd0 mtd: cfi: allow building spi-intel standalone
6e4131245240 mtd: parsers: scpart: fix __udivdi3 undefined on mips
c5d032482c23 ASoC: wm8904: fix wrong outputs volume after power reactivation
c6fa1de83fd8 drm/msm/dpu: Fix memory leak in msm_mdss_parse_data_bus_icc_path
7928737dd149 drm/msm/dpu: Fix some kernel-doc comments
fba1b23befd8 ASoC: Intel: sof-nau8825: fix module alias overflow
bc9b113d3c88 ASoC: Intel: sof_nau8825: support rt1015p speaker amplifier
c8eb7ac95a1e ASoC: Intel: fix sof-nau8825 link failure
bf5838132d1e scsi: ufs: core: WLUN suspend SSU/enter hibern8 fail recovery
9bfa3a615037 scsi: mpi3mr: Refer CONFIG_SCSI_MPI3MR in Makefile
87c71e88f6a6 scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM
ad1336274f73 regulator: da9211: Use irq handler when ready
07ac5db2d840 x86/resctrl: Fix event counts regression in reused RMIDs
d01c6557478b x86/resctrl: Fix task CLOSID/RMID update race
c1c59538337a x86/pat: Fix pat_x_mtrr_type() for MTRR disabled case
1dc8c5574cc2 EDAC/device: Fix period calculation in edac_device_reset_delay_period()
b43d52eeca7d x86/boot: Avoid using Intel mnemonics in AT&T syntax asm
424bcb570cb3 powerpc/imc-pmu: Fix use of mutex in IRQs disabled section
213b22abdf8f selftests: netfilter: fix transaction test script timeout handling
e88865876d47 netfilter: ipset: Fix overflow before widen in the bitmap_ip_create() function.
7b5cc7fd1789 sched/core: Fix use-after-free bug in dup_user_cpus_ptr()
bad1a2194485 iommu/arm-smmu: Report IOMMU_CAP_CACHE_COHERENCY even betterer
a1b9c7b1978a iommu/arm-smmu: Don't unregister on shutdown
abebd865a896 iommu/mediatek-v1: Fix an error handling path in mtk_iommu_v1_probe()
ead3e6c79479 iommu/arm-smmu-v3: Don't unregister on shutdown
61cbf790e732 iommu/iova: Fix alloc iova overflows issue
68a6f7dbf8a4 mm: Always release pages to the buddy allocator in memblock_free_late().
309278736f35 drm/amdgpu: enable VCN DPG for GC IP v11.0.4
e30be0ada6e2 drm/amdgpu: Enable pg/cg flags on GC11_0_4 for VCN
6ef4543f1f3b drm/amdgpu: add soc21 common ip block support for GC 11.0.4
d90de26bdc97 drm/amd/pm: enable GPO dynamic control support for SMU13.0.7
d167ce6c47db drm/amd/pm: enable GPO dynamic control support for SMU13.0.0
5e594dbf6e76 drm/amd/pm: Enable bad memory page/channel recording support for smu v13_0_0
e59d46eed1d9 drm/amd/pm: enable mode1 reset on smu_v13_0_10
9bd180b6f9d0 usb: ulpi: defer ulpi_register on ulpi_read_id timeout
5c855bcc7306 drm/i915/gt: Cleanup partial engine discovery failures
5e4194d89ffe iavf/iavf_main: actually log ->src mask when talking about it
0afa5f073658 ipv6: raw: Deduct extension header length in rawv6_push_pending_frames
c49996c6aa03 ixgbe: fix pci device refcount leak
fb8534b7960f platform/x86: sony-laptop: Don't turn off 0x153 keyboard backlight during probe
0f21e225ff48 dt-bindings: msm/dsi: Don't require vcca-supply on 14nm PHY
3c0d5bb904a2 dt-bindings: msm/dsi: Don't require vdds-supply on 10nm PHY
b7dcbca46db3 drm/msm/dp: do not complete dp_aux_cmd_fifo_tx() if irq is not for aux transfer
4b5d9c95b437 platform/x86: ideapad-laptop: Add Legion 5 15ARH05 DMI id to set_fn_lock_led_list[]
21e5eca0ac90 arm64/mm: fix incorrect file_map_count for invalid pmd
06f8be16be51 arm64: ptrace: Use ARM64_SME to guard the SME register enumerations
a9a6715272a7 dt-bindings: msm: dsi-phy-28nm: Add missing qcom, dsi-phy-regulator-ldo-mode
a006aaffd78f arm64/mm: add pud_user_exec() check in pud_user_accessible_page()
05458ee3ff82 arm64/signal: Always accept SVE signal frames on SME only systems
4b855673cf3d dt-bindings: msm: dsi-controller-main: Fix description of core clock
b5affe7e0b3a dt-bindings: msm: dsi-controller-main: Fix power-domain constraint
4fa6b43ba44b arm64/signal: Always allocate SVE signal frames on SME only systems
b72bd13bc500 drm/msm/adreno: Make adreno quirks not overwrite each other
d0f52562b891 firmware/psci: Don't register with debugfs if PSCI isn't available
a30aafcfba8f firmware/psci: Fix MEM_PROTECT_RANGE function numbers
b107b08c41b3 drm/msm: another fix for the headless Adreno GPU
96ec2f82aea0 dt-bindings: msm: dsi-controller-main: Fix operating-points-v2 constraint
dfa4ff480fe6 platform/x86: dell-privacy: Fix SW_CAMERA_LENS_COVER reporting
0e082105895c platform/x86: asus-wmi: Don't load fan curves without fan
127bf1d6bfe3 platform/x86: thinkpad_acpi: Fix profile mode display in AMT mode
c7acfd933d96 platform/x86: int3472/discrete: Ensure the clk/power enable pins are in output mode
7221c2a7be64 platform/surface: aggregator: Ignore command messages not intended for us
3a79bad87616 platform/x86: dell-privacy: Only register SW_CAMERA_LENS_COVER if present
1f4a9408024e ACPI: video: Allow selecting NVidia-WMI-EC or Apple GMUX backlight from the cmdline
462ed8a2beba ASoC: rt9120: Make dev PM runtime bind AsoC component PM
617401df4605 io_uring/fdinfo: include locked hash table in fdinfo output
f0f326dc9794 cifs: fix double free on failed kerberos auth
888c060bc327 cifs: do not query ifaces on smb1 mounts
d54a3ef8b8bd cifs: fix file info setting in cifs_open_file()
5a574327d1c5 cifs: fix file info setting in cifs_query_path_info()
d4b7ff9edebc cifs: Fix uninitialized memory read for smb311 posix symlink create
f905e03c8ff6 Revert "drm/amdgpu: Revert "drm/amdgpu: getting fan speed pwm for vega10 properly""
69a75087cd1f drm/amd/display: move remaining FPU code to dml folder
363781f72d46 drm/amd/pm: add the missing mapping for PPT feature on SMU13.0.0 and 13.0.7
b435f68e415c drm/amd/pm: correct the reference clock for fan speed(rpm) calculation
9196eb7c52e5 drm/amdgpu: Fixed bug on error when unloading amdgpu
dcfeba477b3e drm/amd: Delay removal of the firmware framebuffer
b696c627b3f5 drm/i915: Fix potential context UAFs
8874730ecefe drm/i915: Reserve enough fence slot for i915_vma_unbind_async
4009502c091c drm/i915/gt: Reset twice
42526442fe3e drm: Optimize drm buddy top-down allocation method
b8e6fc445990 drm/amd/pm/smu13: BACO is supported when it's in BACO state
adc48e5e408a drm/virtio: Fix GEM handle creation UAF
b6ac9ded42ae s390/percpu: add READ_ONCE() to arch_this_cpu_to_op_simple()
45a584f139e8 s390/cpum_sf: add READ_ONCE() semantics to compare and swap loops
ba518c5b6429 cpufreq: amd-pstate: fix kernel hang issue while amd-pstate unregistering
80a82f6eb3b7 elfcore: Add a cprm parameter to elf_core_extra_{phdrs,data_size}
5fc5cdee8ef2 ASoC: qcom: lpass-cpu: Fix fallback SD line index handling
20fa7855af45 brcmfmac: Prefer DT board type over DMI board type
ab4b5a2154bc s390/kexec: fix ipl report address for kdump
90e585b6ab23 perf auxtrace: Fix address filter duplicate symbol selection
2da1ba6f56f6 net: stmmac: add aux timestamps fifo clearance wait
0bb6742bf81a ACPI: Fix selecting wrong ACPI fwnode for the iGPU on some Dell laptops
8f282a84f31c arm64: cmpxchg_double*: hazard against entire exchange variable
f5731a792486 arm64: mte: Avoid the racy walk of the vma list during core dump
87b3a402bbc5 arm64: mte: Fix double-freeing of the temporary tag storage during coredump
4ad6c0635416 io_uring/poll: add hash if ready poll request can't complete inline
78c8b66a697a docs: Fix the docs build with Sphinx 6.0
e2cee489f24f efi: tpm: Avoid READ_ONCE() for accessing the event log
5b66b27b9dee efi: fix userspace infinite retry read efivars after EFI runtime services page fault
9a1195c58432 KVM: arm64: Fix S1PTW handling on RO memslots
d778e68faa6a KVM: x86: Do not return host topology information from KVM_GET_SUPPORTED_CPUID
82972d60f46f ALSA: hda/realtek: Enable mute/micmute LEDs on HP Spectre x360 13-aw0xxx
779c7c7ea8e0 ALSA: hda/realtek - Turn on power early
e1e0a181aea3 ALSA: usb-audio: Always initialize fixed_rate in snd_usb_find_implicit_fb_sync_format()
e59e115d67d6 ALSA: control-led: use strscpy in set_led_id()
303a04b6562e Revert "ALSA: usb-audio: Drop superfluous interface setup at parsing"
76ef74d4a379 netfilter: nft_payload: incorrect arithmetics when fetching VLAN header bits
38f3ee12661f Linux 6.1.6
cb9b3951d636 ALSA: hda: cs35l41: Check runtime suspend capability at runtime_idle
a6d58eff4f83 ALSA: hda - Enable headset mic on another Dell laptop with ALC3254
8107550bfe11 ALSA: hda: cs35l41: Don't return -EINVAL from system suspend/resume
57f6bea5218c ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform
0e19738afc84 ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list
d6ad4bd1d896 ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF
e8988e878af6 net: sched: disallow noqueue for qdisc classes
cd2e80a3ac70 gcc: disable -Warray-bounds for gcc-11 too
8cc0e63ba86c Revert "SUNRPC: Use RMW bitops in single-threaded hot paths"
29fbaa434c22 selftests/vm/pkeys: Add a regression test for setting PKRU through ptrace
d2602da3da87 x86/fpu: Emulate XRSTOR's behavior if the xfeatures PKRU bit is not set
587478470b0a x86/fpu: Allow PKRU to be (once again) written by ptrace.
bfa72faf69e8 x86/fpu: Add a pkru argument to copy_uabi_to_xstate()
a442736b704d x86/fpu: Add a pkru argument to copy_uabi_from_kernel_to_xstate().
f28418b06f6b x86/fpu: Take task_struct* in copy_sigframe_from_user_to_xstate()
763b92568726 parisc: Align parisc MADV_XXX constants with all other architectures
(From OE-Core rev: 18aaa6ae51d1e1d51a7eeeebf011adccc727efc0)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
The definitions in linux-kernel-base are needed to ensure the generated headers
are consistent. This was a small step that was missing from the previous
changes to linux-kernel-base as both kernel-devsrc and make-mod-scripts
need this information defined consistently.
(From OE-Core rev: 0d79d4883f924cef0d0ba361506ad75d441b9721)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 4ad1f430abe1e7706b43b36405f036fa23a4e6fd)
Signed-off-by: Armin Kuster <akuster@mvista.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
linux-yocto kernel adds openssl-native dependency by default even
when module signing is still optional. kmod should enable
openssl support too. This helps see details of signed kernel
modules and debug issues with module signing. For small systems
this can still be disabled.
modinfo output shows bad signing info when kernel signing is enabled
but openssl support is missing from kmod:
root@qemux86-64:~# dmesg|grep 509
[ 0.750905] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[ 0.950039] Asymmetric key parser 'x509' registered
[ 1.241727] Loading compiled-in X.509 certificates
[ 1.267863] Loaded X.509 cert 'Build time autogenerated kernel key: 48bcd79439f61aaf8fc19ec0882439d64db73820'
root@qemux86-64:~# lsmod
Module Size Used by
sch_fq_codel 20480 1
root@qemux86-64:~# modinfo sch_fq_codel
filename: /lib/modules/5.19.9-yocto-standard/kernel/net/sched/sch_fq_codel.ko
description: Fair Queue CoDel discipline
license: GPL
author: Eric Dumazet
depends:
retpoline: Y
intree: Y
name: sch_fq_codel
vermagic: 5.19.9-yocto-standard SMP preempt mod_unload
sig_id: PKCS#7
signer:
sig_key:
sig_hashalgo: unknown
signature:
modinfo with openssl enabled in kmod:
root@qemux86-64:~# modinfo sch_fq_codel
filename: /lib/modules/5.19.9-yocto-standard/kernel/net/sched/sch_fq_codel.ko
description: Fair Queue CoDel discipline
license: GPL
author: Eric Dumazet
depends:
retpoline: Y
intree: Y
name: sch_fq_codel
vermagic: 5.19.9-yocto-standard SMP preempt mod_unload
sig_id: PKCS#7
signer: Build time autogenerated kernel key
sig_key: 07:9A:C4:36:96:98:6E:5B:73:CF:C8:40:A6:57:D9:03:5E:27:8D:25
sig_hashalgo: sha512
signature: 21:4D:F0:E2:E0:7C:8E:31:A0:96:12:68:06:0D:FA:0D:E2:17:45:64:
51:94:7E:B0:97:DD:EB:59:89:CA:1A:C3:10:E7:7C:4D:5D:F0:5D:B6:
2A:61:D3:BF:89:7A:0D:CD:A2:39:57:1B:C6:B5:7D:C1:DB:6F:D9:36:
29:7A:07:18:F5:22:9F:9A:33:4D:38:BC:79:C8:51:8B:82:0F:B4:09:
08:37:52:11:98:50:7E:19:28:0F:13:2E:03:A5:E8:F8:D9:E7:DF:61:
18:AC:22:FE:96:BD:D0:55:96:9E:C9:1C:15:C9:0B:9A:5A:FD:D0:C0:
8F:41:12:5B:EA:4B:E5:5D:4D:EA:D5:2E:E5:80:D4:51:CC:63:97:F3:
4B:39:CC:B6:A1:83:F5:EF:2F:A1:22:CD:CA:BC:DB:82:C0:E4:AB:13:
5D:C5:F3:BC:B7:3E:B4:16:BF:87:1D:AC:69:43:1F:78:2A:5F:E2:63:
52:A2:DA:FC:F9:C0:BA:D8:1A:FE:58:4E:6A:D8:DE:BE:F8:F6:C2:59:
CE:F5:0A:A0:15:A3:01:BC:B6:70:36:4E:5F:D6:9B:B0:DE:93:15:3E:
35:37:38:D9:01:2B:72:2F:D3:74:A4:AD:F4:5F:52:74:44:E1:C9:D3:
A9:87:BC:93:58:8A:82:DB:14:6F:E0:4D:AF:8E:B5:3D:92:20:8B:4A:
04:54:6C:21:F1:76:DF:08:A9:0A:A5:D5:D0:17:CA:98:B5:F4:9F:F6:
9C:8F:DA:09:C2:37:FB:36:23:D1:25:27:4C:DB:9B:43:19:EB:55:1C:
DA:32:04:A5:B1:97:F7:A3:3B:82:55:FD:BD:6D:90:BB:61:E6:D3:93:
42:CB:FD:4A:1B:3E:03:43:7D:E3:85:32:91:45:C9:B4:CD:DC:B7:07:
37:58:8A:4A:49:5F:F7:26:41:E1:BB:A1:64:B5:86:00:17:9D:D7:81:
31:BA:DC:BF:04:CC:11:55:B1:C6:24:83:43:33:34:2D:BF:00:74:26:
6A:EC:56:90:C7:1B:C2:78:5C:7F:25:2D:78:BD:C5:D9:7D:69:6A:32:
5D:EF:48:6C:21:64:47:2A:FE:34:3C:58:8D:9E:D7:42:76:BE:89:84:
8D:62:9D:62:DE:7C:88:C4:5F:AA:13:20:6B:90:53:16:4E:06:EE:8A:
DE:F7:EA:F8:92:03:7D:84:B7:0C:9F:A0:52:B7:5E:21:BF:37:6A:C9:
34:6D:69:1E:4A:CC:48:F2:0A:6C:B8:AD:83:C0:8F:76:CC:43:0E:29:
17:A9:22:F3:0B:59:A9:87:24:AD:84:CD:EE:E2:C3:93:F7:A8:11:ED:
9A:CC:DA:7F:9D:73:06:5C:A7:1A:6A:54
(From OE-Core rev: d6a62eb68641239985a1f8cf9cf4528a07fd0b99)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: b055ca4b25dc6bfd617497f995b42b362020473e)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|