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, kernel test robot <lkp@intel.com>,
	"Gustavo A. R. Silva" <gustavoars@kernel.org>,
	Kees Cook <keescook@chromium.org>,
	Kalle Valo <kvalo@codeaurora.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.14 255/323] wl3501_cs: Fix out-of-bounds warnings in wl3501_mgmt_join
Date: Thu, 20 May 2021 11:22:27 +0200	[thread overview]
Message-ID: <20210520092128.946462830@linuxfoundation.org> (raw)
In-Reply-To: <20210520092120.115153432@linuxfoundation.org>

From: Gustavo A. R. Silva <gustavoars@kernel.org>

[ Upstream commit bb43e5718d8f1b46e7a77e7b39be3c691f293050 ]

Fix the following out-of-bounds warnings by adding a new structure
wl3501_req instead of duplicating the same members in structure
wl3501_join_req and wl3501_scan_confirm:

arch/x86/include/asm/string_32.h:182:25: warning: '__builtin_memcpy' offset [39, 108] from the object at 'sig' is out of the bounds of referenced subobject 'beacon_period' with type 'short unsigned int' at offset 36 [-Warray-bounds]
arch/x86/include/asm/string_32.h:182:25: warning: '__builtin_memcpy' offset [25, 95] from the object at 'sig' is out of the bounds of referenced subobject 'beacon_period' with type 'short unsigned int' at offset 22 [-Warray-bounds]

Refactor the code, accordingly:

$ pahole -C wl3501_req drivers/net/wireless/wl3501_cs.o
struct wl3501_req {
        u16                        beacon_period;        /*     0     2 */
        u16                        dtim_period;          /*     2     2 */
        u16                        cap_info;             /*     4     2 */
        u8                         bss_type;             /*     6     1 */
        u8                         bssid[6];             /*     7     6 */
        struct iw_mgmt_essid_pset  ssid;                 /*    13    34 */
        struct iw_mgmt_ds_pset     ds_pset;              /*    47     3 */
        struct iw_mgmt_cf_pset     cf_pset;              /*    50     8 */
        struct iw_mgmt_ibss_pset   ibss_pset;            /*    58     4 */
        struct iw_mgmt_data_rset   bss_basic_rset;       /*    62    10 */

        /* size: 72, cachelines: 2, members: 10 */
        /* last cacheline: 8 bytes */
};

$ pahole -C wl3501_join_req drivers/net/wireless/wl3501_cs.o
struct wl3501_join_req {
        u16                        next_blk;             /*     0     2 */
        u8                         sig_id;               /*     2     1 */
        u8                         reserved;             /*     3     1 */
        struct iw_mgmt_data_rset   operational_rset;     /*     4    10 */
        u16                        reserved2;            /*    14     2 */
        u16                        timeout;              /*    16     2 */
        u16                        probe_delay;          /*    18     2 */
        u8                         timestamp[8];         /*    20     8 */
        u8                         local_time[8];        /*    28     8 */
        struct wl3501_req          req;                  /*    36    72 */

        /* size: 108, cachelines: 2, members: 10 */
        /* last cacheline: 44 bytes */
};

$ pahole -C wl3501_scan_confirm drivers/net/wireless/wl3501_cs.o
struct wl3501_scan_confirm {
        u16                        next_blk;             /*     0     2 */
        u8                         sig_id;               /*     2     1 */
        u8                         reserved;             /*     3     1 */
        u16                        status;               /*     4     2 */
        char                       timestamp[8];         /*     6     8 */
        char                       localtime[8];         /*    14     8 */
        struct wl3501_req          req;                  /*    22    72 */
        /* --- cacheline 1 boundary (64 bytes) was 30 bytes ago --- */
        u8                         rssi;                 /*    94     1 */

        /* size: 96, cachelines: 2, members: 8 */
        /* padding: 1 */
        /* last cacheline: 32 bytes */
};

The problem is that the original code is trying to copy data into a
bunch of struct members adjacent to each other in a single call to
memcpy(). Now that a new struct wl3501_req enclosing all those adjacent
members is introduced, memcpy() doesn't overrun the length of
&sig.beacon_period and &this->bss_set[i].beacon_period, because the
address of the new struct object _req_ is used as the destination,
instead.

This helps with the ongoing efforts to globally enable -Warray-bounds
and get us closer to being able to tighten the FORTIFY_SOURCE routines
on memcpy().

Link: https://github.com/KSPP/linux/issues/109
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/1fbaf516da763b50edac47d792a9145aa4482e29.1618442265.git.gustavoars@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/wireless/wl3501.h    | 35 +++++++++++--------------
 drivers/net/wireless/wl3501_cs.c | 44 +++++++++++++++++---------------
 2 files changed, 38 insertions(+), 41 deletions(-)

diff --git a/drivers/net/wireless/wl3501.h b/drivers/net/wireless/wl3501.h
index 077a934ae3b5..a10ee5a68012 100644
--- a/drivers/net/wireless/wl3501.h
+++ b/drivers/net/wireless/wl3501.h
@@ -379,16 +379,7 @@ struct wl3501_get_confirm {
 	u8	mib_value[100];
 };
 
