stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	Ovidiu Panait <ovidiu.panait@windriver.com>,
	Herbert Xu <herbert@gondor.apana.org.au>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 055/417] crypto: sahara - avoid skcipher fallback code duplication
Date: Mon, 22 Jan 2024 15:53:43 -0800	[thread overview]
Message-ID: <20240122235753.589102345@linuxfoundation.org> (raw)
In-Reply-To: <20240122235751.480367507@linuxfoundation.org>

6.1-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Ovidiu Panait <ovidiu.panait@windriver.com>

[ Upstream commit 01d70a4bbff20ea05cadb4c208841985a7cc6596 ]

Factor out duplicated skcipher fallback handling code to a helper function
sahara_aes_fallback(). Also, keep a single check if fallback is required in
sahara_aes_crypt().

Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Stable-dep-of: d1d6351e37aa ("crypto: sahara - handle zero-length aes requests")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/crypto/sahara.c | 85 ++++++++++++-----------------------------
 1 file changed, 25 insertions(+), 60 deletions(-)

diff --git a/drivers/crypto/sahara.c b/drivers/crypto/sahara.c
index 0b7a95dae9fe..89fd54bc0127 100644
--- a/drivers/crypto/sahara.c
+++ b/drivers/crypto/sahara.c
@@ -649,12 +649,37 @@ static int sahara_aes_setkey(struct crypto_skcipher *tfm, const u8 *key,
 	return crypto_skcipher_setkey(ctx->fallback, key, keylen);
 }
 
+static int sahara_aes_fallback(struct skcipher_request *req, unsigned long mode)
+{
+	struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req);
+	struct sahara_ctx *ctx = crypto_skcipher_ctx(
+		crypto_skcipher_reqtfm(req));
+
+	skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback);
+	skcipher_request_set_callback(&rctx->fallback_req,
+				      req->base.flags,
+				      req->base.complete,
+				      req->base.data);
+	skcipher_request_set_crypt(&rctx->fallback_req, req->src,
+				   req->dst, req->cryptlen, req->iv);
+
+	if (mode & FLAGS_ENCRYPT)
+		return crypto_skcipher_encrypt(&rctx->fallback_req);
+
+	return crypto_skcipher_decrypt(&rctx->fallback_req);
+}
+
 static int sahara_aes_crypt(struct skcipher_request *req, unsigned long mode)
 {
 	struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req);
+	struct sahara_ctx *ctx = crypto_skcipher_ctx(
+		crypto_skcipher_reqtfm(req));
 	struct sahara_dev *dev = dev_ptr;
 	int err = 0;
 
+	if (unlikely(ctx->keylen != AES_KEYSIZE_128))
+		return sahara_aes_fallback(req, mode);
+
 	dev_dbg(dev->device, "nbytes: %d, enc: %d, cbc: %d\n",
 		req->cryptlen, !!(mode & FLAGS_ENCRYPT), !!(mode & FLAGS_CBC));
 
@@ -677,81 +702,21 @@ static int sahara_aes_crypt(struct skcipher_request *req, unsigned long mode)
 
 static int sahara_aes_ecb_encrypt(struct skcipher_request *req)
 {
-	struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req);
-	struct sahara_ctx *ctx = crypto_skcipher_ctx(
-		crypto_skcipher_reqtfm(req));
-
-	if (unlikely(ctx->keylen != AES_KEYSIZE_128)) {
-		skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback);
-		skcipher_request_set_callback(&rctx->fallback_req,
-					      req->base.flags,
-					      req->base.complete,
-					      req->base.data);
-		skcipher_request_set_crypt(&rctx->fallback_req, req->src,
-					   req->dst, req->cryptlen, req->iv);
-		return crypto_skcipher_encrypt(&rctx->fallback_req);
-	}
-
 	return sahara_aes_crypt(req, FLAGS_ENCRYPT);
 }
 
 static int sahara_aes_ecb_decrypt(struct skcipher_request *req)
 {
-	struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req);
-	struct sahara_ctx *ctx = crypto_skcipher_ctx(
-		crypto_skcipher_reqtfm(req));
-
-	if (unlikely(ctx->keylen != AES_KEYSIZE_128)) {
-		skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback);
-		skcipher_request_set_callback(&rctx->fallback_req,
-					      req->base.flags,
-					      req->base.complete,
-					      req->base.data);
-		skcipher_request_set_crypt(&rctx->fallback_req, req->src,
-					   req->dst, req->cryptlen, req->iv);
-		return crypto_skcipher_decrypt(&rctx->fallback_req);
-	}
-
 	return sahara_aes_crypt(req, 0);
 }
 
 static int sahara_aes_cbc_encrypt(struct skcipher_request *req)
 {
-	struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req);
-	struct sahara_ctx *ctx = crypto_skcipher_ctx(
-		crypto_skcipher_reqtfm(req));
-
-	if (unlikely(ctx->keylen != AES_KEYSIZE_128)) {
-		skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback);
-		skcipher_request_set_callback(&rctx->fallback_req,
-					      req->base.flags,
-					      req->base.complete,
-					      req->base.data);
-		skcipher_request_set_crypt(&rctx->fallback_req, req->src,
-					   req->dst, req->cryptlen, req->iv);
-		return crypto_skcipher_encrypt(&rctx->fallback_req);
-	}
-
 	return sahara_aes_crypt(req, FLAGS_ENCRYPT | FLAGS_CBC);
 }
 
 static int sahara_aes_cbc_decrypt(struct skcipher_request *req)
 {
-	struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req);
-	struct sahara_ctx *ctx = crypto_skcipher_ctx(
-		crypto_skcipher_reqtfm(req));
-
-	if (unlikely(ctx->keylen != AES_KEYSIZE_128)) {
-		skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback);
-		skcipher_request_set_callback(&rctx->fallback_req,
-					      req->base.flags,
-					      req->base.complete,
-					      req->base.data);
-		skcipher_request_set_crypt(&rctx->fallback_req, req->src,
-					   req->dst, req->cryptlen, req->iv);
-		return crypto_skcipher_decrypt(&rctx->fallback_req);
-	}
-
 	return sahara_aes_crypt(req, FLAGS_CBC);
 }
 
