[Kernel-packages] [Bug 2051924] Re: Mantic update: upstream stable patchset 2024-02-01

2024-04-07 Thread Launchpad Bug Tracker
This bug was fixed in the package linux - 6.5.0-27.28

---
linux (6.5.0-27.28) mantic; urgency=medium

  * mantic/linux: 6.5.0-27.28 -proposed tracker (LP: #2055584)

  * Packaging resync (LP: #1786013)
- [Packaging] drop ABI data
- [Packaging] update annotations scripts
- debian.master/dkms-versions -- update from kernel-versions 
(main/2024.03.04)

  * CVE-2024-26597
- net: qualcomm: rmnet: fix global oob in rmnet_policy

  * CVE-2024-26599
- pwm: Fix out-of-bounds access in of_pwm_single_xlate()

  * Drop ABI checks from kernel build (LP: #2055686)
- [Packaging] Remove in-tree abi checks

  * Cranky update-dkms-versions rollout (LP: #2055685)
- [Packaging] remove update-dkms-versions
- Move debian/dkms-versions to debian.master/dkms-versions
- [Packaging] Replace debian/dkms-versions with $(DEBIAN)/dkms-versions

  * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux-
modules-extra to linux-modules (LP: #2054809)
- UBUNTU [Packaging]: Include erofs in linux-modules instead of 
linux-modules-
  extra

  * performance: Scheduler: ratelimit updating of load_avg (LP: #2053251)
- sched/fair: Ratelimit update to tg->load_avg

  * IB peer memory feature regressed in 6.5 (LP: #2055082)
- SAUCE: RDMA/core: Introduce peer memory interface

  * linux-tools-common: man page of usbip[d] is misplaced (LP: #2054094)
- [Packaging] rules: Put usbip manpages in the correct directory

  * CVE-2024-23851
- dm: limit the number of targets and parameter size area

  * CVE-2024-23850
- btrfs: do not ASSERT() if the newly created subvolume already got read

  * x86: performance: tsc: Extend watchdog check exemption to 4-Sockets platform
(LP: #2054699)
- x86/tsc: Extend watchdog check exemption to 4-Sockets platform

  * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from
linux-modules-extra to linux-modules (LP: #2045561)
- [Packaging] Move dmi-sysfs.ko into linux-modules

  * Fix AMD brightness issue on AUO panel (LP: #2054773)
- drm/amdgpu: make damage clips support configurable

  * Mantic update: upstream stable patchset 2024-02-28 (LP: #2055199)
- f2fs: explicitly null-terminate the xattr list
- pinctrl: lochnagar: Don't build on MIPS
- ALSA: hda - Fix speaker and headset mic pin config for CHUWI CoreBook XPro
- mptcp: fix uninit-value in mptcp_incoming_options
- wifi: cfg80211: lock wiphy mutex for rfkill poll
- wifi: avoid offset calculation on NULL pointer
- wifi: mac80211: handle 320 MHz in ieee80211_ht_cap_ie_to_sta_ht_cap
- debugfs: fix automount d_fsdata usage
- nvme-core: fix a memory leak in nvme_ns_info_from_identify()
- drm/amd/display: update dcn315 lpddr pstate latency
- drm/amdgpu: Fix cat debugfs amdgpu_regs_didt causes kernel null pointer
- smb: client, common: fix fortify warnings
- blk-mq: don't count completed flush data request as inflight in case of
  quiesce
- nvme-core: check for too small lba shift
- hwtracing: hisi_ptt: Handle the interrupt in hardirq context
- hwtracing: hisi_ptt: Don't try to attach a task
- ASoC: wm8974: Correct boost mixer inputs
- arm64: dts: rockchip: fix rk356x pcie msg interrupt name
- ASoC: Intel: Skylake: Fix mem leak in few functions
- ASoC: nau8822: Fix incorrect type in assignment and cast to restricted
  __be16
- ASoC: Intel: Skylake: mem leak in skl register function
- ASoC: cs43130: Fix the position of const qualifier
- ASoC: cs43130: Fix incorrect frame delay configuration
- ASoC: rt5650: add mutex to avoid the jack detection failure
- ASoC: Intel: skl_hda_dsp_generic: Drop HDMI routes when HDMI is not
  available
- nouveau/tu102: flush all pdbs on vmm flush
- ASoC: amd: yc: Add DMI entry to support System76 Pangolin 13
- ASoC: hdac_hda: Conditionally register dais for HDMI and Analog
- net/tg3: fix race condition in tg3_reset_task()
- ASoC: da7219: Support low DC impedance headset
- nvme: introduce helper function to get ctrl state
- nvme: prevent potential spectre v1 gadget
- arm64: dts: rockchip: Fix PCI node addresses on rk3399-gru
- drm/amdgpu: Add NULL checks for function pointers
- drm/exynos: fix a potential error pointer dereference
- drm/exynos: fix a wrong error checking
- hwmon: (corsair-psu) Fix probe when built-in
- LoongArch: Preserve syscall nr across execve()
- clk: rockchip: rk3568: Add PLL rate for 292.5MHz
- clk: rockchip: rk3128: Fix HCLK_OTG gate register
- jbd2: correct the printing of write_flags in jbd2_write_superblock()
- jbd2: increase the journal IO's priority
- drm/crtc: Fix uninit-value bug in drm_mode_setcrtc
- neighbour: Don't let neigh_forced_gc() disable preemption for long
- platform/x86: intel-vbtn: Fix missing tablet-mode-switch events
- jbd2: fix soft lockup in 

[Kernel-packages] [Bug 2051924] Re: Mantic update: upstream stable patchset 2024-02-01

2024-03-07 Thread Roxana Nicolescu
Commit "eventfs: Do not allow NULL parent to eventfs_start_creating()" had to 
be dropped.
This introduced a warning: "WARNING: CPU: 17 PID: 1 at fs/tracefs/inode.c:408 
start_creating+0xe9/0x110" that can be seen during boot testing. The check 
itself would not be an issue, but the commit was removes the following in 
start_creating:
```
-   /* If the parent is not specified, we create it in the root.


  
-* We need the root dentry to do this, which is in the super


  
-* block. A pointer to that is in the struct vfsmount that we   


  
-* have around. 


  
-*/ 


  
-   if (!parent)


  
-   parent = tracefs_mount->mnt_root;   


  
-  
```
This is used a lot for entries that are created in the root directory, 
therefore these entries cannot be created anymore.

```
root@mantic:/home/ubuntu# ll /sys/kernel/tracing/
total 0
drwx--  2 root root 0 Mar  7 14:29 ./
drwxr-xr-x 16 root root 0 Mar  7 14:29 ../
```

I would keep the warning entry, but this would create a bit of confusion
because we'll deviate from upstream. Therefore, I'll drop the commit

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/2051924

Title:
  Mantic update: upstream stable patchset 2024-02-01

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Mantic:
  Fix Committed

Bug description:
  SRU Justification

  Impact:
     The upstream process for stable tree updates is quite similar
     in scope to the Ubuntu SRU process, e.g., each patch has to
     demonstrably fix a bug, and each patch is vetted by upstream
     by originating either directly from a mainline/stable Linux tree or
     a minimally backported form of that patch. The following upstream
     stable patches should be included in the Ubuntu kernel:

     upstream stable patchset 2024-02-01

  Ported from the following upstream stable releases:
  v6.1.69, v6.6.8

     from git://git.kernel.org/

  r8152: add vendor/device ID pair for D-Link DUB-E250
  r8152: add vendor/device ID pair for ASUS USB-C2500
  ext4: fix warning in ext4_dio_write_end_io()
  ksmbd: fix memory leak in smb2_lock()
  afs: Fix refcount underflow from error handling race
  HID: lenovo: Restrict detection of patched firmware only to USB cptkbd
  net/mlx5e: Fix possible deadlock on mlx5e_tx_timeout_work
  net: ipv6: support reporting otherwise unknown prefix flags in RTM_NEWPREFIX
  qca_debug: Prevent crash on TX ring changes
  qca_debug: Fix ethtool -G iface tx behavior
  qca_spi: Fix reset behavior
  bnxt_en: Fix wrong return value check in bnxt_close_nic()
  bnxt_en: Fix HWTSTAMP_FILTER_ALL packet timestamp logic
  atm: solos-pci: Fix potential deadlock on _queue_lock
  atm: solos-pci: Fix potential deadlock on _queue_lock
  net: fec: correct queue selection
  octeontx2-af: fix a use-after-free in rvu_nix_register_reporters
  octeontx2-pf: Fix promisc mcam entry action
  octeontx2-af: Update RSS algorithm index
  atm: Fix Use-After-Free in do_vcc_ioctl
  iavf: Introduce new state machines for flow director
  iavf: Handle ntuple on/off based on new state machines for flow director
  qed: Fix a potential use-after-free in qed_cxt_tables_alloc
  net: Remove acked SYN flag from packet in the transmit queue correctly
  net: ena: Destroy correct number of xdp queues upon failure
  net: ena: Fix 

[Kernel-packages] [Bug 2051924] Re: Mantic update: upstream stable patchset 2024-02-01

2024-02-12 Thread Roxana Nicolescu
** Changed in: linux (Ubuntu Mantic)
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/2051924

Title:
  Mantic update: upstream stable patchset 2024-02-01

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Mantic:
  Fix Committed

Bug description:
  SRU Justification

  Impact:
     The upstream process for stable tree updates is quite similar
     in scope to the Ubuntu SRU process, e.g., each patch has to
     demonstrably fix a bug, and each patch is vetted by upstream
     by originating either directly from a mainline/stable Linux tree or
     a minimally backported form of that patch. The following upstream
     stable patches should be included in the Ubuntu kernel:

     upstream stable patchset 2024-02-01

  Ported from the following upstream stable releases:
  v6.1.69, v6.6.8

     from git://git.kernel.org/

  r8152: add vendor/device ID pair for D-Link DUB-E250
  r8152: add vendor/device ID pair for ASUS USB-C2500
  ext4: fix warning in ext4_dio_write_end_io()
  ksmbd: fix memory leak in smb2_lock()
  afs: Fix refcount underflow from error handling race
  HID: lenovo: Restrict detection of patched firmware only to USB cptkbd
  net/mlx5e: Fix possible deadlock on mlx5e_tx_timeout_work
  net: ipv6: support reporting otherwise unknown prefix flags in RTM_NEWPREFIX
  qca_debug: Prevent crash on TX ring changes
  qca_debug: Fix ethtool -G iface tx behavior
  qca_spi: Fix reset behavior
  bnxt_en: Fix wrong return value check in bnxt_close_nic()
  bnxt_en: Fix HWTSTAMP_FILTER_ALL packet timestamp logic
  atm: solos-pci: Fix potential deadlock on _queue_lock
  atm: solos-pci: Fix potential deadlock on _queue_lock
  net: fec: correct queue selection
  octeontx2-af: fix a use-after-free in rvu_nix_register_reporters
  octeontx2-pf: Fix promisc mcam entry action
  octeontx2-af: Update RSS algorithm index
  atm: Fix Use-After-Free in do_vcc_ioctl
  iavf: Introduce new state machines for flow director
  iavf: Handle ntuple on/off based on new state machines for flow director
  qed: Fix a potential use-after-free in qed_cxt_tables_alloc
  net: Remove acked SYN flag from packet in the transmit queue correctly
  net: ena: Destroy correct number of xdp queues upon failure
  net: ena: Fix xdp drops handling due to multibuf packets
  net: ena: Fix XDP redirection error
  stmmac: dwmac-loongson: Make sure MDIO is initialized before use
  sign-file: Fix incorrect return values check
  vsock/virtio: Fix unsigned integer wrap around in virtio_transport_has_space()
  dpaa2-switch: fix size of the dma_unmap
  dpaa2-switch: do not ask for MDB, VLAN and FDB replay
  net: stmmac: Handle disabled MDIO busses from devicetree
  net: atlantic: fix double free in ring reinit logic
  cred: switch to using atomic_long_t
  fuse: dax: set fc->dax to NULL in fuse_dax_conn_free()
  ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB
  ALSA: hda/hdmi: add force-connect quirks for ASUSTeK Z170 variants
  ALSA: hda/realtek: Apply mute LED quirk for HP15-db
  PCI: loongson: Limit MRRS to 256
  ksmbd: fix wrong name of SMB2_CREATE_ALLOCATION_SIZE
  drm/mediatek: Add spinlock for setting vblank event in atomic_begin
  x86/hyperv: Fix the detection of E820_TYPE_PRAM in a Gen2 VM
  usb: aqc111: check packet for fixup for true limit
  stmmac: dwmac-loongson: Add architecture dependency
  UBUNTU: [Config] updateconfigs for DWMAC_LOONGSON
  blk-throttle: fix lockdep warning of "cgroup_mutex or RCU read lock required!"
  blk-cgroup: bypass blkcg_deactivate_policy after destroying
  bcache: avoid oversize memory allocation by small stripe_size
  bcache: remove redundant assignment to variable cur_idx
  bcache: add code comments for bch_btree_node_get() and 
__bch_btree_node_alloc()
  bcache: avoid NULL checking to c->root in run_cache_set()
  nbd: fold nbd config initialization into nbd_alloc_config()
  nvme-auth: set explanation code for failure2 msgs
  nvme: catch errors from nvme_configure_metadata()
  selftests/bpf: fix bpf_loop_bench for new callback verification scheme
  LoongArch: Add dependency between vmlinuz.efi and vmlinux.efi
  LoongArch: Implement constant timer shutdown interface
  platform/x86: intel_telemetry: Fix kernel doc descriptions
  HID: glorious: fix Glorious Model I HID report
  HID: add ALWAYS_POLL quirk for Apple kb
  nbd: pass nbd_sock to nbd_read_reply() instead of index
  HID: hid-asus: reset the backlight brightness level on resume
  HID: multitouch: Add quirk for HONOR GLO-GXXX touchpad
  asm-generic: qspinlock: fix queued_spin_value_unlocked() implementation
  net: usb: qmi_wwan: claim interface 4 for ZTE MF290
  arm64: add dependency between vmlinuz.efi and Image
  HID: hid-asus: add const to read-only outgoing usb buffer
  btrfs: do not allow non subvolume 

[Kernel-packages] [Bug 2051924] Re: Mantic update: upstream stable patchset 2024-02-01

2024-02-06 Thread Manuel Diewald
** Description changed:

+ SRU Justification
  
- SRU Justification
+ Impact:
+    The upstream process for stable tree updates is quite similar
+    in scope to the Ubuntu SRU process, e.g., each patch has to
+    demonstrably fix a bug, and each patch is vetted by upstream
+    by originating either directly from a mainline/stable Linux tree or
+    a minimally backported form of that patch. The following upstream
+    stable patches should be included in the Ubuntu kernel:
  
- Impact:
-The upstream process for stable tree updates is quite similar
-in scope to the Ubuntu SRU process, e.g., each patch has to
-demonstrably fix a bug, and each patch is vetted by upstream
-by originating either directly from a mainline/stable Linux tree or
-a minimally backported form of that patch. The following upstream
-stable patches should be included in the Ubuntu kernel:
+    upstream stable patchset 2024-02-01
  
-upstream stable patchset 2024-02-01
+ Ported from the following upstream stable releases:
+ v6.1.69, v6.6.8
  
- Ported from the following upstream stable relases:
- v6.1.69, v6.6.8
- 
-from git://git.kernel.org/
+    from git://git.kernel.org/
  
  r8152: add vendor/device ID pair for D-Link DUB-E250
  r8152: add vendor/device ID pair for ASUS USB-C2500
  ext4: fix warning in ext4_dio_write_end_io()
  ksmbd: fix memory leak in smb2_lock()
  afs: Fix refcount underflow from error handling race
  HID: lenovo: Restrict detection of patched firmware only to USB cptkbd
  net/mlx5e: Fix possible deadlock on mlx5e_tx_timeout_work
  net: ipv6: support reporting otherwise unknown prefix flags in RTM_NEWPREFIX
  qca_debug: Prevent crash on TX ring changes
  qca_debug: Fix ethtool -G iface tx behavior
  qca_spi: Fix reset behavior
  bnxt_en: Fix wrong return value check in bnxt_close_nic()
  bnxt_en: Fix HWTSTAMP_FILTER_ALL packet timestamp logic
  atm: solos-pci: Fix potential deadlock on _queue_lock
  atm: solos-pci: Fix potential deadlock on _queue_lock
  net: fec: correct queue selection
  octeontx2-af: fix a use-after-free in rvu_nix_register_reporters
  octeontx2-pf: Fix promisc mcam entry action
  octeontx2-af: Update RSS algorithm index
  atm: Fix Use-After-Free in do_vcc_ioctl
  iavf: Introduce new state machines for flow director
  iavf: Handle ntuple on/off based on new state machines for flow director
  qed: Fix a potential use-after-free in qed_cxt_tables_alloc
  net: Remove acked SYN flag from packet in the transmit queue correctly
  net: ena: Destroy correct number of xdp queues upon failure
  net: ena: Fix xdp drops handling due to multibuf packets
  net: ena: Fix XDP redirection error
  stmmac: dwmac-loongson: Make sure MDIO is initialized before use
  sign-file: Fix incorrect return values check
  vsock/virtio: Fix unsigned integer wrap around in virtio_transport_has_space()
  dpaa2-switch: fix size of the dma_unmap
  dpaa2-switch: do not ask for MDB, VLAN and FDB replay
  net: stmmac: Handle disabled MDIO busses from devicetree
- appletalk: Fix Use-After-Free in atalk_ioctl
  net: atlantic: fix double free in ring reinit logic
  cred: switch to using atomic_long_t
  fuse: dax: set fc->dax to NULL in fuse_dax_conn_free()
  ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB
  ALSA: hda/hdmi: add force-connect quirks for ASUSTeK Z170 variants
  ALSA: hda/realtek: Apply mute LED quirk for HP15-db
  PCI: loongson: Limit MRRS to 256
  ksmbd: fix wrong name of SMB2_CREATE_ALLOCATION_SIZE
  drm/mediatek: Add spinlock for setting vblank event in atomic_begin
  x86/hyperv: Fix the detection of E820_TYPE_PRAM in a Gen2 VM
  usb: aqc111: check packet for fixup for true limit
  stmmac: dwmac-loongson: Add architecture dependency
  UBUNTU: [Config] updateconfigs for DWMAC_LOONGSON
  blk-throttle: fix lockdep warning of "cgroup_mutex or RCU read lock required!"
  blk-cgroup: bypass blkcg_deactivate_policy after destroying
  bcache: avoid oversize memory allocation by small stripe_size
  bcache: remove redundant assignment to variable cur_idx
  bcache: add code comments for bch_btree_node_get() and 
__bch_btree_node_alloc()
  bcache: avoid NULL checking to c->root in run_cache_set()
  nbd: fold nbd config initialization into nbd_alloc_config()
  nvme-auth: set explanation code for failure2 msgs
  nvme: catch errors from nvme_configure_metadata()
  selftests/bpf: fix bpf_loop_bench for new callback verification scheme
  LoongArch: Add dependency between vmlinuz.efi and vmlinux.efi
  LoongArch: Implement constant timer shutdown interface
  platform/x86: intel_telemetry: Fix kernel doc descriptions
  HID: glorious: fix Glorious Model I HID report
  HID: add ALWAYS_POLL quirk for Apple kb
  nbd: pass nbd_sock to nbd_read_reply() instead of index
  HID: hid-asus: reset the backlight brightness level on resume
  HID: multitouch: 

[Kernel-packages] [Bug 2051924] Re: Mantic update: upstream stable patchset 2024-02-01

2024-02-01 Thread Manuel Diewald
** Changed in: linux (Ubuntu)
   Status: Confirmed => Invalid

** Changed in: linux (Ubuntu Mantic)
   Importance: Undecided => Medium

** Changed in: linux (Ubuntu Mantic)
   Status: New => In Progress

** Changed in: linux (Ubuntu Mantic)
 Assignee: (unassigned) => Manuel Diewald (diewald)

** Description changed:

  
  SRU Justification
  
  Impact:
 The upstream process for stable tree updates is quite similar
 in scope to the Ubuntu SRU process, e.g., each patch has to
 demonstrably fix a bug, and each patch is vetted by upstream
 by originating either directly from a mainline/stable Linux tree or
 a minimally backported form of that patch. The following upstream
 stable patches should be included in the Ubuntu kernel:
  
 upstream stable patchset 2024-02-01
+ 
+ Ported from the following upstream stable relases:
+ v6.1.69, v6.6.8
+ 
 from git://git.kernel.org/
+ 
+ r8152: add vendor/device ID pair for D-Link DUB-E250
+ r8152: add vendor/device ID pair for ASUS USB-C2500
+ ext4: fix warning in ext4_dio_write_end_io()
+ ksmbd: fix memory leak in smb2_lock()
+ afs: Fix refcount underflow from error handling race
+ HID: lenovo: Restrict detection of patched firmware only to USB cptkbd
+ net/mlx5e: Fix possible deadlock on mlx5e_tx_timeout_work
+ net: ipv6: support reporting otherwise unknown prefix flags in RTM_NEWPREFIX
+ qca_debug: Prevent crash on TX ring changes
+ qca_debug: Fix ethtool -G iface tx behavior
+ qca_spi: Fix reset behavior
+ bnxt_en: Fix wrong return value check in bnxt_close_nic()
+ bnxt_en: Fix HWTSTAMP_FILTER_ALL packet timestamp logic
+ atm: solos-pci: Fix potential deadlock on _queue_lock
+ atm: solos-pci: Fix potential deadlock on _queue_lock
+ net: fec: correct queue selection
+ octeontx2-af: fix a use-after-free in rvu_nix_register_reporters
+ octeontx2-pf: Fix promisc mcam entry action
+ octeontx2-af: Update RSS algorithm index
+ atm: Fix Use-After-Free in do_vcc_ioctl
+ iavf: Introduce new state machines for flow director
+ iavf: Handle ntuple on/off based on new state machines for flow director
+ qed: Fix a potential use-after-free in qed_cxt_tables_alloc
+ net: Remove acked SYN flag from packet in the transmit queue correctly
+ net: ena: Destroy correct number of xdp queues upon failure
+ net: ena: Fix xdp drops handling due to multibuf packets
+ net: ena: Fix XDP redirection error
+ stmmac: dwmac-loongson: Make sure MDIO is initialized before use
+ sign-file: Fix incorrect return values check
+ vsock/virtio: Fix unsigned integer wrap around in virtio_transport_has_space()
+ dpaa2-switch: fix size of the dma_unmap
+ dpaa2-switch: do not ask for MDB, VLAN and FDB replay
+ net: stmmac: Handle disabled MDIO busses from devicetree
+ appletalk: Fix Use-After-Free in atalk_ioctl
+ net: atlantic: fix double free in ring reinit logic
+ cred: switch to using atomic_long_t
+ fuse: dax: set fc->dax to NULL in fuse_dax_conn_free()
+ ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB
+ ALSA: hda/hdmi: add force-connect quirks for ASUSTeK Z170 variants
+ ALSA: hda/realtek: Apply mute LED quirk for HP15-db
+ PCI: loongson: Limit MRRS to 256
+ ksmbd: fix wrong name of SMB2_CREATE_ALLOCATION_SIZE
+ drm/mediatek: Add spinlock for setting vblank event in atomic_begin
+ x86/hyperv: Fix the detection of E820_TYPE_PRAM in a Gen2 VM
+ usb: aqc111: check packet for fixup for true limit
+ stmmac: dwmac-loongson: Add architecture dependency
+ UBUNTU: [Config] updateconfigs for DWMAC_LOONGSON
+ blk-throttle: fix lockdep warning of "cgroup_mutex or RCU read lock required!"
+ blk-cgroup: bypass blkcg_deactivate_policy after destroying
+ bcache: avoid oversize memory allocation by small stripe_size
+ bcache: remove redundant assignment to variable cur_idx
+ bcache: add code comments for bch_btree_node_get() and 
__bch_btree_node_alloc()
+ bcache: avoid NULL checking to c->root in run_cache_set()
+ nbd: fold nbd config initialization into nbd_alloc_config()
+ nvme-auth: set explanation code for failure2 msgs
+ nvme: catch errors from nvme_configure_metadata()
+ selftests/bpf: fix bpf_loop_bench for new callback verification scheme
+ LoongArch: Add dependency between vmlinuz.efi and vmlinux.efi
+ LoongArch: Implement constant timer shutdown interface
+ platform/x86: intel_telemetry: Fix kernel doc descriptions
+ HID: glorious: fix Glorious Model I HID report
+ HID: add ALWAYS_POLL quirk for Apple kb
+ nbd: pass nbd_sock to nbd_read_reply() instead of index
+ HID: hid-asus: reset the backlight brightness level on resume
+ HID: multitouch: Add quirk for HONOR GLO-GXXX touchpad
+ asm-generic: qspinlock: fix queued_spin_value_unlocked() implementation
+ net: usb: qmi_wwan: claim interface 4 for ZTE MF290
+ arm64: add dependency between vmlinuz.efi and Image
+ HID: hid-asus: add const to read-only outgoing usb buffer
+ btrfs: do not allow non subvolume root targets for snapshot
+