stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, "Pali Rohár" <pali@kernel.org>,
	"Jan Kara" <jack@suse.cz>, "Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 5.10 016/236] isofs: joliet: Fix iocharset=utf8 mount option
Date: Mon, 13 Sep 2021 15:12:01 +0200	[thread overview]
Message-ID: <20210913131100.882630929@linuxfoundation.org> (raw)
In-Reply-To: <20210913131100.316353015@linuxfoundation.org>

From: Pali Rohár <pali@kernel.org>

[ Upstream commit 28ce50f8d96ec9035f60c9348294ea26b94db944 ]

Currently iocharset=utf8 mount option is broken. To use UTF-8 as iocharset,
it is required to use utf8 mount option.

Fix iocharset=utf8 mount option to use be equivalent to the utf8 mount
option.

If UTF-8 as iocharset is used then s_nls_iocharset is set to NULL. So
simplify code around, remove s_utf8 field as to distinguish between UTF-8
and non-UTF-8 it is needed just to check if s_nls_iocharset is set to NULL
or not.

Link: https://lore.kernel.org/r/20210808162453.1653-5-pali@kernel.org
Signed-off-by: Pali Rohár <pali@kernel.org>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/isofs/inode.c  | 27 +++++++++++++--------------
 fs/isofs/isofs.h  |  1 -
 fs/isofs/joliet.c |  4 +---
 3 files changed, 14 insertions(+), 18 deletions(-)

diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c
index ec90773527ee..35675a1065be 100644
--- a/fs/isofs/inode.c
+++ b/fs/isofs/inode.c
@@ -155,7 +155,6 @@ struct iso9660_options{
 	unsigned int overriderockperm:1;
 	unsigned int uid_set:1;
 	unsigned int gid_set:1;
-	unsigned int utf8:1;
 	unsigned char map;
 	unsigned char check;
 	unsigned int blocksize;
@@ -355,7 +354,6 @@ static int parse_options(char *options, struct iso9660_options *popt)
 	popt->gid = GLOBAL_ROOT_GID;
 	popt->uid = GLOBAL_ROOT_UID;
 	popt->iocharset = NULL;
-	popt->utf8 = 0;
 	popt->overriderockperm = 0;
 	popt->session=-1;
 	popt->sbsector=-1;
@@ -388,10 +386,13 @@ static int parse_options(char *options, struct iso9660_options *popt)
 		case Opt_cruft:
 			popt->cruft = 1;
 			break;
+#ifdef CONFIG_JOLIET
 		case Opt_utf8:
-			popt->utf8 = 1;
+			kfree(popt->iocharset);
+			popt->iocharset = kstrdup("utf8", GFP_KERNEL);
+			if (!popt->iocharset)
+				return 0;
 			break;
-#ifdef CONFIG_JOLIET
 		case Opt_iocharset:
 			kfree(popt->iocharset);
 			popt->iocharset = match_strdup(&args[0]);
@@ -494,7 +495,6 @@ static int isofs_show_options(struct seq_file *m, struct dentry *root)
 	if (sbi->s_nocompress)		seq_puts(m, ",nocompress");
 	if (sbi->s_overriderockperm)	seq_puts(m, ",overriderockperm");
 	if (sbi->s_showassoc)		seq_puts(m, ",showassoc");
-	if (sbi->s_utf8)		seq_puts(m, ",utf8");
 
 	if (sbi->s_check)		seq_printf(m, ",check=%c", sbi->s_check);
 	if (sbi->s_mapping)		seq_printf(m, ",map=%c", sbi->s_mapping);
@@ -517,9 +517,10 @@ static int isofs_show_options(struct seq_file *m, struct dentry *root)
 		seq_printf(m, ",fmode=%o", sbi->s_fmode);
 
 #ifdef CONFIG_JOLIET
-	if (sbi->s_nls_iocharset &&
-	    strcmp(sbi->s_nls_iocharset->charset, CONFIG_NLS_DEFAULT) != 0)
+	if (sbi->s_nls_iocharset)
 		seq_printf(m, ",iocharset=%s", sbi->s_nls_iocharset->charset);
+	else
+		seq_puts(m, ",iocharset=utf8");
 #endif
 	return 0;
 }
@@ -862,14 +863,13 @@ root_found:
 	sbi->s_nls_iocharset = NULL;
 
 #ifdef CONFIG_JOLIET