-- 
2.43.0




  parent reply	other threads:[~2024-01-23  0:42 UTC|newest]

Thread overview: 423+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-22 23:52 [PATCH 6.1 000/417] 6.1.75-rc1 review Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 001/417] x86/lib: Fix overflow when counting digits Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 002/417] x86/mce/inject: Clear test status value Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 003/417] EDAC/thunderx: Fix possible out-of-bounds string access Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 004/417] powerpc: remove checks for binutils older than 2.25 Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 005/417] powerpc: add crtsavres.o to always-y instead of extra-y Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 006/417] powerpc/44x: select I2C for CURRITUCK Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 007/417] powerpc/pseries/memhp: Fix access beyond end of drmem array Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 008/417] selftests/powerpc: Fix error handling in FPU/VMX preemption tests Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 009/417] powerpc/powernv: Add a null pointer check to scom_debug_init_one() Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 010/417] powerpc/powernv: Add a null pointer check in opal_event_init() Greg Kroah-Hartman
2024-01-22 23:52 ` [PATCH 6.1 011/417] powerpc/powernv: Add a null pointer check in opal_powercap_init() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 012/417] powerpc/imc-pmu: Add a null pointer check in update_events_in_group() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 013/417] spi: spi-zynqmp-gqspi: fix driver kconfig dependencies Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 014/417] mtd: rawnand: Increment IFC_TIMEOUT_MSECS for nand controller response Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 015/417] ACPI: video: check for error while searching for backlight device parent Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 016/417] ACPI: LPIT: Avoid u32 multiplication overflow Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 017/417] KEYS: encrypted: Add check for strsep Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 018/417] platform/x86/intel/vsec: Enhance and Export intel_vsec_add_aux() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 019/417] platform/x86/intel/vsec: Support private data Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 020/417] platform/x86/intel/vsec: Use mutex for ida_alloc() and ida_free() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 021/417] platform/x86/intel/vsec: Fix xa_alloc memory leak Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 022/417] of: Add of_property_present() helper Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 023/417] cpufreq: Use of_property_present() for testing DT property presence Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 024/417] cpufreq: scmi: process the result of devm_of_clk_add_hw_provider() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 025/417] calipso: fix memory leak in netlbl_calipso_add_pass() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 026/417] efivarfs: force RO when remounting if SetVariable is not supported Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 027/417] efivarfs: Free s_fs_info on unmount Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 028/417] spi: sh-msiof: Enforce fixed DTDL for R-Car H3 Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 029/417] ACPI: LPSS: Fix the fractional clock divider flags Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 030/417] ACPI: extlog: Clear Extended Error Log status when RAS_CEC handled the error Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 031/417] kunit: debugfs: Fix unchecked dereference in debugfs_print_results() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 032/417] mtd: Fix gluebi NULL pointer dereference caused by ftl notifier Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 033/417] selinux: Fix error priority for bind with AF_UNSPEC on PF_INET6 socket Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 034/417] crypto: virtio - Handle dataq logic with tasklet Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 035/417] crypto: sa2ul - Return crypto_aead_setkey to transfer the error Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 036/417] crypto: ccp - fix memleak in ccp_init_dm_workarea Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 037/417] crypto: af_alg - Disallow multiple in-flight AIO requests Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 038/417] crypto: safexcel - Add error handling for dma_map_sg() calls Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 039/417] crypto: sahara - remove FLAGS_NEW_KEY logic Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 040/417] crypto: sahara - fix cbc selftest failure Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 041/417] crypto: sahara - fix ahash " Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 042/417] crypto: sahara - fix processing requests with cryptlen < sg->length Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 043/417] crypto: sahara - fix error handling in sahara_hw_descriptor_create() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 044/417] crypto: hisilicon/qm - save capability registers in qm init process Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 045/417] crypto: hisilicon/zip - add zip comp high perf mode configuration Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 046/417] crypto: hisilicon/qm - add a function to set qm algs Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 047/417] crypto: hisilicon/hpre - save capability registers in probe process Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 048/417] crypto: hisilicon/sec2 " Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 049/417] crypto: hisilicon/zip " Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 050/417] pstore: ram_core: fix possible overflow in persistent_ram_init_ecc() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 051/417] erofs: fix memory leak on short-lived bounced pages Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 052/417] fs: indicate request originates from old mount API Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 053/417] gfs2: Fix kernel NULL pointer dereference in gfs2_rgrp_dump Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 054/417] crypto: virtio - Wait for tasklet to complete on device remove Greg Kroah-Hartman
2024-01-22 23:53 ` Greg Kroah-Hartman [this message]
2024-01-22 23:53 ` [PATCH 6.1 056/417] crypto: sahara - handle zero-length aes requests Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 057/417] crypto: sahara - fix ahash reqsize Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 058/417] crypto: sahara - fix wait_for_completion_timeout() error handling Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 059/417] crypto: sahara - improve error handling in sahara_sha_process() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 060/417] crypto: sahara - fix processing hash requests with req->nbytes < sg->length Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 061/417] crypto: sahara - do not resize req->src when doing hash operations Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 062/417] crypto: scomp - fix req->dst buffer overflow Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 063/417] csky: fix arch_jump_label_transform_static override Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 064/417] blocklayoutdriver: Fix reference leak of pnfs_device_node Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 065/417] NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 066/417] SUNRPC: fix _xprt_switch_find_current_entry logic Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 067/417] pNFS: Fix the pnfs block drivers calculation of layoutget size Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 068/417] wifi: plfxlc: check for allocation failure in plfxlc_usb_wreq_async() Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 069/417] wifi: rtw88: fix RX filter in FIF_ALLMULTI flag Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 070/417] bpf, lpm: Fix check prefixlen before walking trie Greg Kroah-Hartman
2024-01-22 23:53 ` [PATCH 6.1 071/417] bpf: Add crosstask check to __bpf_get_stack Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 072/417] wifi: ath11k: Defer on rproc_get failure Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 073/417] wifi: libertas: stop selecting wext Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 074/417] ARM: dts: qcom: apq8064: correct XOADC register address Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 075/417] net/ncsi: Fix netlink major/minor version numbers Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 076/417] firmware: ti_sci: Fix an off-by-one in ti_sci_debugfs_create() Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 077/417] firmware: meson_sm: populate platform devices from sm device tree data Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 078/417] wifi: rtlwifi: rtl8821ae: phy: fix an undefined bitwise shift behavior Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 079/417] arm64: dts: ti: k3-am62a-main: Fix GPIO pin count in DT nodes Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 080/417] arm64: dts: ti: k3-am65-main: Fix DSS irq trigger type Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 081/417] selftests/bpf: Fix erroneous bitmask operation Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 082/417] md: synchronize flush io with array reconfiguration Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 083/417] bpf: enforce precision of R0 on callback return Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 084/417] ARM: dts: qcom: sdx65: correct SPMI node name Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 085/417] arm64: dts: qcom: sc7180: Make watchdog bark interrupt edge triggered Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 086/417] arm64: dts: qcom: sc7280: Mark some nodes as reserved Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 087/417] arm64: dts: qcom: sc7280: Make watchdog bark interrupt edge triggered Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 088/417] arm64: dts: qcom: sdm845: " Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 089/417] arm64: dts: qcom: sm8150: " Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 090/417] arm64: dts: qcom: sm8250: " Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 091/417] arm64: dts: qcom: sc8280xp: " Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 092/417] arm64: dts: qcom: sm6350: " Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 093/417] rcu-tasks: Provide rcu_trace_implies_rcu_gp() Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 094/417] bpf: add percpu stats for bpf_map elements insertions/deletions Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 095/417] bpf: Add map and need_defer parameters to .map_fd_put_ptr() Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 096/417] bpf: Defer the free of inner map when necessary Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 097/417] selftests/net: specify the interface when do arping Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 098/417] bpf: fix check for attempt to corrupt spilled pointer Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 099/417] scsi: fnic: Return error if vmalloc() failed Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 100/417] arm64: dts: qcom: qrb5165-rb5: correct LED panic indicator Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 101/417] arm64: dts: qcom: sdm845-db845c: " Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 102/417] arm64: dts: qcom: sm8350: Fix DMA0 address Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 103/417] arm64: dts: qcom: sc7280: Fix up GPU SIDs Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 104/417] arm64: dts: qcom: sc7280: Mark Adreno SMMU as DMA coherent Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 105/417] arm64: dts: qcom: sc7280: fix usb_2 wakeup interrupt types Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 106/417] wifi: mt76: mt7921s: fix workqueue problem causes STA association fail Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 107/417] bpf: Fix verification of indirect var-off stack access Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 108/417] arm64: dts: hisilicon: hikey970-pmic: fix regulator cells properties Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 109/417] dt-bindings: media: mediatek: mdp3: correct RDMA and WROT node with generic names Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 110/417] arm64: dts: mediatek: mt8183: correct MDP3 DMA-related nodes Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 111/417] wifi: mt76: mt7921: fix country count limitation for CLC Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 112/417] selftests/bpf: Relax time_tai test for equal timestamps in tai_forward Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 113/417] block: Set memalloc_noio to false on device_add_disk() error path Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 114/417] arm64: dts: renesas: white-hawk-cpu: Fix missing serial console pin control Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 115/417] arm64: dts: imx8mm: Reduce GPU to nominal speed Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 116/417] scsi: hisi_sas: Replace with standard error code return value Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 117/417] scsi: hisi_sas: Rollback some operations if FLR failed Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 118/417] scsi: hisi_sas: Correct the number of global debugfs registers Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 119/417] ARM: dts: stm32: dont mix SCMI and non-SCMI board compatibles Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 120/417] selftests/net: fix grep checking for fib_nexthop_multiprefix Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 121/417] ipmr: support IP_PKTINFO on cache report IGMP msg Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 122/417] virtio/vsock: fix logic which reduces credit update messages Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 123/417] dma-mapping: clear dev->dma_mem to NULL after freeing it Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 124/417] soc: qcom: llcc: Fix dis_cap_alloc and retain_on_pc configuration Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 125/417] arm64: dts: qcom: sm8150-hdk: fix SS USB regulators Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 126/417] block: add check of minors and first_minor in device_add_disk() Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 127/417] arm64: dts: qcom: sc7280: Mark SDHCI hosts as cache-coherent Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 128/417] arm64: dts: qcom: ipq6018: fix clock rates for GCC_USB0_MOCK_UTMI_CLK Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 129/417] arm64: dts: qcom: ipq6018: improve pcie phy pcs reg table Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 130/417] arm64: dts: qcom: ipq6018: Use lowercase hex Greg Kroah-Hartman
2024-01-22 23:54 ` [PATCH 6.1 131/417] arm64: dts: qcom: ipq6018: Pad addresses to 8 hex digits Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 132/417] arm64: dts: qcom: ipq6018: Fix up indentation Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 133/417] wifi: rtlwifi: add calculate_bit_shift() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 134/417] wifi: rtlwifi: rtl8188ee: phy: using calculate_bit_shift() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 135/417] wifi: rtlwifi: rtl8192c: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 136/417] wifi: rtlwifi: rtl8192cu: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 137/417] wifi: rtlwifi: rtl8192ce: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 138/417] wifi: rtlwifi: rtl8192de: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 139/417] wifi: rtlwifi: rtl8192ee: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 140/417] wifi: rtlwifi: rtl8192se: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 141/417] wifi: iwlwifi: mvm: set siso/mimo chains to 1 in FW SMPS request Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 142/417] wifi: iwlwifi: mvm: send TX path flush in rfkill Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 143/417] netfilter: nf_tables: mark newset as dead on transaction abort Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 144/417] Bluetooth: Fix bogus check for re-auth no supported with non-ssp Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 145/417] Bluetooth: btmtkuart: fix recv_buf() return value Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 146/417] block: make BLK_DEF_MAX_SECTORS unsigned Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 147/417] null_blk: dont cap max_hw_sectors to BLK_DEF_MAX_SECTORS Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 148/417] bpf: sockmap, fix proto update hook to avoid dup calls Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 149/417] sctp: support MSG_ERRQUEUE flag in recvmsg() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 150/417] sctp: fix busy polling Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 151/417] net/sched: act_ct: fix skb leak and crash on ooo frags Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 152/417] mlxbf_gige: Fix intermittent no ip issue Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 153/417] mlxbf_gige: Enable the GigE port in mlxbf_gige_open Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 154/417] ip6_tunnel: fix NEXTHDR_FRAGMENT handling in ip6_tnl_parse_tlv_enc_lim() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 155/417] ARM: davinci: always select CONFIG_CPU_ARM926T Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 156/417] Revert "drm/tidss: Annotate dma-fence critical section in commit path" Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 157/417] Revert "drm/omapdrm: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 158/417] drm/panfrost: Really power off GPU cores in panfrost_gpu_power_off() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 159/417] RDMA/usnic: Silence uninitialized symbol smatch warnings Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 160/417] RDMA/hns: Fix inappropriate err code for unsupported operations Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 161/417] drm/panel-elida-kd35t133: hold panel in reset for unprepare Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 162/417] drm/nouveau/fence:: fix warning directly dereferencing a rcu pointer Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 163/417] drm/bridge: tpd12s015: Drop buggy __exit annotation for remove function Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 164/417] drm/tilcdc: Fix irq free on unload Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 165/417] media: pvrusb2: fix use after free on context disconnection Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 166/417] media: mtk-jpegdec: export jpeg decoder functions Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 167/417] media: mtk-jpeg: Remove cancel worker in mtk_jpeg_remove to avoid the crash of multi-core JPEG devices Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 168/417] media: verisilicon: Hook the (TRY_)DECODER_CMD stateless ioctls Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 169/417] media: rkvdec: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 170/417] drm/bridge: Fix typo in post_disable() description Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 171/417] f2fs: fix to avoid dirent corruption Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 172/417] drm/radeon/r600_cs: Fix possible int overflows in r600_cs_check_reg() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 173/417] drm/radeon/r100: Fix integer overflow issues in r100_cs_track_check() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 174/417] drm/radeon: check return value of radeon_ring_lock() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 175/417] drm/tidss: Move reset to the end of dispc_init() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 176/417] drm/tidss: Return error value from from softreset Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 177/417] drm/tidss: Check for K2G in in dispc_softreset() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 178/417] drm/tidss: Fix dss reset Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 179/417] ASoC: cs35l33: Fix GPIO name and drop legacy include Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 180/417] ASoC: cs35l34: " Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 181/417] drm/msm/mdp4: flush vblank event on disable Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 182/417] drm/msm/dsi: Use pm_runtime_resume_and_get to prevent refcnt leaks Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 183/417] drm/drv: propagate errors from drm_modeset_register_all() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 184/417] ASoC: Intel: glk_rt5682_max98357a: fix board id mismatch Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 185/417] drm/panfrost: Ignore core_mask for poweroff and disable PWRTRANS irq Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 186/417] drm/radeon: check the alloc_workqueue return value in radeon_crtc_init() Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 187/417] drm/radeon/dpm: fix a memleak in sumo_parse_power_table Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 188/417] drm/radeon/trinity_dpm: fix a memleak in trinity_parse_power_table Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 189/417] drm/bridge: cdns-mhdp8546: Fix use of uninitialized variable Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 190/417] drm/bridge: tc358767: Fix return value on error case Greg Kroah-Hartman
2024-01-22 23:55 ` [PATCH 6.1 191/417] media: cx231xx: fix a memleak in cx231xx_init_isoc Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 192/417] RDMA/hns: Fix memory leak in free_mr_init() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 193/417] clk: qcom: gpucc-sm8150: Update the gpu_cc_pll1 config Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 194/417] media: imx-mipi-csis: Fix clock handling in remove() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 195/417] media: dt-bindings: media: rkisp1: Fix the port description for the parallel interface Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 196/417] media: rkisp1: Fix media device memory leak Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 197/417] drm/panel: st7701: Fix AVCL calculation Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 198/417] f2fs: fix to wait on block writeback for post_read case Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 199/417] f2fs: fix to check compress file in f2fs_move_file_range() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 200/417] f2fs: fix to update iostat correctly in f2fs_filemap_fault() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 201/417] media: dvbdev: drop refcount on error path in dvb_device_open() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 202/417] media: dvb-frontends: m88ds3103: Fix a memory leak in an error handling path of m88ds3103_probe() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 203/417] clk: renesas: rzg2l-cpg: Reuse code in rzg2l_cpg_reset() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 204/417] clk: renesas: rzg2l: Check reset monitor registers Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 205/417] drm/msm/dpu: Set input_sel bit for INTF Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 206/417] drm/msm/dpu: Drop enable and frame_count parameters from dpu_hw_setup_misr() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 207/417] drm/mediatek: Return error if MDP RDMA failed to enable the clock Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 208/417] drm/mediatek: Fix underrun in VDO1 when switches off the layer Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 209/417] drm/amdgpu/debugfs: fix error code when smc register accessors are NULL Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 210/417] drm/amd/pm: fix a double-free in si_dpm_init Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 211/417] drivers/amd/pm: fix a use-after-free in kv_parse_power_table Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 212/417] gpu/drm/radeon: fix two memleaks in radeon_vm_init Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 213/417] drm/amd/pm: fix a double-free in amdgpu_parse_extended_power_table Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 214/417] f2fs: fix to check return value of f2fs_recover_xattr_data Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 215/417] dt-bindings: clock: Update the videocc resets for sm8150 Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 216/417] clk: qcom: videocc-sm8150: Update the videocc resets Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 217/417] clk: qcom: videocc-sm8150: Add missing PLL config property Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 218/417] drivers: clk: zynqmp: calculate closest mux rate Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 219/417] drivers: clk: zynqmp: update divider round rate logic Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 220/417] watchdog: set cdev owner before adding Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 221/417] watchdog/hpwdt: Only claim UNKNOWN NMI if from iLO Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 222/417] watchdog: bcm2835_wdt: Fix WDIOC_SETTIMEOUT handling Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 223/417] watchdog: rti_wdt: Drop runtime pm reference count when watchdog is unused Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 224/417] clk: si5341: fix an error code problem in si5341_output_clk_set_rate Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 225/417] drm/mediatek: dp: Add phy_mtk_dp module as pre-dependency Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 226/417] accel/habanalabs: fix information leak in sec_attest_info() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 227/417] clk: fixed-rate: fix clk_hw_register_fixed_rate_with_accuracy_parent_hw Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 228/417] pwm: stm32: Use regmap_clear_bits and regmap_set_bits where applicable Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 229/417] pwm: stm32: Use hweight32 in stm32_pwm_detect_channels Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 230/417] pwm: stm32: Fix enable count for clk in .probe() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 231/417] ASoC: rt5645: Drop double EF20 entry from dmi_platform_data[] Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 232/417] ALSA: scarlett2: Add missing error check to scarlett2_config_save() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 233/417] ALSA: scarlett2: Add missing error check to scarlett2_usb_set_config() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 234/417] ALSA: scarlett2: Allow passing any output to line_out_remap() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 235/417] ALSA: scarlett2: Add missing error checks to *_ctl_get() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 236/417] ALSA: scarlett2: Add clamp() in scarlett2_mixer_ctl_put() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 237/417] mmc: sdhci_am654: Fix TI SoC dependencies Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 238/417] mmc: sdhci_omap: " Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 239/417] IB/iser: Prevent invalidating wrong MR Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 240/417] drm/amdkfd: Confirm list is non-empty before utilizing list_first_entry in kfd_topology.c Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 241/417] drm/amd/pm/smu7: fix a memleak in smu7_hwmgr_backend_init Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 242/417] kselftest/alsa - mixer-test: fix the number of parameters to ksft_exit_fail_msg() Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 243/417] kselftest/alsa - mixer-test: Fix the print format specifier warning Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 244/417] ksmbd: validate the zero field of packet header Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 245/417] of: Fix double free in of_parse_phandle_with_args_map Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 246/417] fbdev: imxfb: fix left margin setting Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 247/417] of: unittest: Fix of_count_phandle_with_args() expected value message Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 248/417] selftests/bpf: Add assert for user stacks in test_task_stack Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 249/417] keys, dns: Fix size check of V1 server-list header Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 250/417] binder: fix async space check for 0-sized buffers Greg Kroah-Hartman
2024-01-22 23:56 ` [PATCH 6.1 251/417] binder: fix unused alloc->free_async_space Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 252/417] mips/smp: Call rcutree_report_cpu_starting() earlier Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 253/417] Input: atkbd - use ab83 as id when skipping the getid command Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 254/417] xen-netback: dont produce zero-size SKB frags Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 255/417] binder: fix race between mmput() and do_exit() Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 256/417] clocksource/drivers/timer-ti-dm: Fix make W=n kerneldoc warnings Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 257/417] powerpc/64s: Increase default stack size to 32KB Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 258/417] tick-sched: Fix idle and iowait sleeptime accounting vs CPU hotplug Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 259/417] usb: phy: mxs: remove CONFIG_USB_OTG condition for mxs_phy_is_otg_host() Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 260/417] usb: dwc: ep0: Update request status in dwc3_ep0_stall_restart Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 261/417] Revert "usb: dwc3: Soft reset phy on probe for host" Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 262/417] Revert "usb: dwc3: dont reset device side if dwc3 was configured as host-only" Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 263/417] usb: chipidea: wait controller resume finished for wakeup irq Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 264/417] usb: cdns3: fix uvc failure work since sg support enabled Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 265/417] usb: cdns3: fix iso transfer error when mult is not zero Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 266/417] usb: cdns3: Fix uvc fail when DMA cross 4k boundery since sg enabled Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 267/417] Revert "usb: typec: class: fix typec_altmode_put_partner to put plugs" Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 268/417] usb: typec: class: fix typec_altmode_put_partner to put plugs Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 269/417] usb: mon: Fix atomicity violation in mon_bin_vma_fault Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 270/417] serial: core: fix sanitizing check for RTS settings Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 271/417] serial: core: make sure RS485 cannot be enabled when it is not supported Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 272/417] serial: 8250_bcm2835aux: Restore clock error handling Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 273/417] serial: core, imx: do not set RS485 enabled if it is not supported Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 274/417] serial: imx: Ensure that imx_uart_rs485_config() is called with enabled clock Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 275/417] serial: 8250_exar: Set missing rs485_supported flag Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 276/417] serial: omap: do not override settings for RS485 support Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 277/417] drm/vmwgfx: Fix possible invalid drm gem put calls Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 278/417] drm/vmwgfx: Keep a gem reference to user bos in surfaces Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 279/417] ALSA: oxygen: Fix right channel of capture volume mixer Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 280/417] ALSA: hda/relatek: Enable Mute LED on HP Laptop 15s-fq2xxx Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 281/417] ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on HP ZBook Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 282/417] ALSA: hda/realtek: Enable headset mic on Lenovo M70 Gen5 Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 283/417] ksmbd: validate mech token in session setup Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 284/417] ksmbd: fix UAF issue in ksmbd_tcp_new_connection() Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 285/417] ksmbd: only v2 leases handle the directory Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 286/417] io_uring/rw: ensure io->bytes_done is always initialized Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 287/417] fbdev: flush deferred work in fb_deferred_io_fsync() Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 288/417] fbdev: flush deferred IO before closing Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 289/417] scsi: ufs: core: Simplify power management during async scan Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 290/417] scsi: target: core: add missing file_{start,end}_write() Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 291/417] scsi: mpi3mr: Refresh sdev queue depth after controller reset Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 292/417] scsi: mpi3mr: Block PEL Enable Command on Controller Reset and Unrecoverable State Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 293/417] md: bypass block throttle for superblock update Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 294/417] drm/amd: Enable PCIe PME from D3 Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 295/417] block: add check that partition length needs to be aligned with block size Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 296/417] block: Fix iterating over an empty bio with bio_for_each_folio_all Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 297/417] netfilter: nf_tables: check if catch-all set element is active in next generation Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 298/417] pwm: jz4740: Dont use dev_err_probe() in .request() Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 299/417] pwm: Fix out-of-bounds access in of_pwm_single_xlate() Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 300/417] md/raid1: Use blk_opf_t for read and write operations Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 301/417] rootfs: Fix support for rootfstype= when root= is given Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 302/417] Bluetooth: Fix atomicity violation in {min,max}_key_size_set Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 303/417] bpf: Fix re-attachment branch in bpf_tracing_prog_attach Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 304/417] LoongArch: Fix and simplify fcsr initialization on execve() Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 305/417] iommu/arm-smmu-qcom: Add missing GMU entry to match table Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 306/417] iommu/dma: Trace bounce buffer usage when mapping buffers Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 307/417] wifi: mt76: fix broken precal loading from MTD for mt7915 Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 308/417] wifi: rtlwifi: Remove bogus and dangerous ASPM disable/enable code Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 309/417] wifi: rtlwifi: Convert LNKCTL change to PCIe cap RMW accessors Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 310/417] wifi: mwifiex: configure BSSID consistently when starting AP Greg Kroah-Hartman
2024-01-22 23:57 ` [PATCH 6.1 311/417] Revert "net: rtnetlink: Enslave device before bringing it up" Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 312/417] cxl/port: Fix decoder initialization when nr_targets > interleave_ways Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 313/417] PCI/P2PDMA: Remove reference to pci_p2pdma_map_sg() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 314/417] PCI: dwc: endpoint: Fix dw_pcie_ep_raise_msix_irq() alignment support Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 315/417] PCI: mediatek: Clear interrupt status before dispatching handler Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 316/417] x86/kvm: Do not try to disable kvmclock if it was not enabled Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 317/417] KVM: arm64: vgic-v4: Restore pending state on host userspace write Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 318/417] KVM: arm64: vgic-its: Avoid potential UAF in LPI translation cache Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 319/417] iio: adc: ad7091r: Pass iio_dev to event handler Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 320/417] HID: wacom: Correct behavior when processing some confidence == false touches Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 321/417] serial: sc16is7xx: add check for unsupported SPI modes during probe Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 322/417] serial: sc16is7xx: set safe default SPI clock frequency Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 323/417] ARM: 9330/1: davinci: also select PINCTRL Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 324/417] mfd: syscon: Fix null pointer dereference in of_syscon_register() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 325/417] leds: aw2013: Select missing dependency REGMAP_I2C Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 326/417] mfd: intel-lpss: Fix the fractional clock divider flags Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 327/417] mips: dmi: Fix early remap on MIPS32 Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 328/417] mips: Fix incorrect max_low_pfn adjustment Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 329/417] riscv: Check if the code to patch lies in the exit section Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 330/417] riscv: Fix module_alloc() that did not reset the linear mapping permissions Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 331/417] riscv: Fix set_memory_XX() and set_direct_map_XX() by splitting huge linear mappings Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 332/417] riscv: Fix set_direct_map_default_noflush() to reset _PAGE_EXEC Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 333/417] riscv: Fixed wrong register in XIP_FIXUP_FLASH_OFFSET macro Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 334/417] MIPS: Alchemy: Fix an out-of-bound access in db1200_dev_setup() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 335/417] MIPS: Alchemy: Fix an out-of-bound access in db1550_dev_setup() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 336/417] power: supply: cw2015: correct time_to_empty units in sysfs Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 337/417] power: supply: bq256xx: fix some problem in bq256xx_hw_init Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 338/417] serial: 8250: omap: Dont skip resource freeing if pm_runtime_resume_and_get() failed Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 339/417] libapi: Add missing linux/types.h header to get the __u64 type on io.h Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 340/417] usb: core: Allow subclassed USB drivers to override usb_choose_configuration() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 341/417] r8152: Choose our USB config with choose_configuration() rather than probe() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 342/417] base/node.c: initialize the accessor list before registering Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 343/417] acpi: property: Let args be NULL in __acpi_node_get_property_reference Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 344/417] software node: Let args be NULL in software_node_get_reference_args Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 345/417] serial: imx: fix tx statemachine deadlock Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 346/417] selftests/sgx: Fix uninitialized pointer dereference in error path Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 347/417] selftests/sgx: Fix uninitialized pointer dereferences in encl_get_entry Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 348/417] selftests/sgx: Include memory clobber for inline asm in test enclave Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 349/417] selftests/sgx: Skip non X86_64 platform Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 350/417] iio: adc: ad9467: fix reset gpio handling Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 351/417] iio: adc: ad9467: dont ignore error codes Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 352/417] iio: adc: ad9467: fix scale setting Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 353/417] perf header: Fix one memory leakage in perf_event__fprintf_event_update() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 354/417] perf hisi-ptt: Fix one memory leakage in hisi_ptt_process_auxtrace_event() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 355/417] perf genelf: Set ELF program header addresses properly Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 356/417] tty: change tty_write_lock()s ndelay parameter to bool Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 357/417] tty: early return from send_break() on TTY_DRIVER_HARDWARE_BREAK Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 358/417] tty: dont check for signal_pending() in send_break() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 359/417] tty: use if in send_break() instead of goto Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 360/417] usb: cdc-acm: return correct error code on unsupported break Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 361/417] usb: core: Fix crash w/ usb_choose_configuration() if no driver Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 362/417] spmi: mtk-pmif: Serialize PMIF status check and command submission Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 363/417] vdpa: Fix an error handling path in eni_vdpa_probe() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 364/417] nvmet-tcp: Fix a kernel panic when host sends an invalid H2C PDU length Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 365/417] nvmet-tcp: fix a crash in nvmet_req_complete() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 366/417] perf env: Avoid recursively taking env->bpf_progs.lock Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 367/417] cxl/region: fix x9 interleave typo Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 368/417] apparmor: avoid crash when parsed profile name is empty Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 369/417] usb: xhci-mtk: fix a short packet issue of gen1 isoc-in transfer Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 370/417] serial: imx: Correct clock error message in function probe() Greg Kroah-Hartman
2024-01-22 23:58 ` [PATCH 6.1 371/417] nvmet: re-fix tracing strncpy() warning Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 372/417] nvme: trace: avoid memcpy overflow warning Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 373/417] nvmet-tcp: Fix the H2C expected PDU len calculation Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 374/417] PCI: keystone: Fix race condition when initializing PHYs Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 375/417] PCI: mediatek-gen3: Fix translation window size calculation Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 376/417] ASoC: mediatek: sof-common: Add NULL check for normal_link string Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 377/417] s390/pci: fix max size calculation in zpci_memcpy_toio() Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 378/417] net: qualcomm: rmnet: fix global oob in rmnet_policy Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 379/417] net: ethernet: ti: am65-cpsw: Fix max mtu to fit ethernet frames Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 380/417] amt: do not use overwrapped cb area Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 381/417] net: phy: micrel: populate .soft_reset for KSZ9131 Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 382/417] mptcp: mptcp_parse_option() fix for MPTCPOPT_MP_JOIN Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 383/417] mptcp: strict validation before using mp_opt->hmac Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 384/417] mptcp: use OPTION_MPTCP_MPJ_SYNACK in subflow_finish_connect() Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 385/417] mptcp: use OPTION_MPTCP_MPJ_SYN in subflow_check_req() Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 386/417] mptcp: refine opt_mp_capable determination Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 387/417] block: ensure we hold a queue reference when using queue limits Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 388/417] udp: annotate data-races around up->pending Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 389/417] net: ravb: Fix dma_addr_t truncation in error case Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 390/417] dt-bindings: gpio: xilinx: Fix node address in gpio Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 391/417] drm/amdkfd: Use resource_size() helper function Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 392/417] drm/amdkfd: fixes for HMM mem allocation Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 393/417] net: stmmac: ethtool: Fixed calltrace caused by unbalanced disable_irq_wake calls Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 394/417] bpf: Reject variable offset alu on PTR_TO_FLOW_KEYS Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 395/417] net: dsa: vsc73xx: Add null pointer check to vsc73xx_gpio_probe Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 396/417] LoongArch: BPF: Prevent out-of-bounds memory access Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 397/417] mptcp: relax check on MPC passive fallback Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 398/417] netfilter: nf_tables: reject invalid set policy Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 399/417] netfilter: nft_limit: do not ignore unsupported flags Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 400/417] netfilter: nfnetlink_log: use proper helper for fetching physinif Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 401/417] netfilter: nf_queue: remove excess nf_bridge variable Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 402/417] netfilter: propagate net to nf_bridge_get_physindev Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 403/417] netfilter: bridge: replace physindev with physinif in nf_bridge_info Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 404/417] netfilter: nf_tables: do not allow mismatch field size and set key length Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 405/417] netfilter: nf_tables: skip dead set elements in netlink dump Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 406/417] netfilter: nf_tables: reject NFT_SET_CONCAT with not field length description Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 407/417] ipvs: avoid stat macros calls from preemptible context Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 408/417] kdb: Fix a potential buffer overflow in kdb_local() Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 409/417] ethtool: netlink: Add missing ethnl_ops_begin/complete Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 410/417] loop: fix the the direct I/O support check when used on top of block devices Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 411/417] mlxsw: spectrum_acl_erp: Fix error flow of pool allocation failure Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 412/417] selftests: mlxsw: qos_pfc: Adjust the test to support 8 lanes Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 413/417] ipv6: mcast: fix data-race in ipv6_mc_down / mld_ifc_work Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 414/417] i2c: s3c24xx: fix read transfers in polling mode Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 415/417] i2c: s3c24xx: fix transferring more than one message " Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 416/417] block: Remove special-casing of compound pages Greg Kroah-Hartman
2024-01-22 23:59 ` [PATCH 6.1 417/417] riscv: Fix wrong usage of lm_alias() when splitting a huge linear mapping Greg Kroah-Hartman
2024-01-23  1:49 ` [PATCH 6.1 000/417] 6.1.75-rc1 review SeongJae Park
2024-01-23 15:41 ` Jon Hunter
2024-01-23 17:23 ` Allen
2024-01-23 18:54 ` Sven Joachim
2024-01-24  9:27 ` Yann Sionneau

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=20240122235753.589102345@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=herbert@gondor.apana.org.au \
    --cc=ovidiu.panait@windriver.com \
    --cc=patches@lists.linux.dev \
    --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).