From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Zhihao Cheng <chengzhihao1@huawei.com>,
Richard Weinberger <richard@nod.at>
Subject: [PATCH 4.9 151/218] ubifs: setflags: Make dirtied_ino_d 8 bytes aligned
Date: Mon, 18 Apr 2022 14:13:37 +0200 [thread overview]
Message-ID: <20220418121203.955120512@linuxfoundation.org> (raw)
In-Reply-To: <20220418121158.636999985@linuxfoundation.org>
From: Zhihao Cheng <chengzhihao1@huawei.com>
commit 1b83ec057db16b4d0697dc21ef7a9743b6041f72 upstream.
Make 'ui->data_len' aligned with 8 bytes before it is assigned to
dirtied_ino_d. Since 8871d84c8f8b0c6b("ubifs: convert to fileattr")
applied, 'setflags()' only affects regular files and directories, only
xattr inode, symlink inode and special inode(pipe/char_dev/block_dev)
have none- zero 'ui->data_len' field, so assertion
'!(req->dirtied_ino_d & 7)' cannot fail in ubifs_budget_space().
To avoid assertion fails in future evolution(eg. setflags can operate
special inodes), it's better to make dirtied_ino_d 8 bytes aligned,
after all aligned size is still zero for regular files.
Fixes: 1e51764a3c2ac05a ("UBIFS: add new flash file system")
Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
fs/ubifs/ioctl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/fs/ubifs/ioctl.c
+++ b/fs/ubifs/ioctl.c
@@ -105,7 +105,7 @@ static int setflags(struct inode *inode,
struct ubifs_inode *ui = ubifs_inode(inode);
struct ubifs_info *c = inode->i_sb->s_fs_info;
struct ubifs_budget_req req = { .dirtied_ino = 1,
- .dirtied_ino_d = ui->data_len };
+ .dirtied_ino_d = ALIGN(ui->data_len, 8) };
err = ubifs_budget_space(c, &req);
if (err)
next prev parent reply other threads:[~2022-04-18 14:08 UTC|newest]
Thread overview: 226+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-18 12:11 [PATCH 4.9 000/218] 4.9.311-rc1 review Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 001/218] USB: serial: pl2303: add IBM device IDs Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 002/218] USB: serial: simple: add Nokia phone driver Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 003/218] netdevice: add the case if dev is NULL Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 004/218] virtio_console: break out of buf poll on remove Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 005/218] ethernet: sun: Free the coherent when failing in probing Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 006/218] af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 007/218] block: Add a helper to validate the block size Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 008/218] virtio-blk: Use blk_validate_block_size() to validate " Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 009/218] USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 010/218] coresight: Fix TRCCONFIGR.QE sysfs interface Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 011/218] iio: inkern: apply consumer scale on IIO_VAL_INT cases Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 012/218] iio: inkern: make a best effort on offset calculation Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 013/218] clk: uniphier: Fix fixed-rate initialization Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 014/218] ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 015/218] SUNRPC: avoid race between mod_timer() and del_timer_sync() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 016/218] NFSD: prevent underflow in nfssvc_decode_writeargs() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 017/218] can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 018/218] jffs2: fix use-after-free in jffs2_clear_xattr_subsystem Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 019/218] jffs2: fix memory leak in jffs2_do_mount_fs Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 020/218] jffs2: fix memory leak in jffs2_scan_medium Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 021/218] mm/pages_alloc.c: dont create ZONE_MOVABLE beyond the end of a node Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 022/218] mempolicy: mbind_range() set_policy() after vma_merge() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 023/218] scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 024/218] Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 025/218] ALSA: cs4236: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 026/218] drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 027/218] video: fbdev: sm712fb: Fix crash in smtcfb_read() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 028/218] video: fbdev: atari: Atari 2 bpp (STe) palette bugfix Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 029/218] ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 030/218] ARM: dts: exynos: add missing HDMI supplies on SMDK5250 Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 031/218] ARM: dts: exynos: add missing HDMI supplies on SMDK5420 Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 032/218] carl9170: fix missing bit-wise or operator for tx_params Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 033/218] thermal: int340x: Increase bitmap size Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 034/218] lib/raid6/test: fix multiple definition linking error Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 035/218] DEC: Limit PMAX memory probing to R3k systems Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 036/218] media: davinci: vpif: fix unbalanced runtime PM get Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 037/218] brcmfmac: firmware: Allocate space for default boardrev in nvram Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 038/218] brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 039/218] PCI: pciehp: Clear cmd_busy bit in polling mode Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 040/218] crypto: authenc - Fix sleep in atomic context in decrypt_tail Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 041/218] crypto: mxs-dcp - Fix scatterlist processing Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 042/218] spi: tegra114: Add missing IRQ check in tegra_spi_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 043/218] selftests/x86: Add validity check and allow field splitting Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 044/218] hwmon: (pmbus) Add mutex to regulator ops Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 045/218] hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 046/218] PM: hibernate: fix __setup handler error handling Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 047/218] PM: suspend: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 048/218] crypto: vmx - add missing dependencies Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 049/218] crypto: ccp - ccp_dmaengine_unregister release dma channels Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 050/218] hwmon: (pmbus) Add Vin unit off handling Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 051/218] clocksource: acpi_pm: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 052/218] sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.9 053/218] perf/core: Fix address filter parser for multiple filters Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 054/218] perf/x86/intel/pt: Fix address filter config for 32-bit kernel Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 055/218] video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 056/218] video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 057/218] ARM: dts: qcom: ipq4019: fix sleep clock Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 058/218] soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 059/218] media: usb: go7007: s2250-board: fix leak in probe() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 060/218] ASoC: ti: davinci-i2s: Add check for clk_enable() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 061/218] ALSA: spi: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 062/218] arm64: dts: ns2: Fix spi-cpol and spi-cpha property Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 063/218] arm64: dts: broadcom: Fix sata nodename Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 064/218] printk: fix return value of printk.devkmsg __setup handler Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 065/218] ASoC: mxs-saif: Handle errors for clk_enable Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 066/218] ASoC: atmel_ssc_dai: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 067/218] memory: emif: Add check for setup_interrupts Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 068/218] memory: emif: check the pointer temp in get_device_details() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 069/218] ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 070/218] ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 071/218] ASoC: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 072/218] ASoC: fsi: Add check for clk_enable Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 073/218] video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 074/218] ASoC: dmaengine: do not use a NULL prepare_slave_config() callback Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 075/218] ASoC: mxs: Fix error handling in mxs_sgtl5000_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 076/218] ASoC: imx-es8328: Fix error return code in imx_es8328_probe() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 077/218] mtd: onenand: Check for error irq Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 078/218] drm/edid: Dont clear formats if using deep color Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 079/218] ath9k_htc: fix uninit value bugs Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 080/218] ray_cs: Check ioremap return value Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 081/218] power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 082/218] HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 083/218] iwlwifi: Fix -EIO error code that is never returned Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 084/218] scsi: pm8001: Fix command initialization in pm80XX_send_read_log() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 085/218] scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 086/218] scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 087/218] scsi: pm8001: Fix abort all task initialization Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 088/218] TOMOYO: fix __setup handlers return values Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 089/218] ext2: correct max file size computing Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 090/218] drm/tegra: Fix reference leak in tegra_dsi_ganged_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 091/218] KVM: x86: Fix emulation in writing cr8 Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 092/218] KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 093/218] i2c: xiic: Make bus names unique Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 094/218] power: supply: wm8350-power: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 095/218] power: supply: wm8350-power: Add missing free in free_charger_irq Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 096/218] powerpc/sysdev: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 097/218] mfd: mc13xxx: Add check for mc13xxx_irq_request Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 098/218] MIPS: RB532: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 099/218] USB: storage: ums-realtek: fix error code in rts51x_read_mem() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 100/218] af_netlink: Fix shift out of bounds in group mask calculation Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 101/218] i2c: mux: demux-pinctrl: do not deactivate a master that is not active Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 102/218] mfd: asic3: Add missing iounmap() on error asic3_mfd_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 103/218] mxser: fix xmit_buf leak in activate when LSR == 0xff Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 104/218] pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 105/218] iio: adc: Add check for devm_request_threaded_irq Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 106/218] clk: qcom: clk-rcg2: Update the frac table for pixel clock Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 107/218] remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 108/218] clk: loongson1: Terminate clk_div_table with sentinel element Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 109/218] clk: clps711x: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 110/218] clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 111/218] NFS: remove unneeded check in decode_devicenotify_args() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 112/218] pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.9 113/218] pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 114/218] pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 115/218] tty: hvc: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 116/218] kgdboc: " Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 117/218] kgdbts: " Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 118/218] jfs: fix divide error in dbNextAG Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 119/218] netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 120/218] net: phy: broadcom: Fix brcm_fet_config_init() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 121/218] qlcnic: dcb: default to returning -EOPNOTSUPP Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 122/218] net/x25: Fix null-ptr-deref caused by x25_disconnect Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 123/218] selinux: use correct type for context length Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 124/218] loop: use sysfs_emit() in the sysfs xxx show() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 125/218] Fix incorrect type in assignment of ipv6 port for audit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 126/218] irqchip/nvic: Release nvic_base upon failure Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 127/218] ACPICA: Avoid walking the ACPI Namespace if it is not there Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 128/218] ACPI/APEI: Limit printable size of BERT table data Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 129/218] PM: core: keep irq flags in device_pm_check_callbacks() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 130/218] spi: tegra20: Use of_device_get_match_data() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 131/218] ext4: dont BUG if someone dirty pages without asking ext4 first Greg Kroah-Hartman
2022-04-18 13:11 ` syzbot
2022-04-18 12:13 ` [PATCH 4.9 132/218] ntfs: add sanity check on allocation size Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 133/218] video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 134/218] video: fbdev: w100fb: Reset global state Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 135/218] video: fbdev: cirrusfb: check pixclock to avoid divide by zero Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 136/218] video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 137/218] ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 138/218] ARM: dts: bcm2837: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 139/218] video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 140/218] video: fbdev: omapfb: panel-tpo-td043mtea1: " Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 141/218] ASoC: soc-core: skip zero num_dai component in searching dai name Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 142/218] media: cx88-mpeg: clear interrupt status register before streaming video Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 143/218] ARM: tegra: tamonten: Fix I2C3 pad setting Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 144/218] ARM: mmp: Fix failure to remove sram device Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 145/218] video: fbdev: sm712fb: Fix crash in smtcfb_write() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 146/218] media: hdpvr: initialize dev->worker at hdpvr_register_videodev Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 147/218] mmc: host: Return an error when ->enable_sdio_irq() ops is missing Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 148/218] scsi: qla2xxx: Fix incorrect reporting of task management failure Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 149/218] KVM: Prevent module exit until all VMs are freed Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 150/218] ubifs: Add missing iput if do_tmpfile() failed in rename whiteout Greg Kroah-Hartman
2022-04-18 12:13 ` Greg Kroah-Hartman [this message]
2022-04-18 12:13 ` [PATCH 4.9 152/218] gfs2: Make sure FITRIM minlen is rounded up to fs block size Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 153/218] pinctrl: pinconf-generic: Print arguments for bias-pull-* Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 154/218] ACPI: CPPC: Avoid out of bounds access when parsing _CPC data Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 155/218] mm/mmap: return 1 from stack_guard_gap __setup() handler Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 156/218] mm/memcontrol: return 1 from cgroup.memory " Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 157/218] ubi: fastmap: Return error code if memory allocation fails in add_aeb() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 158/218] ASoC: topology: Allow TLV control to be either read or write Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 159/218] ARM: dts: spear1340: Update serial node properties Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 160/218] ARM: dts: spear13xx: Update SPI dma properties Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 161/218] openvswitch: Fixed nd target mask field in the flow dump Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 162/218] KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasnt activated Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 163/218] rtc: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 164/218] ARM: 9187/1: JIVE: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 165/218] KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 166/218] ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 167/218] ptp: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 168/218] powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 169/218] scsi: mvsas: Replace snprintf() with sysfs_emit() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 170/218] scsi: bfa: " Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 171/218] iommu/arm-smmu-v3: fix event handling soft lockup Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 172/218] dm ioctl: prevent potential spectre v1 gadget Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.9 173/218] scsi: pm8001: Fix pm8001_mpi_task_abort_resp() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 174/218] scsi: aha152x: Fix aha152x_setup() __setup handler return value Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 175/218] bnxt_en: Eliminate unintended link toggle during FW reset Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 176/218] MIPS: fix fortify panic when copying asm exception handlers Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 177/218] scsi: libfc: Fix use after free in fc_exch_abts_resp() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 178/218] usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 179/218] xtensa: fix DTC warning unit_address_format Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 180/218] Bluetooth: Fix use after free in hci_send_acl Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 181/218] init/main.c: return 1 from handled __setup() functions Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 182/218] w1: w1_therm: fixes w1_seq for ds28ea00 sensors Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 183/218] SUNRPC/call_alloc: async tasks mustnt block waiting for memory Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 184/218] serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 185/218] virtio_console: eliminate anonymous module_init & module_exit Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 186/218] jfs: prevent NULL deref in diFree Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 187/218] mm: fix race between MADV_FREE reclaim and blkdev direct IO read Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 188/218] scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 189/218] net: stmmac: Fix unset max_speed difference between DT and non-DT platforms Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 190/218] drm/imx: Fix memory leak in imx_pd_connector_get_modes Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 191/218] drbd: Fix five use after free bugs in get_initial_state Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 192/218] mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 193/218] mm/mempolicy: fix mpol_new leak in shared_policy_replace Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 194/218] x86/pm: Save the MSR validity status at context setup Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 195/218] x86/speculation: Restore speculation related MSRs during S3 resume Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 196/218] arm64: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 197/218] tools build: Use $(shell ) instead of `` to get embedded libperls ccopts Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 198/218] dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 199/218] mm: dont skip swap entry even if zap_details specified Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 200/218] arm64: module: remove (NOLOAD) from linker script Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 201/218] xfrm: policy: match with both mark and mask on user interfaces Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 202/218] veth: Ensure eth header is in skbs linear part Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 203/218] net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 204/218] nfc: nci: add flush_workqueue to prevent uaf Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 205/218] cifs: potential buffer overflow in handling symlinks Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 206/218] drm/amdkfd: Check for potential null return of kmalloc_array() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 207/218] scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 208/218] net: micrel: fix KS8851_MLL Kconfig Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 209/218] gpu: ipu-v3: Fix dev_dbg frequency output Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 210/218] scsi: mvsas: Add PCI ID of RocketRaid 2640 Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 211/218] drivers: net: slip: fix NPD bug in sl_tx_timeout() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 212/218] mm, page_alloc: fix build_zonerefs_node() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 213/218] mm: kmemleak: take a full lowmem check in kmemleak_*_phys() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 214/218] ALSA: pcm: Test for "silence" field in struct "pcm_format_data" Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 215/218] ARM: davinci: da850-evm: Avoid NULL pointer dereference Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 216/218] smp: Fix offline cpu check in flush_smp_call_function_queue() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 217/218] i2c: pasemi: Wait for write xfers to finish Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.9 218/218] gcc-plugins: latent_entropy: use /dev/urandom Greg Kroah-Hartman
2022-04-18 17:22 ` [PATCH 4.9 000/218] 4.9.311-rc1 review Florian Fainelli
2022-04-18 18:12 ` Pavel Machek
2022-04-19 0:04 ` Guenter Roeck
2022-04-19 0:10 ` Shuah Khan
2022-04-19 10:09 ` Naresh Kamboju
2022-04-19 10:13 ` Jon Hunter
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=20220418121203.955120512@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=chengzhihao1@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=richard@nod.at \
--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