-	if (joliet_level && opt.utf8 == 0) {
+	if (joliet_level) {
 		char *p = opt.iocharset ? opt.iocharset : CONFIG_NLS_DEFAULT;
-		sbi->s_nls_iocharset = load_nls(p);
-		if (! sbi->s_nls_iocharset) {
-			/* Fail only if explicit charset specified */
-			if (opt.iocharset)
+		if (strcmp(p, "utf8") != 0) {
+			sbi->s_nls_iocharset = opt.iocharset ?
+				load_nls(opt.iocharset) : load_nls_default();
+			if (!sbi->s_nls_iocharset)
 				goto out_freesbi;
-			sbi->s_nls_iocharset = load_nls_default();
 		}
 	}
 #endif
@@ -885,7 +885,6 @@ root_found:
 	sbi->s_gid = opt.gid;
 	sbi->s_uid_set = opt.uid_set;
 	sbi->s_gid_set = opt.gid_set;
-	sbi->s_utf8 = opt.utf8;
 	sbi->s_nocompress = opt.nocompress;
 	sbi->s_overriderockperm = opt.overriderockperm;
 	/*
diff --git a/fs/isofs/isofs.h b/fs/isofs/isofs.h
index 055ec6c586f7..dcdc191ed183 100644
--- a/fs/isofs/isofs.h
+++ b/fs/isofs/isofs.h
@@ -44,7 +44,6 @@ struct isofs_sb_info {
 	unsigned char s_session;
 	unsigned int  s_high_sierra:1;
 	unsigned int  s_rock:2;
-	unsigned int  s_utf8:1;
 	unsigned int  s_cruft:1; /* Broken disks with high byte of length
 				  * containing junk */
 	unsigned int  s_nocompress:1;
diff --git a/fs/isofs/joliet.c b/fs/isofs/joliet.c
index be8b6a9d0b92..c0f04a1e7f69 100644
--- a/fs/isofs/joliet.c
+++ b/fs/isofs/joliet.c
@@ -41,14 +41,12 @@ uni16_to_x8(unsigned char *ascii, __be16 *uni, int len, struct nls_table *nls)
 int
 get_joliet_filename(struct iso_directory_record * de, unsigned char *outname, struct inode * inode)
 {
-	unsigned char utf8;
 	struct nls_table *nls;
 	unsigned char len = 0;
 
-	utf8 = ISOFS_SB(inode->i_sb)->s_utf8;
 	nls = ISOFS_SB(inode->i_sb)->s_nls_iocharset;
 
-	if (utf8) {
+	if (!nls) {
 		len = utf16s_to_utf8s((const wchar_t *) de->name,
 				de->name_len[0] >> 1, UTF16_BIG_ENDIAN,
 				outname, PAGE_SIZE);
-- 
2.30.2




  parent reply	other threads:[~2021-09-13 13:29 UTC|newest]

Thread overview: 250+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-13 13:11 [PATCH 5.10 000/236] 5.10.65-rc1 review Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 001/236] locking/mutex: Fix HANDOFF condition Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 002/236] regmap: fix the offset of register error log Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 003/236] regulator: tps65910: Silence deferred probe error Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 004/236] crypto: mxs-dcp - Check for DMA mapping errors Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 005/236] sched/deadline: Fix reset_on_fork reporting of DL tasks Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 006/236] power: supply: axp288_fuel_gauge: Report register-address on readb / writeb errors Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 007/236] crypto: omap-sham - clear dma flags only after omap_sham_update_dma_stop() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 008/236] sched/deadline: Fix missing clock update in migrate_task_rq_dl() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 009/236] rcu/tree: Handle VM stoppage in stall detection Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 010/236] EDAC/mce_amd: Do not load edac_mce_amd module on guests Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 011/236] posix-cpu-timers: Force next expiration recalc after itimer reset Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 012/236] hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 013/236] hrtimer: Ensure timerfd notification for HIGHRES=n Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.10 014/236] udf: Check LVID earlier Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 015/236] udf: Fix iocharset=utf8 mount option Greg Kroah-Hartman
2021-09-13 13:12 ` Greg Kroah-Hartman [this message]
2021-09-13 13:12 ` [PATCH 5.10 017/236] bcache: add proper error unwinding in bcache_device_init Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 018/236] blk-throtl: optimize IOPS throttle for large IO scenarios Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 019/236] nvme-tcp: dont update queue count when failing to set io queues Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 020/236] nvme-rdma: " Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 021/236] nvmet: pass back cntlid on successful completion Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 022/236] power: supply: smb347-charger: Add missing pin control activation Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 023/236] power: supply: max17042_battery: fix typo in MAx17042_TOFF Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 024/236] s390/cio: add dev_busid sysfs entry for each subchannel Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 025/236] s390/zcrypt: fix wrong offset index for APKA master key valid state Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 026/236] libata: fix ata_host_start() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 027/236] crypto: omap - Fix inconsistent locking of device lists Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 028/236] crypto: qat - do not ignore errors from enable_vf2pf_comms() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 029/236] crypto: qat - handle both source of interrupt in VF ISR Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 030/236] crypto: qat - fix reuse of completion variable Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 031/236] crypto: qat - fix naming for init/shutdown VF to PF notifications Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 032/236] crypto: qat - do not export adf_iov_putmsg() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 033/236] fcntl: fix potential deadlock for &fasync_struct.fa_lock Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 034/236] udf_get_extendedattr() had no boundary checks Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 035/236] s390/kasan: fix large PMD pages address alignment check Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 036/236] s390/pci: fix misleading rc in clp_set_pci_fn() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 037/236] s390/debug: keep debug data on resize Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 038/236] s390/debug: fix debug area life cycle Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 039/236] s390/ap: fix state machine hang after failure to enable irq Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 040/236] power: supply: cw2015: use dev_err_probe to allow deferred probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 041/236] m68k: emu: Fix invalid free in nfeth_cleanup() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 042/236] sched/numa: Fix is_core_idle() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 043/236] sched: Fix UCLAMP_FLAG_IDLE setting Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 044/236] rcu: Fix to include first blocked task in stall warning Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 045/236] rcu: Add lockdep_assert_irqs_disabled() to rcu_sched_clock_irq() and callees Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 046/236] rcu: Fix stall-warning deadlock due to non-release of rcu_node ->lock Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 047/236] m68k: Fix invalid RMW_INSNS on CPUs that lack CAS Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 048/236] block: return ELEVATOR_DISCARD_MERGE if possible Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 049/236] spi: spi-fsl-dspi: Fix issue with uninitialized dma_slave_config Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 050/236] spi: spi-pic32: " Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 051/236] genirq/timings: Fix error return code in irq_timings_test_irqs() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 052/236] irqchip/loongson-pch-pic: Improve edge triggered interrupt support Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 053/236] lib/mpi: use kcalloc in mpi_resize Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 054/236] clocksource/drivers/sh_cmt: Fix wrong setting if dont request IRQ for clock source channel Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 055/236] block: nbd: add sanity check for first_minor Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 056/236] spi: coldfire-qspi: Use clk_disable_unprepare in the remove function Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 057/236] irqchip/gic-v3: Fix priority comparison when non-secure priorities are used Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 058/236] crypto: qat - use proper type for vf_mask Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 059/236] certs: Trigger creation of RSA module signing key if its not an RSA key Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 060/236] tpm: ibmvtpm: Avoid error message when process gets signal while waiting Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 061/236] x86/mce: Defer processing of early errors Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 062/236] spi: davinci: invoke chipselect callback Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 063/236] blk-crypto: fix check for too-large dun_bytes Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 064/236] regulator: vctrl: Use locked regulator_get_voltage in probe path Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 065/236] regulator: vctrl: Avoid lockdep warning in enable/disable ops Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 066/236] spi: sprd: Fix the wrong WDG_LOAD_VAL Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 067/236] spi: spi-zynq-qspi: use wait_for_completion_timeout to make zynq_qspi_exec_mem_op not interruptible Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 068/236] EDAC/i10nm: Fix NVDIMM detection Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 069/236] drm/panfrost: Fix missing clk_disable_unprepare() on error in panfrost_clk_init() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 070/236] drm/gma500: Fix end of loop tests for list_for_each_entry Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 071/236] ASoC: mediatek: mt8183: Fix Unbalanced pm_runtime_enable in mt8183_afe_pcm_dev_probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 072/236] media: TDA1997x: enable EDID support Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 073/236] leds: is31fl32xx: Fix missing error code in is31fl32xx_parse_dt() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.10 074/236] soc: rockchip: ROCKCHIP_GRF should not default to y, unconditionally Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 075/236] media: cxd2880-spi: Fix an error handling path Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 076/236] drm/of: free the right object Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 077/236] bpf: Fix a typo of reuseport map in bpf.h Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 078/236] bpf: Fix potential memleak and UAF in the verifier Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 079/236] drm/of: free the iterator object on failure Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 080/236] gve: fix the wrong AdminQ buffer overflow check Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 081/236] libbpf: Fix the possible memory leak on error Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 082/236] ARM: dts: aspeed-g6: Fix HVI3C function-group in pinctrl dtsi Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 083/236] arm64: dts: renesas: r8a77995: draak: Remove bogus adv7511w properties Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 084/236] i40e: improve locking of mac_filter_hash Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 085/236] soc: qcom: rpmhpd: Use corner in power_off Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 086/236] libbpf: Fix removal of inner map in bpf_object__create_map Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 087/236] gfs2: Fix memory leak of object lsi on error return path Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 088/236] firmware: fix theoretical UAF race with firmware cache and resume Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 089/236] driver core: Fix error return code in really_probe() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 090/236] ionic: cleanly release devlink instance Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 091/236] media: dvb-usb: fix uninit-value in dvb_usb_adapter_dvb_init Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 092/236] media: dvb-usb: fix uninit-value in vp702x_read_mac_addr Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 093/236] media: dvb-usb: Fix error handling in dvb_usb_i2c_init Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 094/236] media: go7007: fix memory leak in go7007_usb_probe Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 095/236] media: go7007: remove redundant initialization Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 096/236] media: rockchip/rga: use pm_runtime_resume_and_get() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 097/236] media: rockchip/rga: fix error handling in probe Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 098/236] media: coda: fix frame_mem_ctrl for YUV420 and YVU420 formats Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 099/236] media: atomisp: fix the uninitialized use and rename "retvalue" Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 100/236] Bluetooth: sco: prevent information leak in sco_conn_defer_accept() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 101/236] 6lowpan: iphc: Fix an off-by-one check of array index Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 102/236] drm/amdgpu/acp: Make PM domain really work Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 103/236] tcp: seq_file: Avoid skipping sk during tcp_seek_last_pos Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 104/236] ARM: dts: meson8: Use a higher default GPU clock frequency Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 105/236] ARM: dts: meson8b: odroidc1: Fix the pwm regulator supply properties Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 106/236] ARM: dts: meson8b: mxq: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 107/236] ARM: dts: meson8b: ec100: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 108/236] net/mlx5e: Prohibit inner indir TIRs in IPoIB Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 109/236] net/mlx5e: Block LRO if firmware asks for tunneled LRO Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 110/236] cgroup/cpuset: Fix a partition bug with hotplug Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 111/236] drm: mxsfb: Enable recovery on underflow Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 112/236] drm: mxsfb: Increase number of outstanding requests on V4 and newer HW Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 113/236] drm: mxsfb: Clear FIFO_CLEAR bit Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 114/236] net: cipso: fix warnings in netlbl_cipsov4_add_std Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 115/236] Bluetooth: mgmt: Fix wrong opcode in the response for add_adv cmd Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 116/236] arm64: dts: renesas: rzg2: Convert EtherAVB to explicit delay handling Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 117/236] arm64: dts: renesas: hihope-rzg2-ex: Add EtherAVB internal rx delay Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 118/236] devlink: Break parameter notification sequence to be before/after unload/load driver Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 119/236] net/mlx5: Fix missing return value in mlx5_devlink_eswitch_inline_mode_set() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 120/236] i2c: highlander: add IRQ check Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 121/236] leds: lt3593: Put fwnode in any case during ->probe() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 122/236] leds: trigger: audio: Add an activate callback to ensure the initial brightness is set Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 123/236] media: em28xx-input: fix refcount bug in em28xx_usb_disconnect Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 124/236] media: venus: venc: Fix potential null pointer dereference on pointer fmt Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 125/236] PCI: PM: Avoid forcing PCI_D0 for wakeup reasons inconsistently Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 126/236] PCI: PM: Enable PME if it can be signaled from D3cold Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 127/236] bpf, samples: Add missing mprog-disable to xdp_redirect_cpus optstring Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 128/236] soc: qcom: smsm: Fix missed interrupts if state changes while masked Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 129/236] debugfs: Return error during {full/open}_proxy_open() on rmmod Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 130/236] Bluetooth: increase BTNAMSIZ to 21 chars to fix potential buffer overflow Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 131/236] PM: EM: Increase energy calculation precision Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 132/236] selftests/bpf: Fix bpf-iter-tcp4 test to print correctly the dest IP Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 133/236] drm/msm/mdp4: refactor HW revision detection into read_mdp_hw_revision Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.10 134/236] drm/msm/mdp4: move HW revision detection to earlier phase Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 135/236] drm/msm/dpu: make dpu_hw_ctl_clear_all_blendstages clear necessary LMs Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 136/236] arm64: dts: exynos: correct GIC CPU interfaces address range on Exynos7 Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 137/236] counter: 104-quad-8: Return error when invalid mode during ceiling_write Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 138/236] cgroup/cpuset: Miscellaneous code cleanup Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 139/236] cgroup/cpuset: Fix violation of cpuset locking rule Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 140/236] ASoC: Intel: Fix platform ID matching Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 141/236] Bluetooth: fix repeated calls to sco_sock_kill Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 142/236] drm/msm/dsi: Fix some reference counted resource leaks Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 143/236] net/mlx5: Register to devlink ingress VLAN filter trap Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 144/236] net/mlx5: Fix unpublish devlink parameters Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 145/236] ASoC: rt5682: Implement remove callback Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 146/236] ASoC: rt5682: Properly turn off regulators if wrong device ID Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 147/236] usb: dwc3: meson-g12a: add IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 148/236] usb: dwc3: qcom: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 149/236] usb: gadget: udc: at91: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 150/236] usb: gadget: udc: s3c2410: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 151/236] usb: phy: fsl-usb: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 152/236] usb: phy: twl6030: add IRQ checks Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 153/236] usb: gadget: udc: renesas_usb3: Fix soc_device_match() abuse Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 154/236] selftests/bpf: Fix test_core_autosize on big-endian machines Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 155/236] devlink: Clear whole devlink_flash_notify struct Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 156/236] samples: pktgen: add missing IPv6 option to pktgen scripts Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 157/236] Bluetooth: Move shutdown callback before flushing tx and rx queue Greg Kroah-Hartman
2021-09-15 11:18   ` Pavel Machek
2021-09-15 14:32     ` Guenter Roeck
2021-09-16  0:56       ` Sasha Levin
2021-09-16  8:48         ` Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 158/236] PM: cpu: Make notifier chain use a raw_spinlock_t Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 159/236] usb: host: ohci-tmio: add IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 160/236] usb: phy: tahvo: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 161/236] libbpf: Re-build libbpf.so when libbpf.map changes Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 162/236] mac80211: Fix insufficient headroom issue for AMSDU Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 163/236] locking/lockdep: Mark local_lock_t Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 164/236] locking/local_lock: Add missing owner initialization Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 165/236] lockd: Fix invalid lockowner cast after vfs_test_lock Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 166/236] nfsd4: Fix forced-expiry locking Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 167/236] arm64: dts: marvell: armada-37xx: Extend PCIe MEM space Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 168/236] clk: staging: correct reference to config IOMEM to config HAS_IOMEM Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 169/236] i2c: synquacer: fix deferred probing Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 170/236] firmware: raspberrypi: Keep count of all consumers Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 171/236] firmware: raspberrypi: Fix a leak in rpi_firmware_get() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 172/236] usb: gadget: mv_u3d: request_irq() after initializing UDC Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 173/236] mm/swap: consider max pages in iomap_swapfile_add_extent Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 174/236] lkdtm: replace SCSI_DISPATCH_CMD with SCSI_QUEUE_RQ Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 175/236] Bluetooth: add timeout sanity check to hci_inquiry Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 176/236] i2c: iop3xx: fix deferred probing Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 177/236] i2c: s3c2410: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 178/236] i2c: fix platform_get_irq.cocci warnings Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 179/236] i2c: hix5hd2: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 180/236] gfs2: init system threads before freeze lock Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 181/236] rsi: fix error code in rsi_load_9116_firmware() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 182/236] rsi: fix an error code in rsi_probe() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 183/236] ASoC: Intel: kbl_da7219_max98927: Fix format selection for max98373 Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 184/236] ASoC: Intel: Skylake: Leave data as is when invoking TLV IPCs Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 185/236] ASoC: Intel: Skylake: Fix module resource and format selection Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 186/236] mmc: sdhci: Fix issue with uninitialized dma_slave_config Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 187/236] mmc: dw_mmc: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 188/236] mmc: moxart: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 189/236] bpf: Fix possible out of bound write in narrow load handling Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 190/236] CIFS: Fix a potencially linear read overflow Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 191/236] i2c: mt65xx: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 192/236] i2c: xlp9xx: fix main " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 193/236] usb: ehci-orion: Handle errors of clk_prepare_enable() in probe Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.10 194/236] usb: bdc: Fix an error handling path in bdc_probe() when no suitable DMA config is available Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 195/236] usb: bdc: Fix a resource leak in the error handling path of bdc_probe() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 196/236] tty: serial: fsl_lpuart: fix the wrong mapbase value Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 197/236] ASoC: wcd9335: Fix a double irq free in the remove function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 198/236] ASoC: wcd9335: Fix a memory leak in the error handling path of the probe function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 199/236] ASoC: wcd9335: Disable irq on slave ports in the remove function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 200/236] iwlwifi: follow the new inclusive terminology Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 201/236] iwlwifi: skip first element in the WTAS ACPI table Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 202/236] ice: Only lock to update netdev dev_addr Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 203/236] ath6kl: wmi: fix an error code in ath6kl_wmi_sync_point() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 204/236] atlantic: Fix driver resume flow Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 205/236] bcma: Fix memory leak for internally-handled cores Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 206/236] brcmfmac: pcie: fix oops on failure to resume and reprobe Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 207/236] ipv6: make exception cache less predictible Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 208/236] ipv4: " Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 209/236] net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 210/236] net: qualcomm: fix QCA7000 checksum handling Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 211/236] octeontx2-af: Fix loop in free and unmap counter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 212/236] octeontx2-af: Fix static code analyzer reported issues Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 213/236] octeontx2-af: Set proper errorcode for IPv4 checksum errors Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 214/236] ipv4: fix endianness issue in inet_rtm_getroute_build_skb() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 215/236] ASoC: rt5682: Remove unused variable in rt5682_i2c_remove() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 216/236] iwlwifi Add support for ax201 in Samsung Galaxy Book Flex2 Alpha Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 217/236] f2fs: guarantee to write dirty data when enabling checkpoint back Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 218/236] time: Handle negative seconds correctly in timespec64_to_ns() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 219/236] io_uring: IORING_OP_WRITE needs hash_reg_file set Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 220/236] bio: fix page leak bio_add_hw_page failure Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 221/236] tty: Fix data race between tiocsti() and flush_to_ldisc() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 222/236] perf/x86/amd/ibs: Extend PERF_PMU_CAP_NO_EXCLUDE to IBS Op Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 223/236] x86/resctrl: Fix a maybe-uninitialized build warning treated as error Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 224/236] Revert "KVM: x86: mmu: Add guest physical address check in translate_gpa()" Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 225/236] KVM: s390: index kvm->arch.idle_mask by vcpu_idx Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 226/236] KVM: x86: Update vCPUs hv_clock before back to guest when tsc_offset is adjusted Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 227/236] KVM: VMX: avoid running vmx_handle_exit_irqoff in case of emulation Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 228/236] KVM: nVMX: Unconditionally clear nested.pi_pending on nested VM-Enter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 229/236] ARM: dts: at91: add pinctrl-{names, 0} for all gpios Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 230/236] fuse: truncate pagecache on atomic_o_trunc Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 231/236] fuse: flush extending writes Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 232/236] IMA: remove -Wmissing-prototypes warning Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 233/236] IMA: remove the dependency on CRYPTO_MD5 Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 234/236] fbmem: dont allow too huge resolutions Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 235/236] backlight: pwm_bl: Improve bootloader/kernel device handover Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.10 236/236] clk: kirkwood: Fix a clocking boot regression Greg Kroah-Hartman
2021-09-13 17:07 ` [PATCH 5.10 000/236] 5.10.65-rc1 review Fox Chen
2021-09-13 17:32 ` Florian Fainelli
2021-09-13 20:07 ` Shuah Khan
2021-09-14  6:25 ` Naresh Kamboju
2021-09-14  7:10 ` Pavel Machek
2021-09-14  7:48 ` Jon Hunter
2021-09-14 11:09 ` Samuel Zou
2021-09-14 15:56 ` Guenter Roeck
2021-09-14 18:56 ` Sudip Mukherjee

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=20210913131100.882630929@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jack@suse.cz \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pali@kernel.org \
    --cc=sashal@kernel.org \
    --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).