-struct wl3501_join_req {
-	u16			    next_blk;
-	u8			    sig_id;
-	u8			    reserved;
-	struct iw_mgmt_data_rset    operational_rset;
-	u16			    reserved2;
-	u16			    timeout;
-	u16			    probe_delay;
-	u8			    timestamp[8];
-	u8			    local_time[8];
+struct wl3501_req {
 	u16			    beacon_period;
 	u16			    dtim_period;
 	u16			    cap_info;
@@ -401,6 +392,19 @@ struct wl3501_join_req {
 	struct iw_mgmt_data_rset    bss_basic_rset;
 };
 
+struct wl3501_join_req {
+	u16			    next_blk;
+	u8			    sig_id;
+	u8			    reserved;
+	struct iw_mgmt_data_rset    operational_rset;
+	u16			    reserved2;
+	u16			    timeout;
+	u16			    probe_delay;
+	u8			    timestamp[8];
+	u8			    local_time[8];
+	struct wl3501_req	    req;
+};
+
 struct wl3501_join_confirm {
 	u16	next_blk;
 	u8	sig_id;
@@ -443,16 +447,7 @@ struct wl3501_scan_confirm {
 	u16			    status;
 	char			    timestamp[8];
 	char			    localtime[8];
-	u16			    beacon_period;
-	u16			    dtim_period;
-	u16			    cap_info;
-	u8			    bss_type;
-	u8			    bssid[ETH_ALEN];
-	struct iw_mgmt_essid_pset   ssid;
-	struct iw_mgmt_ds_pset	    ds_pset;
-	struct iw_mgmt_cf_pset	    cf_pset;
-	struct iw_mgmt_ibss_pset    ibss_pset;
-	struct iw_mgmt_data_rset    bss_basic_rset;
+	struct wl3501_req	    req;
 	u8			    rssi;
 };
 
diff --git a/drivers/net/wireless/wl3501_cs.c b/drivers/net/wireless/wl3501_cs.c
index 0019b01145ba..f33ece937047 100644
--- a/drivers/net/wireless/wl3501_cs.c
+++ b/drivers/net/wireless/wl3501_cs.c
@@ -589,7 +589,7 @@ static int wl3501_mgmt_join(struct wl3501_card *this, u16 stas)
 	struct wl3501_join_req sig = {
 		.sig_id		  = WL3501_SIG_JOIN_REQ,
 		.timeout	  = 10,
-		.ds_pset = {
+		.req.ds_pset = {
 			.el = {
 				.id  = IW_MGMT_INFO_ELEMENT_DS_PARAMETER_SET,
 				.len = 1,
@@ -598,7 +598,7 @@ static int wl3501_mgmt_join(struct wl3501_card *this, u16 stas)
 		},
 	};
 
-	memcpy(&sig.beacon_period, &this->bss_set[stas].beacon_period, 72);
+	memcpy(&sig.req, &this->bss_set[stas].req, sizeof(sig.req));
 	return wl3501_esbq_exec(this, &sig, sizeof(sig));
 }
 
@@ -666,35 +666,37 @@ static void wl3501_mgmt_scan_confirm(struct wl3501_card *this, u16 addr)
 	if (sig.status == WL3501_STATUS_SUCCESS) {
 		pr_debug("success");
 		if ((this->net_type == IW_MODE_INFRA &&
-		     (sig.cap_info & WL3501_MGMT_CAPABILITY_ESS)) ||
+		     (sig.req.cap_info & WL3501_MGMT_CAPABILITY_ESS)) ||
 		    (this->net_type == IW_MODE_ADHOC &&
-		     (sig.cap_info & WL3501_MGMT_CAPABILITY_IBSS)) ||
+		     (sig.req.cap_info & WL3501_MGMT_CAPABILITY_IBSS)) ||
 		    this->net_type == IW_MODE_AUTO) {
 			if (!this->essid.el.len)
 				matchflag = 1;
 			else if (this->essid.el.len == 3 &&
 				 !memcmp(this->essid.essid, "ANY", 3))
 				matchflag = 1;
-			else if (this->essid.el.len != sig.ssid.el.len)
+			else if (this->essid.el.len != sig.req.ssid.el.len)
 				matchflag = 0;
-			else if (memcmp(this->essid.essid, sig.ssid.essid,
+			else if (memcmp(this->essid.essid, sig.req.ssid.essid,
 					this->essid.el.len))
 				matchflag = 0;
 			else
 				matchflag = 1;
 			if (matchflag) {
 				for (i = 0; i < this->bss_cnt; i++) {
-					if (ether_addr_equal_unaligned(this->bss_set[i].bssid, sig.bssid)) {
+					if (ether_addr_equal_unaligned(this->bss_set[i].req.bssid,
+								       sig.req.bssid)) {
 						matchflag = 0;
 						break;
 					}
 				}
 			}
 			if (matchflag && (i < 20)) {
-				memcpy(&this->bss_set[i].beacon_period,
-				       &sig.beacon_period, 73);
+				memcpy(&this->bss_set[i].req,
+				       &sig.req, sizeof(sig.req));
 				this->bss_cnt++;
 				this->rssi = sig.rssi;
+				this->bss_set[i].rssi = sig.rssi;
 			}
 		}
 	} else if (sig.status == WL3501_STATUS_TIMEOUT) {
@@ -886,19 +888,19 @@ static void wl3501_mgmt_join_confirm(struct net_device *dev, u16 addr)
 			if (this->join_sta_bss < this->bss_cnt) {
 				const int i = this->join_sta_bss;
 				memcpy(this->bssid,
-				       this->bss_set[i].bssid, ETH_ALEN);
-				this->chan = this->bss_set[i].ds_pset.chan;
+				       this->bss_set[i].req.bssid, ETH_ALEN);
+				this->chan = this->bss_set[i].req.ds_pset.chan;
 				iw_copy_mgmt_info_element(&this->keep_essid.el,
-						     &this->bss_set[i].ssid.el);
+						     &this->bss_set[i].req.ssid.el);
 				wl3501_mgmt_auth(this);
 			}
 		} else {
 			const int i = this->join_sta_bss;
 
-			memcpy(&this->bssid, &this->bss_set[i].bssid, ETH_ALEN);
-			this->chan = this->bss_set[i].ds_pset.chan;
+			memcpy(&this->bssid, &this->bss_set[i].req.bssid, ETH_ALEN);
+			this->chan = this->bss_set[i].req.ds_pset.chan;
 			iw_copy_mgmt_info_element(&this->keep_essid.el,
-						  &this->bss_set[i].ssid.el);
+						  &this->bss_set[i].req.ssid.el);
 			wl3501_online(dev);
 		}
 	} else {
@@ -1576,30 +1578,30 @@ static int wl3501_get_scan(struct net_device *dev, struct iw_request_info *info,
 	for (i = 0; i < this->bss_cnt; ++i) {
 		iwe.cmd			= SIOCGIWAP;
 		iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
-		memcpy(iwe.u.ap_addr.sa_data, this->bss_set[i].bssid, ETH_ALEN);
+		memcpy(iwe.u.ap_addr.sa_data, this->bss_set[i].req.bssid, ETH_ALEN);
 		current_ev = iwe_stream_add_event(info, current_ev,
 						  extra + IW_SCAN_MAX_DATA,
 						  &iwe, IW_EV_ADDR_LEN);
 		iwe.cmd		  = SIOCGIWESSID;
 		iwe.u.data.flags  = 1;
-		iwe.u.data.length = this->bss_set[i].ssid.el.len;
+		iwe.u.data.length = this->bss_set[i].req.ssid.el.len;
 		current_ev = iwe_stream_add_point(info, current_ev,
 						  extra + IW_SCAN_MAX_DATA,
 						  &iwe,
-						  this->bss_set[i].ssid.essid);
+						  this->bss_set[i].req.ssid.essid);
 		iwe.cmd	   = SIOCGIWMODE;
-		iwe.u.mode = this->bss_set[i].bss_type;
+		iwe.u.mode = this->bss_set[i].req.bss_type;
 		current_ev = iwe_stream_add_event(info, current_ev,
 						  extra + IW_SCAN_MAX_DATA,
 						  &iwe, IW_EV_UINT_LEN);
 		iwe.cmd = SIOCGIWFREQ;
-		iwe.u.freq.m = this->bss_set[i].ds_pset.chan;
+		iwe.u.freq.m = this->bss_set[i].req.ds_pset.chan;
 		iwe.u.freq.e = 0;
 		current_ev = iwe_stream_add_event(info, current_ev,
 						  extra + IW_SCAN_MAX_DATA,
 						  &iwe, IW_EV_FREQ_LEN);
 		iwe.cmd = SIOCGIWENCODE;
-		if (this->bss_set[i].cap_info & WL3501_MGMT_CAPABILITY_PRIVACY)
+		if (this->bss_set[i].req.cap_info & WL3501_MGMT_CAPABILITY_PRIVACY)
 			iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
 		else
 			iwe.u.data.flags = IW_ENCODE_DISABLED;
-- 
2.30.2




  parent reply	other threads:[~2021-05-20 10:37 UTC|newest]

Thread overview: 327+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-20  9:18 [PATCH 4.14 000/323] 4.14.233-rc1 review Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 001/323] usbip: vudc synchronize sysfs code paths Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 002/323] ACPI: tables: x86: Reserve memory occupied by ACPI tables Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 003/323] ACPI: x86: Call acpi_boot_table_init() after acpi_table_upgrade() Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 004/323] bpf: Fix backport of "bpf: restrict unknown scalars of mixed signed bounds for unprivileged" Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 005/323] bpf: fix up selftests after backports were fixed Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 006/323] net: usb: ax88179_178a: initialize local variables before use Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 007/323] iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_enqueue_hcmd() Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 008/323] MIPS: Introduce isa-rev.h to define MIPS_ISA_REV Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 009/323] MIPS: cpu-features.h: Replace __mips_isa_rev with MIPS_ISA_REV Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 010/323] mips: Do not include hi and lo in clobber list for R6 Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 011/323] bpf: Fix masking negation logic upon negative dst register Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 012/323] iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_gen2_enqueue_hcmd() Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 013/323] ALSA: usb-audio: Add MIDI quirk for Vox ToneLab EX Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 014/323] USB: Add LPM quirk for Lenovo ThinkPad USB-C Dock Gen2 Ethernet Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 015/323] USB: Add reset-resume quirk for WD19s Realtek Hub Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 016/323] platform/x86: thinkpad_acpi: Correct thermal sensor allocation Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 017/323] s390/disassembler: increase ebpf disasm buffer size Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 018/323] ACPI: custom_method: fix potential use-after-free issue Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 019/323] ACPI: custom_method: fix a possible memory leak Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 020/323] arm64: dts: mt8173: fix property typo of phys in dsi node Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 021/323] ecryptfs: fix kernel panic with null dev_name Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 022/323] spi: spi-ti-qspi: Free DMA resources Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 023/323] mmc: block: Update ext_csd.cache_ctrl if it was written Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 024/323] mmc: core: Do a power cycle when the CMD11 fails Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 025/323] mmc: core: Set read only for SD cards with permanent write protect bit Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 026/323] cifs: Return correct error code from smb2_get_enc_key Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 027/323] btrfs: fix metadata extent leak after failure to create subvolume Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 028/323] intel_th: pci: Add Rocket Lake CPU support Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 029/323] fbdev: zero-fill colormap in fbcmap.c Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 030/323] staging: wimax/i2400m: fix byte-order issue Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 031/323] crypto: api - check for ERR pointers in crypto_destroy_tfm() Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 032/323] usb: gadget: uvc: add bInterval checking for HS mode Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 033/323] usb: gadget: f_uac1: validate input parameters Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 034/323] usb: dwc3: gadget: Ignore EP queue requests during bus reset Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 035/323] usb: xhci: Fix port minor revision Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 036/323] PCI: PM: Do not read power state in pci_enable_device_flags() Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 037/323] x86/build: Propagate $(CLANG_FLAGS) to $(REALMODE_FLAGS) Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 038/323] tee: optee: do not check memref size on return from Secure World Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 039/323] perf/arm_pmu_platform: Fix error handling Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 040/323] spi: dln2: Fix reference leak to master Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 041/323] spi: omap-100k: " Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 042/323] intel_th: Consistency and off-by-one fix Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 043/323] phy: phy-twl4030-usb: Fix possible use-after-free in twl4030_usb_remove() Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 044/323] btrfs: convert logic BUG_ON()s in replace_path to ASSERT()s Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 045/323] scsi: lpfc: Fix incorrect dbde assignment when building target abts wqe Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 046/323] scsi: lpfc: Fix pt2pt connection does not recover after LOGO Greg Kroah-Hartman
2021-05-20  9:18 ` [PATCH 4.14 047/323] scsi: target: pscsi: Fix warning in pscsi_complete_cmd() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 048/323] media: ite-cir: check for receive overflow Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 049/323] power: supply: bq27xxx: fix power_avg for newer ICs Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 050/323] extcon: arizona: Fix some issues when HPDET IRQ fires after the jack has been unplugged Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 051/323] media: media/saa7164: fix saa7164_encoder_register() memory leak bugs Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 052/323] media: gspca/sq905.c: fix uninitialized variable Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 053/323] power: supply: Use IRQF_ONESHOT Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 054/323] drm/amdgpu : Fix asic reset regression issue introduce by 8f211fe8ac7c4f Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 055/323] scsi: qla2xxx: Always check the return value of qla24xx_get_isp_stats() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 056/323] scsi: qla2xxx: Fix use after free in bsg Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 057/323] scsi: scsi_dh_alua: Remove check for ASC 24h in alua_rtpg() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 058/323] media: em28xx: fix memory leak Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 059/323] media: vivid: update EDID Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 060/323] clk: socfpga: arria10: Fix memory leak of socfpga_clk on error return Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 061/323] power: supply: generic-adc-battery: fix possible use-after-free in gab_remove() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 062/323] power: supply: s3c_adc_battery: fix possible use-after-free in s3c_adc_bat_remove() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 063/323] media: adv7604: fix possible use-after-free in adv76xx_remove() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 064/323] media: i2c: adv7511-v4l2: fix possible use-after-free in adv7511_remove() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 065/323] media: i2c: adv7842: fix possible use-after-free in adv7842_remove() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 066/323] media: dvb-usb: fix memory leak in dvb_usb_adapter_init Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 067/323] media: gscpa/stv06xx: fix memory leak Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 068/323] drm/msm/mdp5: Configure PP_SYNC_HEIGHT to double the vtotal Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 069/323] drm/amdgpu: fix NULL pointer dereference Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 070/323] scsi: lpfc: Fix crash when a REG_RPI mailbox fails triggering a LOGO response Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 071/323] scsi: lpfc: Remove unsupported mbox PORT_CAPABILITIES logic Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 072/323] scsi: libfc: Fix a format specifier Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 073/323] ALSA: emu8000: Fix a use after free in snd_emu8000_create_mixer Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 074/323] ALSA: hda/conexant: Re-order CX5066 quirk table entries Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 075/323] ALSA: sb: Fix two use after free in snd_sb_qsound_build Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 076/323] btrfs: fix race when picking most recent mod log operation for an old root Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 077/323] arm64/vdso: Discard .note.gnu.property sections in vDSO Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 078/323] openvswitch: fix stack OOB read while fragmenting IPv4 packets Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 079/323] ACPI: GTDT: Dont corrupt interrupt mappings on watchdow probe failure Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 080/323] NFSv4: Dont discard segments marked for return in _pnfs_return_layout() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 081/323] jffs2: Fix kasan slab-out-of-bounds problem Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 082/323] powerpc/eeh: Fix EEH handling for hugepages in ioremap space Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 083/323] powerpc: fix EDEADLOCK redefinition error in uapi/asm/errno.h Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 084/323] intel_th: pci: Add Alder Lake-M support Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 085/323] md/raid1: properly indicate failure when ending a failed write request Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 086/323] security: commoncap: fix -Wstringop-overread warning Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 087/323] Fix misc new gcc warnings Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 088/323] jffs2: check the validity of dstlen in jffs2_zlib_compress() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 089/323] Revert 337f13046ff0 ("futex: Allow FUTEX_CLOCK_REALTIME with FUTEX_WAIT op") Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 090/323] posix-timers: Preserve return value in clock_adjtime32() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 091/323] ftrace: Handle commands when closing set_ftrace_filter file Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 092/323] ext4: fix check to prevent false positive report of incorrect used inodes Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 093/323] ext4: fix error code in ext4_commit_super Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 094/323] media: dvbdev: Fix memory leak in dvb_media_device_free() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 095/323] usb: gadget: dummy_hcd: fix gpf in gadget_setup Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 096/323] usb: gadget: Fix double free of device descriptor pointers Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 097/323] usb: gadget/function/f_fs string table fix for multiple languages Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 098/323] usb: dwc3: gadget: Fix START_TRANSFER link state check Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 099/323] tracing: Map all PIDs to command lines Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 100/323] dm persistent data: packed struct should have an aligned() attribute too Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 101/323] dm space map common: fix division bug in sm_ll_find_free_block() Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 102/323] dm rq: fix double free of blk_mq_tag_set in dev remove after table load fails Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 103/323] modules: mark ref_module static Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 104/323] modules: mark find_symbol static Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 105/323] modules: mark each_symbol_section static Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 106/323] modules: unexport __module_text_address Greg Kroah-Hartman
2021-05-20  9:19 ` [PATCH 4.14 107/323] modules: unexport __module_address Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 108/323] modules: rename the licence field in struct symsearch to license Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 109/323] modules: return licensing information from find_symbol Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 110/323] modules: inherit TAINT_PROPRIETARY_MODULE Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 111/323] Bluetooth: verify AMP hci_chan before amp_destroy Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 112/323] hsr: use netdev_err() instead of WARN_ONCE() Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 113/323] bluetooth: eliminate the potential race condition when removing the HCI controller Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 114/323] net/nfc: fix use-after-free llcp_sock_bind/connect Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 115/323] MIPS: pci-rt2880: fix slot 0 configuration Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 116/323] FDDI: defxx: Bail out gracefully with unassigned PCI resource for CSR Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 117/323] misc: lis3lv02d: Fix false-positive WARN on various HP models Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 118/323] misc: vmw_vmci: explicitly initialize vmci_notify_bm_set_msg struct Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 119/323] misc: vmw_vmci: explicitly initialize vmci_datagram payload Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 120/323] tracing: Restructure trace_clock_global() to never block Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 121/323] md-cluster: fix use-after-free issue when removing rdev Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 122/323] md: split mddev_find Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 123/323] md: factor out a mddev_find_locked helper from mddev_find Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 124/323] md: md_open returns -EBUSY when entering racing area Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 125/323] ipw2x00: potential buffer overflow in libipw_wx_set_encodeext() Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 126/323] cfg80211: scan: drop entry from hidden_list on overflow Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 127/323] drm/radeon: fix copy of uninitialized variable back to userspace Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 128/323] ALSA: hda/realtek: Re-order ALC882 Acer quirk table entries Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 129/323] ALSA: hda/realtek: Re-order ALC882 Sony " Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 130/323] ALSA: hda/realtek: Re-order ALC269 " Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 131/323] ALSA: hda/realtek: Re-order ALC269 Lenovo " Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 132/323] ALSA: hda/realtek: Remove redundant entry for ALC861 Haier/Uniwill devices Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 133/323] x86/cpu: Initialize MSR_TSC_AUX if RDTSCP *or* RDPID is supported Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 134/323] KVM: s390: split kvm_s390_logical_to_effective Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 135/323] KVM: s390: fix guarded storage control register handling Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 136/323] KVM: s390: split kvm_s390_real_to_abs Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 137/323] usb: gadget: pch_udc: Revert d3cb25a12138 completely Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 138/323] memory: gpmc: fix out of bounds read and dereference on gpmc_cs[] Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 139/323] ARM: dts: exynos: correct PMIC interrupt trigger level on Odroid X/U3 family Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 140/323] ARM: dts: exynos: correct PMIC interrupt trigger level on SMDK5250 Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 141/323] ARM: dts: exynos: correct PMIC interrupt trigger level on Snow Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 142/323] serial: stm32: fix incorrect characters on console Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 143/323] serial: stm32: fix tx_empty condition Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 144/323] usb: typec: tcpci: Check ROLE_CONTROL while interpreting CC_STATUS Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 145/323] x86/microcode: Check for offline CPUs before requesting new microcode Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 146/323] usb: gadget: pch_udc: Replace cpu_to_le32() by lower_32_bits() Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 147/323] usb: gadget: pch_udc: Check if driver is present before calling ->setup() Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 148/323] usb: gadget: pch_udc: Check for DMA mapping error Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 149/323] crypto: qat - dont release uninitialized resources Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 150/323] crypto: qat - ADF_STATUS_PF_RUNNING should be set after adf_dev_init Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 151/323] fotg210-udc: Fix DMA on EP0 for length > max packet size Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 152/323] fotg210-udc: Fix EP0 IN requests bigger than two packets Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 153/323] fotg210-udc: Remove a dubious condition leading to fotg210_done Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 154/323] fotg210-udc: Mask GRP2 interrupts we dont handle Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 155/323] fotg210-udc: Dont DMA more than the buffer can take Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 156/323] fotg210-udc: Complete OUT requests on short packets Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 157/323] mtd: require write permissions for locking and badblock ioctls Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 158/323] bus: qcom: Put child node before return Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 159/323] phy: marvell: ARMADA375_USBCLUSTER_PHY should not default to y, unconditionally Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 160/323] crypto: qat - fix error path in adf_isr_resource_alloc() Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 161/323] USB: gadget: udc: fix wrong pointer passed to IS_ERR() and PTR_ERR() Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 162/323] mtd: rawnand: gpmi: Fix a double free in gpmi_nand_init Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 163/323] staging: rtl8192u: Fix potential infinite loop Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 164/323] staging: greybus: uart: fix unprivileged TIOCCSERIAL Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 165/323] spi: Fix use-after-free with devm_spi_alloc_* Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 166/323] soc: qcom: mdt_loader: Validate that p_filesz < p_memsz Greg Kroah-Hartman
2021-05-20  9:20 ` [PATCH 4.14 167/323] soc: qcom: mdt_loader: Detect truncated read of segments Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 168/323] ACPI: CPPC: Replace cppc_attr with kobj_attribute Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 169/323] crypto: qat - Fix a double free in adf_create_ring Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 170/323] usb: gadget: r8a66597: Add missing null check on return from platform_get_resource Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 171/323] USB: cdc-acm: fix unprivileged TIOCCSERIAL Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 172/323] tty: actually undefine superseded ASYNC flags Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 173/323] tty: fix return value for unsupported ioctls Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 174/323] firmware: qcom-scm: Fix QCOM_SCM configuration Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 175/323] platform/x86: pmc_atom: Match all Beckhoff Automation baytrail boards with critclk_systems DMI table Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 176/323] x86/platform/uv: Fix !KEXEC build failure Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 177/323] Drivers: hv: vmbus: Increase wait time for VMbus unload Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 178/323] ttyprintk: Add TTY hangup callback Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 179/323] media: vivid: fix assignment of dev->fbuf_out_flags Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 180/323] media: omap4iss: return error code when omap4iss_get() failed Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 181/323] media: m88rs6000t: avoid potential out-of-bounds reads on arrays Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 182/323] x86/kprobes: Fix to check non boostable prefixes correctly Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 183/323] pata_arasan_cf: fix IRQ check Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 184/323] pata_ipx4xx_cf: " Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 185/323] sata_mv: add IRQ checks Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 186/323] ata: libahci_platform: fix IRQ check Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 187/323] vfio/mdev: Do not allow a mdev_type to have a NULL parent pointer Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 188/323] clk: uniphier: Fix potential infinite loop Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 189/323] scsi: jazz_esp: Add IRQ check Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 190/323] scsi: sun3x_esp: " Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 191/323] scsi: sni_53c710: " Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 192/323] mfd: stm32-timers: Avoid clearing auto reload register Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 193/323] HSI: core: fix resource leaks in hsi_add_client_from_dt() Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 194/323] x86/events/amd/iommu: Fix sysfs type mismatch Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 195/323] HID: plantronics: Workaround for double volume key presses Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 196/323] perf symbols: Fix dso__fprintf_symbols_by_name() to return the number of printed chars Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 197/323] net: lapbether: Prevent racing when checking whether the netif is running Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 198/323] powerpc/prom: Mark identical_pvr_fixup as __init Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 199/323] powerpc: Fix HAVE_HARDLOCKUP_DETECTOR_ARCH build configuration Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 200/323] ALSA: core: remove redundant spin_lock pair in snd_card_disconnect Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 201/323] bug: Remove redundant condition check in report_bug Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 202/323] nfc: pn533: prevent potential memory corruption Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 203/323] ALSA: usb-audio: Add error checks for usb_driver_claim_interface() calls Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 204/323] liquidio: Fix unintented sign extension of a left shift of a u16 Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 205/323] powerpc/perf: Fix PMU constraint check for EBB events Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 206/323] powerpc: iommu: fix build when neither PCI or IBMVIO is set Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 207/323] mac80211: bail out if cipher schemes are invalid Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 208/323] mt7601u: fix always true expression Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 209/323] IB/hfi1: Fix error return code in parse_platform_config() Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 210/323] net: thunderx: Fix unintentional sign extension issue Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 211/323] i2c: cadence: add IRQ check Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 212/323] i2c: emev2: " Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 213/323] i2c: jz4780: " Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 214/323] i2c: sh7760: " Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 215/323] MIPS: pci-legacy: stop using of_pci_range_to_resource Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 216/323] powerpc/pseries: extract host bridge from pci_bus prior to bus removal Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 217/323] rtlwifi: 8821ae: upgrade PHY and RF parameters Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 218/323] i2c: sh7760: fix IRQ error path Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 219/323] mwl8k: Fix a double Free in mwl8k_probe_hw Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 220/323] vsock/vmci: log once the failed queue pair allocation Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 221/323] RDMA/i40iw: Fix error unwinding when i40iw_hmc_sd_one fails Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 222/323] net: davinci_emac: Fix incorrect masking of tx and rx error channel Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 223/323] ath9k: Fix error check in ath9k_hw_read_revisions() for PCI devices Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 224/323] powerpc/52xx: Fix an invalid ASM expression (addi used instead of add) Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 225/323] net:emac/emac-mac: Fix a use after free in emac_mac_tx_buf_send Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 226/323] net:nfc:digital: Fix a double free in digital_tg_recv_dep_req Greg Kroah-Hartman
2021-05-20  9:21 ` [PATCH 4.14 227/323] kfifo: fix ternary sign extension bugs Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 228/323] smp: Fix smp_call_function_single_async prototype Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 229/323] Revert "net/sctp: fix race condition in sctp_destroy_sock" Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 230/323] sctp: delay auto_asconf init until binding the first addr Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 231/323] Revert "of/fdt: Make sure no-map does not remove already reserved regions" Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 232/323] Revert "fdt: Properly handle "no-map" field in the memory region" Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 233/323] tpm: fix error return code in tpm2_get_cc_attrs_tbl() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 234/323] fs: dlm: fix debugfs dump Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 235/323] tipc: convert dest nodes address to network order Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 236/323] net: stmmac: Set FIFO sizes for ipq806x Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 237/323] ALSA: hdsp: dont disable if not enabled Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 238/323] ALSA: hdspm: " Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 239/323] ALSA: rme9652: " Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 240/323] Bluetooth: Set CONF_NOT_COMPLETE as l2cap_chan default Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 241/323] Bluetooth: initialize skb_queue_head at l2cap_chan_create() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 242/323] Bluetooth: check for zapped sk before connecting Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 243/323] ip6_vti: proper dev_{hold|put} in ndo_[un]init methods Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 244/323] mac80211: clear the beacons CRC after channel switch Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 245/323] pinctrl: samsung: use int for register masks in Exynos Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 246/323] cuse: prevent clone Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 247/323] selftests: Set CC to clang in lib.mk if LLVM is set Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 248/323] kconfig: nconf: stop endless search loops Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 249/323] sctp: Fix out-of-bounds warning in sctp_process_asconf_param() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 250/323] powerpc/smp: Set numa node before updating mask Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 251/323] ASoC: rt286: Generalize support for ALC3263 codec Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 252/323] samples/bpf: Fix broken tracex1 due to kprobe argument change Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 253/323] powerpc/pseries: Stop calling printk in rtas_stop_self() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 254/323] wl3501_cs: Fix out-of-bounds warnings in wl3501_send_pkt Greg Kroah-Hartman
2021-05-20  9:22 ` Greg Kroah-Hartman [this message]
2021-05-20  9:22 ` [PATCH 4.14 256/323] powerpc/iommu: Annotate nested lock for lockdep Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 257/323] net: ethernet: mtk_eth_soc: fix RX VLAN offload Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 258/323] ASoC: rt286: Make RT286_SET_GPIO_* readable and writable Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 259/323] f2fs: fix a redundant call to f2fs_balance_fs if an error occurs Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 260/323] PCI: Release OF node in pci_scan_device()s error path Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 261/323] ARM: 9064/1: hw_breakpoint: Do not directly check the events overflow_handler hook Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 262/323] rpmsg: qcom_glink_native: fix error return code of qcom_glink_rx_data() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 263/323] NFSv4.2: Always flush out writes in nfs42_proc_fallocate() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 264/323] NFS: Deal correctly with attribute generation counter overflow Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 265/323] pNFS/flexfiles: fix incorrect size check in decode_nfs_fh() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 266/323] NFSv4.2 fix handling of sr_eof in SEEKs reply Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 267/323] rtc: ds1307: Fix wday settings for rx8130 Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 268/323] sctp: fix a SCTP_MIB_CURRESTAB leak in sctp_sf_do_dupcook_b Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 269/323] drm/radeon: Fix off-by-one power_state index heap overwrite Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 270/323] khugepaged: fix wrong result value for trace_mm_collapse_huge_page_isolate() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 271/323] mm/hugeltb: handle the error case in hugetlb_fix_reserve_counts() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 272/323] ksm: fix potential missing rmap_item for stable_node Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 273/323] net: fix nla_strcmp to handle more then one trailing null character Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 274/323] kernel: kexec_file: fix error return code of kexec_calculate_store_digests() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 275/323] netfilter: nftables: avoid overflows in nft_hash_buckets() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 276/323] ARC: entry: fix off-by-one error in syscall number validation Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 277/323] powerpc/64s: Fix crashes when toggling stf barrier Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 278/323] powerpc/64s: Fix crashes when toggling entry flush barrier Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 279/323] squashfs: fix divide error in calculate_skip() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 280/323] userfaultfd: release page in error path to avoid BUG_ON Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 281/323] drm/radeon/dpm: Disable sclk switching on Oland when two 4K 60Hz monitors are connected Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 282/323] iio: proximity: pulsedlight: Fix rumtime PM imbalance on error Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 283/323] usb: fotg210-hcd: Fix an error message Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 284/323] ACPI: scan: Fix a memory leak in an error handling path Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 285/323] blk-mq: Swap two calls in blk_mq_exit_queue() Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 286/323] usb: dwc3: omap: improve extcon initialization Greg Kroah-Hartman
2021-05-20  9:22 ` [PATCH 4.14 287/323] usb: xhci: Increase timeout for HC halt Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 288/323] usb: dwc2: Fix gadget DMA unmap direction Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 289/323] usb: core: hub: fix race condition about TRSMRCY of resume Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 290/323] iio: gyro: mpu3050: Fix reported temperature value Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 291/323] iio: tsl2583: Fix division by a zero lux_val Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 292/323] KVM: x86: Cancel pvclock_gtod_work on module removal Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 293/323] FDDI: defxx: Make MMIO the configuration default except for EISA Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 294/323] MIPS: Reinstate platform `__div64_32 handler Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 295/323] MIPS: Avoid DIVU in `__div64_32 is result would be zero Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 296/323] MIPS: Avoid handcoded DIVU in `__div64_32 altogether Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 297/323] thermal/core/fair share: Lock the thermal zone while looping over instances Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 298/323] RDMA/i40iw: Avoid panic when reading back the IRQ affinity hint Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 299/323] kobject_uevent: remove warning in init_uevent_argv() Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 300/323] netfilter: conntrack: Make global sysctls readonly in non-init netns Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 301/323] clk: exynos7: Mark aclk_fsys1_200 as critical Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 302/323] x86/msr: Fix wr/rdmsr_safe_regs_on_cpu() prototypes Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 303/323] kgdb: fix gcc-11 warning on indentation Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 304/323] usb: sl811-hcd: improve misleading indentation Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 305/323] cxgb4: Fix the -Wmisleading-indentation warning Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 306/323] isdn: capi: fix mismatched prototypes Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 307/323] ARM: 9058/1: cache-v7: refactor v7_invalidate_l1 to avoid clobbering r5/r6 Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 308/323] PCI: thunder: Fix compile testing Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 309/323] ARM: 9066/1: ftrace: pause/unpause function graph tracer in cpu_suspend() Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 310/323] ACPI / hotplug / PCI: Fix reference count leak in enable_slot() Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 311/323] Input: elants_i2c - do not bind to i2c-hid compatible ACPI instantiated devices Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 312/323] Input: silead - add workaround for x86 BIOS-es which bring the chip up in a stuck state Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 313/323] um: Mark all kernel symbols as local Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 314/323] ceph: fix fscache invalidation Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 315/323] gpiolib: acpi: Add quirk to ignore EC wakeups on Dell Venue 10 Pro 5055 Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 316/323] ALSA: hda: generic: change the DAC ctl name for LO+SPK or LO+HP Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 317/323] block: reexpand iov_iter after read/write Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 318/323] lib: stackdepot: turn depot_lock spinlock to raw_spinlock Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 319/323] serial: 8250: fix potential deadlock in rs485-mode Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 320/323] sit: proper dev_{hold|put} in ndo_[un]init methods Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 321/323] ip6_tunnel: " Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 322/323] xhci: Do not use GFP_KERNEL in (potentially) atomic context Greg Kroah-Hartman
2021-05-20  9:23 ` [PATCH 4.14 323/323] ipv6: remove extra dev_hold() for fallback tunnels Greg Kroah-Hartman
2021-05-20 15:24 ` [PATCH 4.14 000/323] 4.14.233-rc1 review Jon Hunter
2021-05-20 22:52 ` Guenter Roeck
2021-05-21  5:55 ` Naresh Kamboju

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=20210520092128.946462830@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=gustavoars@kernel.org \
    --cc=keescook@chromium.org \
    --cc=kvalo@codeaurora.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --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).