From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Alexander Potapenko <glider@google.com>,
Alexander Viro <viro@zeniv.linux.org.uk>,
Alexei Starovoitov <ast@kernel.org>,
Andrey Konovalov <andreyknvl@gmail.com>,
Andrey Konovalov <andreyknvl@google.com>,
Andy Lutomirski <luto@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
Borislav Petkov <bp@alien8.de>, Christoph Hellwig <hch@lst.de>,
Christoph Lameter <cl@linux.com>,
David Rientjes <rientjes@google.com>,
Dmitry Vyukov <dvyukov@google.com>,
Eric Biggers <ebiggers@google.com>,
Eric Biggers <ebiggers@kernel.org>,
Eric Dumazet <edumazet@google.com>,
Herbert Xu <herbert@gondor.apana.org.au>,
Ilya Leoshkevich <iii@linux.ibm.com>,
Ingo Molnar <mingo@redhat.com>, Jens Axboe <axboe@kernel.dk>,
Joonsoo Kim <iamjoonsoo.kim@lge.com>,
Kees Cook <keescook@chromium.org>, Marco Elver <elver@google.com>,
Mark Rutland <mark.rutland@arm.com>,
Matthew Wilcox <willy@infradead.org>,
"Michael S. Tsirkin" <mst@redhat.com>,
Pekka Enberg <penberg@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Petr Mladek <pmladek@suse.com>,
Stephen Rothwell <sfr@canb.auug.org.au>,
Steven Rostedt <rostedt@goodmis.org>,
Thomas Gleixner <tglx@linutronix.de>,
Vasily Gorbik <gor@linux.ibm.com>,
Vegard Nossum <vegard.nossum@oracle.com>,
Vlastimil Babka <vbabka@suse.cz>,
Andrew Morton <akpm@linux-foundation.org>
Subject: [PATCH 5.10 146/149] mm: fs: initialize fsdata passed to write_begin/write_end interface
Date: Wed, 23 Nov 2022 09:52:09 +0100 [thread overview]
Message-ID: <20221123084603.152869428@linuxfoundation.org> (raw)
In-Reply-To: <20221123084557.945845710@linuxfoundation.org>
From: Alexander Potapenko <glider@google.com>
commit 1468c6f4558b1bcd92aa0400f2920f9dc7588402 upstream.
Functions implementing the a_ops->write_end() interface accept the `void
*fsdata` parameter that is supposed to be initialized by the corresponding
a_ops->write_begin() (which accepts `void **fsdata`).
However not all a_ops->write_begin() implementations initialize `fsdata`
unconditionally, so it may get passed uninitialized to a_ops->write_end(),
resulting in undefined behavior.
Fix this by initializing fsdata with NULL before the call to
write_begin(), rather than doing so in all possible a_ops implementations.
This patch covers only the following cases found by running x86 KMSAN
under syzkaller:
- generic_perform_write()
- cont_expand_zero() and generic_cont_expand_simple()
- page_symlink()
Other cases of passing uninitialized fsdata may persist in the codebase.
Link: https://lkml.kernel.org/r/20220915150417.722975-43-glider@google.com
Signed-off-by: Alexander Potapenko <glider@google.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Andrey Konovalov <andreyknvl@gmail.com>
Cc: Andrey Konovalov <andreyknvl@google.com>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Christoph Lameter <cl@linux.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Eric Biggers <ebiggers@google.com>
Cc: Eric Biggers <ebiggers@kernel.org>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Ilya Leoshkevich <iii@linux.ibm.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Marco Elver <elver@google.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Petr Mladek <pmladek@suse.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Vasily Gorbik <gor@linux.ibm.com>
Cc: Vegard Nossum <vegard.nossum@oracle.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
fs/buffer.c | 4 ++--
fs/namei.c | 2 +-
mm/filemap.c | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
--- a/fs/buffer.c
+++ b/fs/buffer.c
@@ -2350,7 +2350,7 @@ int generic_cont_expand_simple(struct in
{
struct address_space *mapping = inode->i_mapping;
struct page *page;
- void *fsdata;
+ void *fsdata = NULL;
int err;
err = inode_newsize_ok(inode, size);
@@ -2376,7 +2376,7 @@ static int cont_expand_zero(struct file
struct inode *inode = mapping->host;
unsigned int blocksize = i_blocksize(inode);
struct page *page;
- void *fsdata;
+ void *fsdata = NULL;
pgoff_t index, curidx;
loff_t curpos;
unsigned zerofrom, offset, len;
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -4633,7 +4633,7 @@ int __page_symlink(struct inode *inode,
{
struct address_space *mapping = inode->i_mapping;
struct page *page;
- void *fsdata;
+ void *fsdata = NULL;
int err;
unsigned int flags = 0;
if (nofs)
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -3303,7 +3303,7 @@ ssize_t generic_perform_write(struct fil
unsigned long offset; /* Offset into pagecache page */
unsigned long bytes; /* Bytes to write to page */
size_t copied; /* Bytes copied from user */
- void *fsdata;
+ void *fsdata = NULL;
offset = (pos & (PAGE_SIZE - 1));
bytes = min_t(unsigned long, PAGE_SIZE - offset,
next prev parent reply other threads:[~2022-11-23 9:29 UTC|newest]
Thread overview: 168+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-23 8:49 [PATCH 5.10 000/149] 5.10.156-rc1 review Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 001/149] ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe" Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 002/149] ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe" Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 003/149] ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe" Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 004/149] ASoC: mt6660: Keep the pm_runtime enables before component stuff in mt6660_i2c_probe Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 005/149] ASoC: wm8962: Add an event handler for TEMP_HP and TEMP_SPK Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 006/149] spi: intel: Fix the offset to get the 64K erase opcode Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 007/149] ASoC: codecs: jz4725b: add missed Line In power control bit Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 008/149] ASoC: codecs: jz4725b: fix reported volume for Master ctl Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 009/149] ASoC: codecs: jz4725b: use right control for Capture Volume Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 010/149] ASoC: codecs: jz4725b: fix capture selector naming Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 011/149] ASoC: Intel: sof_sdw: add quirk variant for LAPBC710 NUC15 Greg Kroah-Hartman
2022-11-24 13:47 ` Salvatore Bonaccorso
2022-11-25 7:29 ` Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 012/149] selftests/futex: fix build for clang Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 013/149] selftests/intel_pstate: fix build for ARCH=x86_64 Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 014/149] rtc: cmos: fix build on non-ACPI platforms Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 015/149] ASoC: rt1308-sdw: add the default value of some registers Greg Kroah-Hartman
2022-11-23 8:49 ` [PATCH 5.10 016/149] drm/amd/display: Remove wrong pipe control lock Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 017/149] NFSv4: Retry LOCK on OLD_STATEID during delegation return Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 018/149] i2c: tegra: Allocate DMA memory for DMA engine Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 019/149] i2c: i801: add lis3lv02ds I2C address for Vostro 5568 Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 020/149] drm/imx: imx-tve: Fix return type of imx_tve_connector_mode_valid Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 021/149] btrfs: remove pointless and double ulist frees in error paths of qgroup tests Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 022/149] Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 023/149] ASoC: codecs: jz4725b: Fix spelling mistake "Sourc" -> "Source", "Routee" -> "Route" Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 024/149] ALSA: hda/realtek: fix speakers and micmute on HP 855 G8 Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 025/149] mtd: spi-nor: intel-spi: Disable write protection only if asked Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 026/149] spi: intel: Use correct mask for flash and protected regions Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 027/149] mmc: sdhci-esdhc-imx: use the correct host caps for MMC_CAP_8_BIT_DATA Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 028/149] drm/amd/pm: support power source switch on Sienna Cichlid Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 029/149] drm/amd/pm: Read BIF STRAP also for BACO check Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 030/149] drm/amd/pm: disable BACO entry/exit completely on several sienna cichlid cards Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 031/149] drm/amdgpu: disable BACO on special BEIGE_GOBY card Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 032/149] spi: stm32: Print summary callbacks suppressed message Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 033/149] ASoC: core: Fix use-after-free in snd_soc_exit() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 034/149] ASoC: tas2770: Fix set_tdm_slot in case of single slot Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 035/149] ASoC: tas2764: " Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 036/149] serial: 8250: Remove serial_rs485 sanitization from em485 Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 037/149] serial: 8250: omap: Fix missing PM runtime calls for omap8250_set_mctrl() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 038/149] serial: 8250_omap: remove wait loop from Errata i202 workaround Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 039/149] serial: 8250: omap: Fix unpaired pm_runtime_put_sync() in omap8250_remove() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 040/149] serial: 8250: omap: Flush PM QOS work on remove Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 041/149] serial: imx: Add missing .thaw_noirq hook Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 042/149] tty: n_gsm: fix sleep-in-atomic-context bug in gsm_control_send Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 043/149] bpf, test_run: Fix alignment problem in bpf_prog_test_run_skb() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 044/149] ASoC: soc-utils: Remove __exit for snd_soc_util_exit() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 045/149] sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 046/149] sctp: clear out_curr if all frag chunks of current msg are pruned Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 047/149] block: sed-opal: kmalloc the cmd/resp buffers Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 048/149] arm64: Fix bit-shifting UB in the MIDR_CPU_MODEL() macro Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 049/149] siox: fix possible memory leak in siox_device_add() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 050/149] parport_pc: Avoid FIFO port location truncation Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 051/149] pinctrl: devicetree: fix null pointer dereferencing in pinctrl_dt_to_map Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 052/149] drm/panel: simple: set bpc field for logic technologies displays Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 053/149] drm/drv: Fix potential memory leak in drm_dev_init() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 054/149] drm: Fix potential null-ptr-deref in drm_vblank_destroy_worker() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 055/149] ARM: dts: imx7: Fix NAND controller size-cells Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 056/149] arm64: dts: imx8mm: " Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 057/149] arm64: dts: imx8mn: " Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 058/149] ata: libata-transport: fix double ata_host_put() in ata_tport_add() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 059/149] ata: libata-transport: fix error handling " Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 060/149] ata: libata-transport: fix error handling in ata_tlink_add() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 061/149] ata: libata-transport: fix error handling in ata_tdev_add() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 062/149] bpf: Initialize same number of free nodes for each pcpu_freelist Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 063/149] net: bgmac: Drop free_netdev() from bgmac_enet_remove() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 064/149] mISDN: fix possible memory leak in mISDN_dsp_element_register() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 065/149] net: hinic: Fix error handling in hinic_module_init() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 066/149] net: liquidio: release resources when liquidio driver open failed Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 067/149] mISDN: fix misuse of put_device() in mISDN_register_device() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 068/149] net: macvlan: Use built-in RCU list checking Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 069/149] net: caif: fix double disconnect client in chnl_net_open() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 070/149] bnxt_en: Remove debugfs when pci_register_driver failed Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 071/149] xen/pcpu: fix possible memory leak in register_pcpu() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 072/149] net: ionic: Fix error handling in ionic_init_module() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 073/149] net: ena: Fix error handling in ena_init() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 074/149] drbd: use after free in drbd_create_device() Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 075/149] platform/x86/intel: pmc: Dont unconditionally attach Intel PMC when virtualized Greg Kroah-Hartman
2022-11-23 8:50 ` [PATCH 5.10 076/149] cifs: add check for returning value of SMB2_close_init Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 077/149] net: ag71xx: call phylink_disconnect_phy if ag71xx_hw_enable() fail in ag71xx_open() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 078/149] net/x25: Fix skb leak in x25_lapb_receive_frame() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 079/149] cifs: Fix wrong return value checking when GETFLAGS Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 080/149] net: thunderbolt: Fix error handling in tbnet_init() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 081/149] cifs: add check for returning value of SMB2_set_info_init Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 082/149] ftrace: Fix the possible incorrect kernel message Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 083/149] ftrace: Optimize the allocation for mcount entries Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 084/149] ftrace: Fix null pointer dereference in ftrace_add_mod() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 085/149] ring_buffer: Do not deactivate non-existant pages Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 086/149] tracing/ring-buffer: Have polling block on watermark Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 087/149] tracing: Fix memory leak in test_gen_synth_cmd() and test_empty_synth_event() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 088/149] tracing: Fix wild-memory-access in register_synth_event() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 089/149] tracing: kprobe: Fix potential null-ptr-deref on trace_event_file in kprobe_event_gen_test_exit() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 090/149] tracing: kprobe: Fix potential null-ptr-deref on trace_array " Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 091/149] ALSA: usb-audio: Drop snd_BUG_ON() from snd_usbmidi_output_open() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 092/149] ALSA: hda/realtek: fix speakers for Samsung Galaxy Book Pro Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 093/149] ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book Pro 360 Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 094/149] Revert "usb: dwc3: disable USB core PHY management" Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 095/149] slimbus: stream: correct presence rate frequencies Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 096/149] speakup: fix a segfault caused by switching consoles Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 097/149] USB: bcma: Make GPIO explicitly optional Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 098/149] USB: serial: option: add Sierra Wireless EM9191 Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 099/149] USB: serial: option: remove old LARA-R6 PID Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 100/149] USB: serial: option: add u-blox LARA-R6 00B modem Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 101/149] USB: serial: option: add u-blox LARA-L6 modem Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 102/149] USB: serial: option: add Fibocom FM160 0x0111 composition Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 103/149] usb: add NO_LPM quirk for Realforce 87U Keyboard Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 104/149] usb: chipidea: fix deadlock in ci_otg_del_timer Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 105/149] usb: typec: mux: Enter safe mode only when pins need to be reconfigured Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 106/149] iio: adc: at91_adc: fix possible memory leak in at91_adc_allocate_trigger() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 107/149] iio: trigger: sysfs: fix possible memory leak in iio_sysfs_trig_init() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 108/149] iio: adc: mp2629: fix wrong comparison of channel Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 109/149] iio: adc: mp2629: fix potential array out of bound access Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 110/149] iio: pressure: ms5611: changed hardcoded SPI speed to value limited Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 111/149] dm ioctl: fix misbehavior if list_versions races with module loading Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 112/149] serial: 8250: Fall back to non-DMA Rx if IIR_RDI occurs Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 113/149] serial: 8250: Flush DMA Rx on RLSI Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 114/149] serial: 8250_lpss: Configure DMA also w/o DMA filter Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 115/149] Input: iforce - invert valid length check when fetching device IDs Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 116/149] maccess: Fix writing offset in case of fault in strncpy_from_kernel_nofault() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 117/149] scsi: zfcp: Fix double free of FSF request when qdio send fails Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 118/149] iommu/vt-d: Set SRE bit only when hardware has SRS cap Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 119/149] firmware: coreboot: Register bus in module init Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 120/149] mmc: core: properly select voltage range without power cycle Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 121/149] mmc: sdhci-pci-o2micro: fix card detect fail issue caused by CD# debounce timeout Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 122/149] mmc: sdhci-pci: Fix possible memory leak caused by missing pci_dev_put() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 123/149] docs: update mediator contact information in CoC doc Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 124/149] misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 125/149] perf/x86/intel/pt: Fix sampling using single range output Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 126/149] nvme: restrict management ioctls to admin Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 127/149] nvme: ensure subsystem reset is single threaded Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 128/149] net: fix a concurrency bug in l2tp_tunnel_register() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 129/149] ring-buffer: Include dropped pages in counting dirty patches Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 130/149] usbnet: smsc95xx: Fix deadlock on runtime resume Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 131/149] stddef: Introduce struct_group() helper macro Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 132/149] net: use struct_group to copy ip/ipv6 header addresses Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 133/149] scsi: target: tcm_loop: Fix possible name leak in tcm_loop_setup_hba_bus() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 134/149] scsi: scsi_debug: Fix possible UAF in sdebug_add_host_helper() Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 135/149] kprobes: Skip clearing aggrprobes post_handler in kprobe-on-ftrace case Greg Kroah-Hartman
2022-11-23 8:51 ` [PATCH 5.10 136/149] Input: i8042 - fix leaking of platform device on module removal Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 137/149] uapi/linux/stddef.h: Add include guards Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 138/149] macvlan: enforce a consistent minimal mtu Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 139/149] tcp: cdg: allow tcp_cdg_release() to be called multiple times Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 140/149] kcm: avoid potential race in kcm_tx_work Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 141/149] kcm: close race conditions on sk_receive_queue Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 142/149] 9p: trans_fd/p9_conn_cancel: drop client lock earlier Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 143/149] gfs2: Check sb_bsize_shift after reading superblock Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 144/149] gfs2: Switch from strlcpy to strscpy Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 145/149] 9p/trans_fd: always use O_NONBLOCK read/write Greg Kroah-Hartman
2022-11-23 8:52 ` Greg Kroah-Hartman [this message]
2022-11-23 8:52 ` [PATCH 5.10 147/149] ntfs: fix use-after-free in ntfs_attr_find() Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 148/149] ntfs: fix out-of-bounds read " Greg Kroah-Hartman
2022-11-23 8:52 ` [PATCH 5.10 149/149] ntfs: check overflow when iterating ATTR_RECORDs Greg Kroah-Hartman
2022-11-23 11:11 ` [PATCH 5.10 000/149] 5.10.156-rc1 review Rudi Heitbaum
2022-11-23 11:16 ` Pavel Machek
2022-11-23 14:00 ` Naresh Kamboju
2022-11-24 15:47 ` Naresh Kamboju
2022-11-25 7:27 ` Greg Kroah-Hartman
2022-11-25 8:05 ` Naresh Kamboju
2022-11-25 9:42 ` YueHaibing
2022-11-25 10:02 ` Arnd Bergmann
2022-11-25 10:25 ` YueHaibing
2022-11-25 10:32 ` Arnd Bergmann
2022-11-25 10:43 ` YueHaibing
2022-11-25 14:54 ` Greg Kroah-Hartman
2022-11-24 2:37 ` Guenter Roeck
2022-11-24 10:46 ` Sudip Mukherjee
2022-11-26 2:39 ` zhouzhixiu
2022-11-28 22:37 ` Florian Fainelli
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=20221123084603.152869428@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=andreyknvl@gmail.com \
--cc=andreyknvl@google.com \
--cc=arnd@arndb.de \
--cc=ast@kernel.org \
--cc=axboe@kernel.dk \
--cc=bp@alien8.de \
--cc=cl@linux.com \
--cc=dvyukov@google.com \
--cc=ebiggers@google.com \
--cc=ebiggers@kernel.org \
--cc=edumazet@google.com \
--cc=elver@google.com \
--cc=glider@google.com \
--cc=gor@linux.ibm.com \
--cc=hch@lst.de \
--cc=herbert@gondor.apana.org.au \
--cc=iamjoonsoo.kim@lge.com \
--cc=iii@linux.ibm.com \
--cc=keescook@chromium.org \
--cc=luto@kernel.org \
--cc=mark.rutland@arm.com \
--cc=mingo@redhat.com \
--cc=mst@redhat.com \
--cc=patches@lists.linux.dev \
--cc=penberg@kernel.org \
--cc=peterz@infradead.org \
--cc=pmladek@suse.com \
--cc=rientjes@google.com \
--cc=rostedt@goodmis.org \
--cc=sfr@canb.auug.org.au \
--cc=stable@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=vbabka@suse.cz \
--cc=vegard.nossum@oracle.com \
--cc=viro@zeniv.linux.org.uk \
--cc=willy@infradead.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