From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Subject: [PATCH 6.11 080/184] media: av7110: fix a spectre vulnerability
Date: Tue, 12 Nov 2024 11:20:38 +0100 [thread overview]
Message-ID: <20241112101903.931488072@linuxfoundation.org> (raw)
In-Reply-To: <20241112101900.865487674@linuxfoundation.org>
6.11-stable review patch. If anyone has any objections, please let me know.
------------------
From: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
commit 458ea1c0be991573ec436aa0afa23baacfae101a upstream.
As warned by smatch:
drivers/staging/media/av7110/av7110_ca.c:270 dvb_ca_ioctl() warn: potential spectre issue 'av7110->ci_slot' [w] (local cap)
There is a spectre-related vulnerability at the code. Fix it.
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Cc: stable@vger.kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/staging/media/av7110/av7110.h | 4 +++-
drivers/staging/media/av7110/av7110_ca.c | 25 +++++++++++++++++--------
2 files changed, 20 insertions(+), 9 deletions(-)
--- a/drivers/staging/media/av7110/av7110.h
+++ b/drivers/staging/media/av7110/av7110.h
@@ -88,6 +88,8 @@ struct infrared {
u32 ir_config;
};
+#define MAX_CI_SLOTS 2
+
/* place to store all the necessary device information */
struct av7110 {
/* devices */
@@ -163,7 +165,7 @@ struct av7110 {
/* CA */
- struct ca_slot_info ci_slot[2];
+ struct ca_slot_info ci_slot[MAX_CI_SLOTS];
enum av7110_video_mode vidmode;
struct dmxdev dmxdev;
--- a/drivers/staging/media/av7110/av7110_ca.c
+++ b/drivers/staging/media/av7110/av7110_ca.c
@@ -26,23 +26,28 @@
void CI_handle(struct av7110 *av7110, u8 *data, u16 len)
{
+ unsigned slot_num;
+
dprintk(8, "av7110:%p\n", av7110);
if (len < 3)
return;
switch (data[0]) {
case CI_MSG_CI_INFO:
- if (data[2] != 1 && data[2] != 2)
+ if (data[2] != 1 && data[2] != MAX_CI_SLOTS)
break;
+
+ slot_num = array_index_nospec(data[2] - 1, MAX_CI_SLOTS);
+
switch (data[1]) {
case 0:
- av7110->ci_slot[data[2] - 1].flags = 0;
+ av7110->ci_slot[slot_num].flags = 0;
break;
case 1:
- av7110->ci_slot[data[2] - 1].flags |= CA_CI_MODULE_PRESENT;
+ av7110->ci_slot[slot_num].flags |= CA_CI_MODULE_PRESENT;
break;
case 2:
- av7110->ci_slot[data[2] - 1].flags |= CA_CI_MODULE_READY;
+ av7110->ci_slot[slot_num].flags |= CA_CI_MODULE_READY;
break;
}
break;
@@ -262,15 +267,19 @@ static int dvb_ca_ioctl(struct file *fil
case CA_GET_SLOT_INFO:
{
struct ca_slot_info *info = (struct ca_slot_info *)parg;
+ unsigned int slot_num;
if (info->num < 0 || info->num > 1) {
mutex_unlock(&av7110->ioctl_mutex);
return -EINVAL;
}
- av7110->ci_slot[info->num].num = info->num;
- av7110->ci_slot[info->num].type = FW_CI_LL_SUPPORT(av7110->arm_app) ?
- CA_CI_LINK : CA_CI;
- memcpy(info, &av7110->ci_slot[info->num], sizeof(struct ca_slot_info));
+ slot_num = array_index_nospec(info->num, MAX_CI_SLOTS);
+
+ av7110->ci_slot[slot_num].num = info->num;
+ av7110->ci_slot[slot_num].type = FW_CI_LL_SUPPORT(av7110->arm_app) ?
+ CA_CI_LINK : CA_CI;
+ memcpy(info, &av7110->ci_slot[slot_num],
+ sizeof(struct ca_slot_info));
break;
}
next prev parent reply other threads:[~2024-11-12 10:42 UTC|newest]
Thread overview: 198+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-12 10:19 [PATCH 6.11 000/184] 6.11.8-rc1 review Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 001/184] arm64: dts: rockchip: Fix rt5651 compatible value on rk3399-eaidk-610 Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 002/184] arm64: dts: rockchip: Fix rt5651 compatible value on rk3399-sapphire-excavator Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 003/184] arm64: dts: rockchip: Move L3 cache outside CPUs in RK3588(S) SoC dtsi Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 004/184] arm64: dts: rockchip: Start cooling maps numbering from zero on ROCK 5B Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 005/184] arm64: dts: rockchip: Designate Turing RK1s system power controller Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 006/184] firmware: qcom: scm: fix a NULL-pointer dereference Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 007/184] EDAC/qcom: Make irq configuration optional Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 008/184] arm64: dts: rockchip: Remove hdmis 2nd interrupt on rk3328 Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 009/184] arm64: dts: rockchip: Fix wakeup prop names on PineNote BT node Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 010/184] arm64: dts: rockchip: Fix reset-gpios property on brcm BT nodes Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 011/184] arm64: dts: rockchip: fix i2c2 pinctrl-names property on anbernic-rg353p/v Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 012/184] arm64: dts: rockchip: Drop regulator-init-microvolt from two boards Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 013/184] arm64: dts: rockchip: Fix bluetooth properties on rk3566 box demo Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 014/184] arm64: dts: rockchip: Fix bluetooth properties on Rock960 boards Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 015/184] arm64: dts: rockchip: Add DTS for FriendlyARM NanoPi R2S Plus Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 016/184] arm64: dts: rockchip: Remove undocumented supports-emmc property Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 017/184] arm64: dts: rockchip: Remove #cooling-cells from fan on Theobroma lion Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 018/184] arm64: dts: rockchip: Fix LED triggers on rk3308-roc-cc Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 019/184] arm64: dts: rockchip: remove num-slots property from rk3328-nanopi-r2s-plus Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 020/184] arm64: dts: qcom: sm8450 fix PIPE clock specification for pcie1 Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 021/184] arm64: dts: imx8-ss-vpu: Fix imx8qm VPU IRQs Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 022/184] arm64: dts: imx8mp: correct sdhc ipg clk Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 023/184] arm64: dts: imx8mp-phyboard-pollux: Set Video PLL1 frequency to 506.8 MHz Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 024/184] firmware: arm_scmi: Fix slab-use-after-free in scmi_bus_notifier() Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 025/184] firmware: qcom: scm: Return -EOPNOTSUPP for unsupported SHM bridge enabling Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 026/184] arm64: dts: rockchip: remove orphaned pinctrl-names from pinephone pro Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 027/184] ARM: dts: rockchip: fix rk3036 acodec node Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 028/184] ARM: dts: rockchip: drop grf reference from rk3036 hdmi Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 029/184] ARM: dts: rockchip: Fix the spi controller on rk3036 Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 030/184] ARM: dts: rockchip: Fix the realtek audio codec on rk3036-kylin Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 031/184] arm64: dts: rockchip: Correct GPIO polarity on brcm BT nodes Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 032/184] HID: core: zero-initialize the report buffer Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 033/184] platform/x86/amd/pmc: Detect when STB is not available Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 034/184] sunrpc: handle -ENOTCONN in xs_tcp_setup_socket() Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 035/184] NFSv3: only use NFS timeout for MOUNT when protocols are compatible Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 036/184] NFS: Fix attribute delegation behaviour on exclusive create Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 037/184] NFS: Further fixes to attribute delegation a/mtime changes Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 038/184] nfs: avoid i_lock contention in nfs_clear_invalid_mapping Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 039/184] security/keys: fix slab-out-of-bounds in key_task_permission Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 040/184] regulator: rtq2208: Fix uninitialized use of regulator_config Greg Kroah-Hartman
2024-11-12 10:19 ` [PATCH 6.11 041/184] net: enetc: set MAC address to the VF net_device Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 042/184] net: dpaa_eth: print FD status in CPU endianness in dpaa_eth_fd tracepoint Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 043/184] dt-bindings: net: xlnx,axi-ethernet: Correct phy-mode property value Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 044/184] sctp: properly validate chunk size in sctp_sf_ootb() Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 045/184] net: enetc: allocate vf_state during PF probes Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 046/184] net: xilinx: axienet: Enqueue Tx packets in dql before dmaengine starts Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 047/184] can: c_can: fix {rx,tx}_errors statistics Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 048/184] ice: change q_index variable type to s16 to store -1 value Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 049/184] i40e: fix race condition by adding filters intermediate sync state Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 050/184] e1000e: Remove Meteor Lake SMBUS workarounds Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 051/184] net: hns3: fix kernel crash when uninstalling driver Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 052/184] net: phy: ti: add PHY_RST_AFTER_CLK_EN flag Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 053/184] net: stmmac: Fix unbalanced IRQ wake disable warning on single irq case Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 054/184] netfilter: nf_tables: wait for rcu grace period on net_device removal Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 055/184] virtio_net: Support dynamic rss indirection table size Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 056/184] virtio_net: Add hash_key_length check Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 057/184] virtio_net: Sync rss config to device when virtnet_probe Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 058/184] virtio_net: Update rss when set queue Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 059/184] net: arc: fix the device for dma_map_single/dma_unmap_single Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 060/184] net: arc: rockchip: fix emac mdio node support Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 061/184] rxrpc: Fix missing locking causing hanging calls Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 062/184] net/smc: do not leave a dangling sk pointer in __smc_create() Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 063/184] drivers: net: ionic: add missed debugfs cleanup to ionic_probe() error path Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 064/184] Revert "ALSA: hda/conexant: Mute speakers at suspend / shutdown" Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 065/184] media: stb0899_algo: initialize cfr before using it Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 066/184] media: dvbdev: prevent the risk of out of memory access Greg Kroah-Hartman
2024-11-18 0:33 ` Nathan Chancellor
2024-11-19 12:03 ` Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 067/184] media: dvb_frontend: dont play tricks with underflow values Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 068/184] media: adv7604: prevent underflow condition when reporting colorspace Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 069/184] scsi: sd_zbc: Use kvzalloc() to allocate REPORT ZONES buffer Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 070/184] ALSA: firewire-lib: fix return value on fail in amdtp_tscm_init() Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 071/184] tools/lib/thermal: Fix sampling handler context ptr Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 072/184] thermal/of: support thermal zones w/o trips subnode Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 073/184] ASoC: stm32: spdifrx: fix dma channel release in stm32_spdifrx_remove Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 074/184] ASoC: SOF: sof-client-probes-ipc4: Set param_size extension bits Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 075/184] media: dvb-core: add missing buffer index check Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 076/184] media: mgb4: protect driver against spectre Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 077/184] media: ar0521: dont overflow when checking PLL values Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 078/184] media: s5p-jpeg: prevent buffer overflows Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 079/184] media: cx24116: prevent overflows on SNR calculus Greg Kroah-Hartman
2024-11-12 10:20 ` Greg Kroah-Hartman [this message]
2024-11-12 10:20 ` [PATCH 6.11 081/184] media: pulse8-cec: fix data timestamp at pulse8_setup() Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 082/184] media: vivid: fix buffer overwrite when using > 32 buffers Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 083/184] media: v4l2-tpg: prevent the risk of a division by zero Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 084/184] media: v4l2-ctrls-api: fix error handling for v4l2_g_ctrl() Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 085/184] can: m_can: m_can_close(): dont call free_irq() for IRQ-less devices Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 086/184] can: mcp251xfd: mcp251xfd_get_tef_len(): fix length calculation Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 087/184] can: mcp251xfd: mcp251xfd_ring_alloc(): fix coalescing configuration when switching CAN modes Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 088/184] can: {cc770,sja1000}_isa: allow building on x86_64 Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 089/184] ksmbd: fix slab-use-after-free in ksmbd_smb2_session_create Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 090/184] ksmbd: check outstanding simultaneous SMB operations Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 091/184] ksmbd: Fix the missing xa_store error check Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 092/184] ksmbd: fix slab-use-after-free in smb3_preauth_hash_rsp Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 093/184] drm/xe: Fix possible exec queue leak in exec IOCTL Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 094/184] drm/xe: Drop VM dma-resv lock on xe_sync_in_fence_get failure " Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 095/184] drm/xe: Set mask bits for CCS_MODE register Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 096/184] pwm: imx-tpm: Use correct MODULO value for EPWM mode Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 097/184] tpm: Lock TPM chip in tpm_pm_suspend() first Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 098/184] rpmsg: glink: Handle rejected intent request better Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 099/184] drm/amd/pm: always pick the pptable from IFWI Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 100/184] drm/amd/display: Fix brightness level not retained over reboot Greg Kroah-Hartman
2024-11-12 10:20 ` [PATCH 6.11 101/184] drm/imagination: Add a per-file PVR context list Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 102/184] drm/imagination: Break an object reference loop Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 103/184] drm/amd/pm: correct the workload setting Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 104/184] drm/amd/display: parse umc_info or vram_info based on ASIC Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 105/184] drm/panthor: Lock XArray when getting entries for the VM Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 106/184] drm/panthor: Be stricter about IO mapping flags Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 107/184] drm/amdgpu: Adjust debugfs eviction and IB access permissions Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 108/184] drm/amdgpu: add missing size check in amdgpu_debugfs_gprwave_read() Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 109/184] drm/amdgpu: Adjust debugfs register access permissions Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 110/184] drm/amdgpu: Fix DPX valid mode check on GC 9.4.3 Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 111/184] drm/amdgpu: prevent NULL pointer dereference if ATIF is not supported Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 112/184] thermal/drivers/qcom/lmh: Remove false lockdep backtrace Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 113/184] KEYS: trusted: dcp: fix NULL dereference in AEAD crypto operation Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 114/184] dm cache: correct the number of origin blocks to match the target length Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 115/184] dm cache: fix flushing uninitialized delayed_work on cache_ctr error Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 116/184] dm cache: fix out-of-bounds access to the dirty bitset when resizing Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 117/184] dm cache: optimize dirty bit checking with find_next_bit " Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 118/184] dm cache: fix potential out-of-bounds access on the first resume Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 119/184] dm-unstriped: cast an operand to sector_t to prevent potential uint32_t overflow Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 120/184] dm: fix a crash if blk_alloc_disk fails Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 121/184] mptcp: no admin perm to list endpoints Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 122/184] ALSA: usb-audio: Add quirk for HP 320 FHD Webcam Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 123/184] scsi: ufs: core: Start the RTC update work later Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 124/184] nfs: Fix KMSAN warning in decode_getfattr_attrs() Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 125/184] tracing: Fix tracefs mount options Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 126/184] net: wwan: t7xx: Fix off-by-one error in t7xx_dpmaif_rx_buf_alloc() Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 127/184] net: vertexcom: mse102x: Fix possible double free of TX skb Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 128/184] mptcp: use sock_kfree_s instead of kfree Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 129/184] arm64/sve: Discard stale CPU state when handling SVE traps Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 130/184] arm64: Kconfig: Make SME depend on BROKEN for now Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 131/184] arm64: smccc: Remove broken support for SMCCCv1.3 SVE discard hint Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 132/184] mm/slab: fix warning caused by duplicate kmem_cache creation in kmem_buckets_create Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 133/184] KVM: PPC: Book3S HV: Mask off LPCR_MER for a vCPU before running it to avoid spurious interrupts Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 134/184] idpf: avoid vport access in idpf_get_link_ksettings Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 135/184] idpf: fix idpf_vc_core_init error path Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 136/184] btrfs: fix the length of reserved qgroup to free Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 137/184] btrfs: fix per-subvolume RO/RW flags with new mount API Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 138/184] btrfs: reinitialize delayed ref list after deleting it from the list Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 139/184] platform/x86/amd/pmf: Relocate CPU ID macros to the PMF header Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 140/184] platform/x86/amd/pmf: Update SMU metrics table for 1AH family series Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 141/184] platform/x86/amd/pmf: Add SMU metrics table support for 1Ah family 60h model Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 142/184] media: uvcvideo: Skip parsing frames of type UVC_VS_UNDEFINED in uvc_parse_format Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 143/184] filemap: Fix bounds checking in filemap_read() Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 144/184] i2c: designware: do not hold SCL low when I2C_DYNAMIC_TAR_UPDATE is not set Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 145/184] clk: qcom: gcc-x1e80100: Fix USB MP SS1 PHY GDSC pwrsts flags Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 146/184] clk: qcom: clk-alpha-pll: Fix pll post div mask when width is not set Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 147/184] fs/proc: fix compile warning about variable vmcore_mmap_ops Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 148/184] objpool: fix to make percpu slot allocation more robust Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 149/184] signal: restore the override_rlimit logic Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 150/184] mm/damon/core: avoid overflow in damon_feed_loop_next_input() Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 151/184] mm/damon/core: handle zero {aggregation,ops_update} intervals Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 152/184] mm/damon/core: handle zero schemes apply interval Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 153/184] mm/mlock: set the correct prev on failure Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 154/184] mm/thp: fix deferred split unqueue naming and locking Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 155/184] thunderbolt: Add only on-board retimers when !CONFIG_USB4_DEBUGFS_MARGINING Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 156/184] usb: musb: sunxi: Fix accessing an released usb phy Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 157/184] usb: dwc3: fix fault at system suspend if device was already runtime suspended Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 158/184] usb: typec: qcom-pmic: init value of hdr_len/txbuf_len earlier Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 159/184] usb: typec: fix potential out of bounds in ucsi_ccg_update_set_new_cam_cmd() Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 160/184] USB: serial: io_edgeport: fix use after free in debug printk Greg Kroah-Hartman
2024-11-12 10:21 ` [PATCH 6.11 161/184] USB: serial: qcserial: add support for Sierra Wireless EM86xx Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 162/184] USB: serial: option: add Fibocom FG132 0x0112 composition Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 163/184] USB: serial: option: add Quectel RG650V Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 164/184] clk: qcom: videocc-sm8350: use HW_CTRL_TRIGGER for vcodec GDSCs Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 165/184] clk: qcom: gcc-x1e80100: Fix halt_check for pipediv2 clocks Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 166/184] thunderbolt: Fix connection issue with Pluggable UD-4VPD dock Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 167/184] staging: vchiq_arm: Use devm_kzalloc() for drv_mgmt allocation Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 168/184] staging: vchiq_arm: Use devm_kzalloc() for vchiq_arm_state allocation Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 169/184] irqchip/gic-v3: Force propagation of the active state with a read-back Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 170/184] ocfs2: remove entry once instead of null-ptr-dereference in ocfs2_xa_remove() Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 171/184] ucounts: fix counter leak in inc_rlimit_get_ucounts() Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 172/184] selftests: hugetlb_dio: check for initial conditions to skip in the start Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 173/184] firmware: qcom: scm: Refactor code to support multiple dload mode Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 174/184] firmware: qcom: scm: suppress download mode error Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 175/184] block: rework bio splitting Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 176/184] block: fix queue limits checks in blk_rq_map_user_bvec for real Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 177/184] drm/xe/guc/ct: Flush g2h worker in case of g2h response timeout Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 178/184] drm/xe: Move LNL scheduling WA to xe_device.h Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 179/184] drm/xe/ufence: Flush xe ordered_wq in case of ufence timeout Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 180/184] drm/xe/guc/tlb: Flush g2h worker in case of tlb timeout Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 181/184] ASoC: amd: yc: fix internal mic on Xiaomi Book Pro 14 2022 Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 182/184] xtensa: Emulate one-byte cmpxchg Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 183/184] hv_sock: Initializing vsk->trans to NULL to prevent a dangling pointer Greg Kroah-Hartman
2024-11-12 10:22 ` [PATCH 6.11 184/184] vsock/virtio: Initialization of the dangling pointer occurring in vsk->trans Greg Kroah-Hartman
2024-11-12 16:21 ` [PATCH 6.11 000/184] 6.11.8-rc1 review Luna Jernberg
2024-11-12 20:58 ` Pavel Machek
2024-11-12 23:12 ` Shuah Khan
2024-11-13 0:24 ` Ron Economos
2024-11-13 1:25 ` Florian Fainelli
2024-11-13 11:05 ` Naresh Kamboju
2024-11-13 13:28 ` Mark Brown
2024-11-13 19:42 ` Peter Schneider
2024-11-13 19:59 ` Jon Hunter
2024-11-14 10:52 ` [PATCH 6.11] " Hardik Garg
2024-11-14 11:45 ` [PATCH 6.11 000/184] " Christian Heusel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241112101903.931488072@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=mchehab+huawei@kernel.org \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).