public inbox for stable@vger.kernel.org
 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,
	Tasmiya Nalatwad <tasmiya@linux.vnet.ibm.com>,
	Ignat Korchagin <ignat@cloudflare.com>,
	Herbert Xu <herbert@gondor.apana.org.au>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 231/328] crypto: testmgr - populate RSA CRT parameters in RSA test vectors
Date: Tue, 11 Mar 2025 16:00:01 +0100	[thread overview]
Message-ID: <20250311145724.087666794@linuxfoundation.org> (raw)
In-Reply-To: <20250311145714.865727435@linuxfoundation.org>

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

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

From: Ignat Korchagin <ignat@cloudflare.com>

[ Upstream commit 79e6e2f3f3ff345947075341781e900e4f70db81 ]

Changes from v1:
  * replace some accidental spaces with tabs

In commit f145d411a67e ("crypto: rsa - implement Chinese Remainder Theorem
for faster private key operations") we have started to use the additional
primes and coefficients for RSA private key operations. However, these
additional parameters are not present (defined as 0 integers) in the RSA
test vectors.

Some parameters were borrowed from OpenSSL, so I was able to find the
source. I could not find the public source for 1 vector though, so had to
recover the parameters by implementing Appendix C from [1].

[1]: https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-56Br1.pdf

Fixes: f145d411a67e ("crypto: rsa - implement Chinese Remainder Theorem for faster private key operations")
Reported-by: Tasmiya Nalatwad <tasmiya@linux.vnet.ibm.com>
Signed-off-by: Ignat Korchagin <ignat@cloudflare.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 crypto/testmgr.h | 121 +++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 100 insertions(+), 21 deletions(-)

diff --git a/crypto/testmgr.h b/crypto/testmgr.h
index f3722c66530da..d57c911649180 100644
--- a/crypto/testmgr.h
+++ b/crypto/testmgr.h
@@ -177,7 +177,7 @@ static const struct akcipher_testvec rsa_tv_template[] = {
 	{
 #ifndef CONFIG_CRYPTO_FIPS
 	.key =
-	"\x30\x81\x9A" /* sequence of 154 bytes */
+	"\x30\x82\x01\x38" /* sequence of 312 bytes */
 	"\x02\x01\x00" /* version - integer of 1 byte */
 	"\x02\x41" /* modulus - integer of 65 bytes */
 	"\x00\xAA\x36\xAB\xCE\x88\xAC\xFD\xFF\x55\x52\x3C\x7F\xC4\x52\x3F"
@@ -191,23 +191,36 @@ static const struct akcipher_testvec rsa_tv_template[] = {
 	"\xC2\xCD\x2D\xFF\x43\x40\x98\xCD\x20\xD8\xA1\x38\xD0\x90\xBF\x64"
 	"\x79\x7C\x3F\xA7\xA2\xCD\xCB\x3C\xD1\xE0\xBD\xBA\x26\x54\xB4\xF9"
 	"\xDF\x8E\x8A\xE5\x9D\x73\x3D\x9F\x33\xB3\x01\x62\x4A\xFD\x1D\x51"
-	"\x02\x01\x00" /* prime1 - integer of 1 byte */
-	"\x02\x01\x00" /* prime2 - integer of 1 byte */
-	"\x02\x01\x00" /* exponent1 - integer of 1 byte */
-	"\x02\x01\x00" /* exponent2 - integer of 1 byte */
-	"\x02\x01\x00", /* coefficient - integer of 1 byte */
+	"\x02\x21" /* prime1 - integer of 33 bytes */
+	"\x00\xD8\x40\xB4\x16\x66\xB4\x2E\x92\xEA\x0D\xA3\xB4\x32\x04\xB5"
+	"\xCF\xCE\x33\x52\x52\x4D\x04\x16\xA5\xA4\x41\xE7\x00\xAF\x46\x12"
+	"\x0D"
+	"\x02\x21" /* prime2 - integer of 33 bytes */
+	"\x00\xC9\x7F\xB1\xF0\x27\xF4\x53\xF6\x34\x12\x33\xEA\xAA\xD1\xD9"
+	"\x35\x3F\x6C\x42\xD0\x88\x66\xB1\xD0\x5A\x0F\x20\x35\x02\x8B\x9D"
+	"\x89"
+	"\x02\x20" /* exponent1 - integer of 32 bytes */
+	"\x59\x0B\x95\x72\xA2\xC2\xA9\xC4\x06\x05\x9D\xC2\xAB\x2F\x1D\xAF"
+	"\xEB\x7E\x8B\x4F\x10\xA7\x54\x9E\x8E\xED\xF5\xB4\xFC\xE0\x9E\x05"
+	"\x02\x21" /* exponent2 - integer of 33 bytes */
+	"\x00\x8E\x3C\x05\x21\xFE\x15\xE0\xEA\x06\xA3\x6F\xF0\xF1\x0C\x99"
+	"\x52\xC3\x5B\x7A\x75\x14\xFD\x32\x38\xB8\x0A\xAD\x52\x98\x62\x8D"
+	"\x51"
+	"\x02\x20" /* coefficient - integer of 32 bytes */
+	"\x36\x3F\xF7\x18\x9D\xA8\xE9\x0B\x1D\x34\x1F\x71\xD0\x9B\x76\xA8"
+	"\xA9\x43\xE1\x1D\x10\xB2\x4D\x24\x9F\x2D\xEA\xFE\xF8\x0C\x18\x26",
 	.m = "\x54\x85\x9b\x34\x2c\x49\xea\x2a",
 	.c =
 	"\x63\x1c\xcd\x7b\xe1\x7e\xe4\xde\xc9\xa8\x89\xa1\x74\xcb\x3c\x63"
 	"\x7d\x24\xec\x83\xc3\x15\xe4\x7f\x73\x05\x34\xd1\xec\x22\xbb\x8a"
 	"\x5e\x32\x39\x6d\xc1\x1d\x7d\x50\x3b\x9f\x7a\xad\xf0\x2e\x25\x53"
 	"\x9f\x6e\xbd\x4c\x55\x84\x0c\x9b\xcf\x1a\x4b\x51\x1e\x9e\x0c\x06",
-	.key_len = 157,
+	.key_len = 316,
 	.m_size = 8,
 	.c_size = 64,
 	}, {
 	.key =
-	"\x30\x82\x01\x1D" /* sequence of 285 bytes */
+	"\x30\x82\x02\x5B" /* sequence of 603 bytes */
 	"\x02\x01\x00" /* version - integer of 1 byte */
 	"\x02\x81\x81" /* modulus - integer of 129 bytes */
 	"\x00\xBB\xF8\x2F\x09\x06\x82\xCE\x9C\x23\x38\xAC\x2B\x9D\xA8\x71"
@@ -230,12 +243,35 @@ static const struct akcipher_testvec rsa_tv_template[] = {
 	"\x93\x99\x26\xED\x4F\x74\xA1\x3E\xDD\xFB\xE1\xA1\xCE\xCC\x48\x94"
 	"\xAF\x94\x28\xC2\xB7\xB8\x88\x3F\xE4\x46\x3A\x4B\xC8\x5B\x1C\xB3"
 	"\xC1"
-	"\x02\x01\x00" /* prime1 - integer of 1 byte */
-	"\x02\x01\x00" /* prime2 - integer of 1 byte */
-	"\x02\x01\x00" /* exponent1 - integer of 1 byte */
-	"\x02\x01\x00" /* exponent2 - integer of 1 byte */
-	"\x02\x01\x00", /* coefficient - integer of 1 byte */
-	.key_len = 289,
+	"\x02\x41" /* prime1 - integer of 65 bytes */
+	"\x00\xEE\xCF\xAE\x81\xB1\xB9\xB3\xC9\x08\x81\x0B\x10\xA1\xB5\x60"
+	"\x01\x99\xEB\x9F\x44\xAE\xF4\xFD\xA4\x93\xB8\x1A\x9E\x3D\x84\xF6"
+	"\x32\x12\x4E\xF0\x23\x6E\x5D\x1E\x3B\x7E\x28\xFA\xE7\xAA\x04\x0A"
+	"\x2D\x5B\x25\x21\x76\x45\x9D\x1F\x39\x75\x41\xBA\x2A\x58\xFB\x65"
+	"\x99"
+	"\x02\x41" /* prime2 - integer of 65 bytes */
+	"\x00\xC9\x7F\xB1\xF0\x27\xF4\x53\xF6\x34\x12\x33\xEA\xAA\xD1\xD9"
+	"\x35\x3F\x6C\x42\xD0\x88\x66\xB1\xD0\x5A\x0F\x20\x35\x02\x8B\x9D"
+	"\x86\x98\x40\xB4\x16\x66\xB4\x2E\x92\xEA\x0D\xA3\xB4\x32\x04\xB5"
+	"\xCF\xCE\x33\x52\x52\x4D\x04\x16\xA5\xA4\x41\xE7\x00\xAF\x46\x15"
+	"\x03"
+	"\x02\x40" /* exponent1 - integer of 64 bytes */
+	"\x54\x49\x4C\xA6\x3E\xBA\x03\x37\xE4\xE2\x40\x23\xFC\xD6\x9A\x5A"
+	"\xEB\x07\xDD\xDC\x01\x83\xA4\xD0\xAC\x9B\x54\xB0\x51\xF2\xB1\x3E"
+	"\xD9\x49\x09\x75\xEA\xB7\x74\x14\xFF\x59\xC1\xF7\x69\x2E\x9A\x2E"
+	"\x20\x2B\x38\xFC\x91\x0A\x47\x41\x74\xAD\xC9\x3C\x1F\x67\xC9\x81"
+	"\x02\x40" /* exponent2 - integer of 64 bytes */
+	"\x47\x1E\x02\x90\xFF\x0A\xF0\x75\x03\x51\xB7\xF8\x78\x86\x4C\xA9"
+	"\x61\xAD\xBD\x3A\x8A\x7E\x99\x1C\x5C\x05\x56\xA9\x4C\x31\x46\xA7"
+	"\xF9\x80\x3F\x8F\x6F\x8A\xE3\x42\xE9\x31\xFD\x8A\xE4\x7A\x22\x0D"
+	"\x1B\x99\xA4\x95\x84\x98\x07\xFE\x39\xF9\x24\x5A\x98\x36\xDA\x3D"
+	"\x02\x41", /* coefficient - integer of 65 bytes */
+	"\x00\xB0\x6C\x4F\xDA\xBB\x63\x01\x19\x8D\x26\x5B\xDB\xAE\x94\x23"
+	"\xB3\x80\xF2\x71\xF7\x34\x53\x88\x50\x93\x07\x7F\xCD\x39\xE2\x11"
+	"\x9F\xC9\x86\x32\x15\x4F\x58\x83\xB1\x67\xA9\x67\xBF\x40\x2B\x4E"
+	"\x9E\x2E\x0F\x96\x56\xE6\x98\xEA\x36\x66\xED\xFB\x25\x79\x80\x39"
+	"\xF7",
+	.key_len = 607,
 	.m = "\x54\x85\x9b\x34\x2c\x49\xea\x2a",
 	.c =
 	"\x74\x1b\x55\xac\x47\xb5\x08\x0a\x6e\x2b\x2d\xf7\x94\xb8\x8a\x95"
@@ -251,7 +287,7 @@ static const struct akcipher_testvec rsa_tv_template[] = {
 	}, {
 #endif
 	.key =
-	"\x30\x82\x02\x20" /* sequence of 544 bytes */
+	"\x30\x82\x04\xA3" /* sequence of 1187 bytes */
 	"\x02\x01\x00" /* version - integer of 1 byte */
 	"\x02\x82\x01\x01\x00" /* modulus - integer of 256 bytes */
 	"\xDB\x10\x1A\xC2\xA3\xF1\xDC\xFF\x13\x6B\xED\x44\xDF\xF0\x02\x6D"
@@ -288,12 +324,55 @@ static const struct akcipher_testvec rsa_tv_template[] = {
 	"\x62\xFF\xE9\x46\xB8\xD8\x44\xDB\xA5\xCC\x31\x54\x34\xCE\x3E\x82"
 	"\xD6\xBF\x7A\x0B\x64\x21\x6D\x88\x7E\x5B\x45\x12\x1E\x63\x8D\x49"
 	"\xA7\x1D\xD9\x1E\x06\xCD\xE8\xBA\x2C\x8C\x69\x32\xEA\xBE\x60\x71"
-	"\x02\x01\x00" /* prime1 - integer of 1 byte */
-	"\x02\x01\x00" /* prime2 - integer of 1 byte */
-	"\x02\x01\x00" /* exponent1 - integer of 1 byte */
-	"\x02\x01\x00" /* exponent2 - integer of 1 byte */
-	"\x02\x01\x00", /* coefficient - integer of 1 byte */
-	.key_len = 548,
+	"\x02\x81\x81" /* prime1 - integer of 129 bytes */
+	"\x00\xFA\xAC\xE1\x37\x5E\x32\x11\x34\xC6\x72\x58\x2D\x91\x06\x3E"
+	"\x77\xE7\x11\x21\xCD\x4A\xF8\xA4\x3F\x0F\xEF\x31\xE3\xF3\x55\xA0"
+	"\xB9\xAC\xB6\xCB\xBB\x41\xD0\x32\x81\x9A\x8F\x7A\x99\x30\x77\x6C"
+	"\x68\x27\xE2\x96\xB5\x72\xC9\xC3\xD4\x42\xAA\xAA\xCA\x95\x8F\xFF"
+	"\xC9\x9B\x52\x34\x30\x1D\xCF\xFE\xCF\x3C\x56\x68\x6E\xEF\xE7\x6C"
+	"\xD7\xFB\x99\xF5\x4A\xA5\x21\x1F\x2B\xEA\x93\xE8\x98\x26\xC4\x6E"
+	"\x42\x21\x5E\xA0\xA1\x2A\x58\x35\xBB\x10\xE7\xBA\x27\x0A\x3B\xB3"
+	"\xAF\xE2\x75\x36\x04\xAC\x56\xA0\xAB\x52\xDE\xCE\xDD\x2C\x28\x77"
+	"\x03"
+	"\x02\x81\x81" /* prime2 - integer of 129 bytes */
+	"\x00\xDF\xB7\x52\xB6\xD7\xC0\xE2\x96\xE7\xC9\xFE\x5D\x71\x5A\xC4"
+	"\x40\x96\x2F\xE5\x87\xEA\xF3\xA5\x77\x11\x67\x3C\x8D\x56\x08\xA7"
+	"\xB5\x67\xFA\x37\xA8\xB8\xCF\x61\xE8\x63\xD8\x38\x06\x21\x2B\x92"
+	"\x09\xA6\x39\x3A\xEA\xA8\xB4\x45\x4B\x36\x10\x4C\xE4\x00\x66\x71"
+	"\x65\xF8\x0B\x94\x59\x4F\x8C\xFD\xD5\x34\xA2\xE7\x62\x84\x0A\xA7"
+	"\xBB\xDB\xD9\x8A\xCD\x05\xE1\xCC\x57\x7B\xF1\xF1\x1F\x11\x9D\xBA"
+	"\x3E\x45\x18\x99\x1B\x41\x64\x43\xEE\x97\x5D\x77\x13\x5B\x74\x69"
+	"\x73\x87\x95\x05\x07\xBE\x45\x07\x17\x7E\x4A\x69\x22\xF3\xDB\x05"
+	"\x39"
+	"\x02\x81\x80" /* exponent1 - integer of 128 bytes */
+	"\x5E\xD8\xDC\xDA\x53\x44\xC4\x67\xE0\x92\x51\x34\xE4\x83\xA5\x4D"
+	"\x3E\xDB\xA7\x9B\x82\xBB\x73\x81\xFC\xE8\x77\x4B\x15\xBE\x17\x73"
+	"\x49\x9B\x5C\x98\xBC\xBD\x26\xEF\x0C\xE9\x2E\xED\x19\x7E\x86\x41"
+	"\x1E\x9E\x48\x81\xDD\x2D\xE4\x6F\xC2\xCD\xCA\x93\x9E\x65\x7E\xD5"
+	"\xEC\x73\xFD\x15\x1B\xA2\xA0\x7A\x0F\x0D\x6E\xB4\x53\x07\x90\x92"
+	"\x64\x3B\x8B\xA9\x33\xB3\xC5\x94\x9B\x4C\x5D\x9C\x7C\x46\xA4\xA5"
+	"\x56\xF4\xF3\xF8\x27\x0A\x7B\x42\x0D\x92\x70\x47\xE7\x42\x51\xA9"
+	"\xC2\x18\xB1\x58\xB1\x50\x91\xB8\x61\x41\xB6\xA9\xCE\xD4\x7C\xBB"
+	"\x02\x81\x80" /* exponent2 - integer of 128 bytes */
+	"\x54\x09\x1F\x0F\x03\xD8\xB6\xC5\x0C\xE8\xB9\x9E\x0C\x38\x96\x43"
+	"\xD4\xA6\xC5\x47\xDB\x20\x0E\xE5\xBD\x29\xD4\x7B\x1A\xF8\x41\x57"
+	"\x49\x69\x9A\x82\xCC\x79\x4A\x43\xEB\x4D\x8B\x2D\xF2\x43\xD5\xA5"
+	"\xBE\x44\xFD\x36\xAC\x8C\x9B\x02\xF7\x9A\x03\xE8\x19\xA6\x61\xAE"
+	"\x76\x10\x93\x77\x41\x04\xAB\x4C\xED\x6A\xCC\x14\x1B\x99\x8D\x0C"
+	"\x6A\x37\x3B\x86\x6C\x51\x37\x5B\x1D\x79\xF2\xA3\x43\x10\xC6\xA7"
+	"\x21\x79\x6D\xF9\xE9\x04\x6A\xE8\x32\xFF\xAE\xFD\x1C\x7B\x8C\x29"
+	"\x13\xA3\x0C\xB2\xAD\xEC\x6C\x0F\x8D\x27\x12\x7B\x48\xB2\xDB\x31"
+	"\x02\x81\x81", /* coefficient - integer of 129 bytes */
+	"\x00\x8D\x1B\x05\xCA\x24\x1F\x0C\x53\x19\x52\x74\x63\x21\xFA\x78"
+	"\x46\x79\xAF\x5C\xDE\x30\xA4\x6C\x20\x38\xE6\x97\x39\xB8\x7A\x70"
+	"\x0D\x8B\x6C\x6D\x13\x74\xD5\x1C\xDE\xA9\xF4\x60\x37\xFE\x68\x77"
+	"\x5E\x0B\x4E\x5E\x03\x31\x30\xDF\xD6\xAE\x85\xD0\x81\xBB\x61\xC7"
+	"\xB1\x04\x5A\xC4\x6D\x56\x1C\xD9\x64\xE7\x85\x7F\x88\x91\xC9\x60"
+	"\x28\x05\xE2\xC6\x24\x8F\xDD\x61\x64\xD8\x09\xDE\x7E\xD3\x4A\x61"
+	"\x1A\xD3\x73\x58\x4B\xD8\xA0\x54\x25\x48\x83\x6F\x82\x6C\xAF\x36"
+	"\x51\x2A\x5D\x14\x2F\x41\x25\x00\xDD\xF8\xF3\x95\xFE\x31\x25\x50"
+	"\x12",
+	.key_len = 1191,
 	.m = "\x54\x85\x9b\x34\x2c\x49\xea\x2a",
 	.c =
 	"\xb2\x97\x76\xb4\xae\x3e\x38\x3c\x7e\x64\x1f\xcc\xa2\x7f\xf6\xbe"
-- 
2.39.5




  parent reply	other threads:[~2025-03-11 15:14 UTC|newest]

Thread overview: 336+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-11 14:56 [PATCH 5.4 000/328] 5.4.291-rc1 review Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 001/328] perf cs-etm: Add missing variable in cs_etm__process_queues() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 002/328] udf: Fix use of check_add_overflow() with mixed type arguments Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 003/328] overflow: Add __must_check attribute to check_*() helpers Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 004/328] overflow: Correct check_shl_overflow() comment Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 005/328] overflow: Allow mixed type arguments Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 006/328] afs: Fix directory format encoding struct Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 007/328] nbd: dont allow reconnect after disconnect Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 008/328] partitions: ldm: remove the initial kernel-doc notation Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 009/328] drm/etnaviv: Fix page property being used for non writecombine buffers Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 010/328] drm/amdgpu: Fix potential NULL pointer dereference in atomctrl_get_smc_sclk_range_table Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 011/328] ipmi: ipmb: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 012/328] wifi: rtlwifi: do not complete firmware loading needlessly Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 013/328] rtlwifi: rtl8192se Rename RT_TRACE to rtl_dbg Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 014/328] wifi: rtlwifi: rtl8192se: rise completion of firmware loading as last step Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 015/328] wifi: rtlwifi: usb: fix workqueue leak when probe fails Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 016/328] dt-bindings: mmc: controller: clarify the address-cells description Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 017/328] rtlwifi: replace usage of found with dedicated list iterator variable Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 018/328] wifi: rtlwifi: remove unused timer and related code Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 019/328] wifi: rtlwifi: remove unused dualmac control leftovers Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 020/328] wifi: rtlwifi: remove unused check_buddy_priv Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 021/328] wifi: rtlwifi: fix memory leaks and invalid access at probe error path Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 022/328] wifi: rtlwifi: pci: wait for firmware loading before releasing memory Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 023/328] cpupower: fix TSC MHz calculation Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 024/328] team: prevent adding a device which is already a team device lower Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 025/328] regulator: of: Implement the unwind path of of_regulator_match() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 026/328] wifi: wlcore: fix unbalanced pm_runtime calls Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 027/328] selftests/harness: Display signed values correctly Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 028/328] selftests: harness: fix printing of mismatch values in __EXPECT() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 029/328] clk: analogbits: Fix incorrect calculation of vco rate delta Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 030/328] net: let net.core.dev_weight always be non-zero Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 031/328] net/mlxfw: Drop hard coded max FW flash image size Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 032/328] net: sched: Disallow replacing of child qdisc from one parent to another Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 033/328] tools/testing/selftests/bpf/test_tc_tunnel.sh: Fix wait for server bind Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 034/328] ASoC: sun4i-spdif: Add clock multiplier settings Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 035/328] perf header: Fix one memory leakage in process_bpf_btf() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 036/328] perf header: Fix one memory leakage in process_bpf_prog_info() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 037/328] ktest.pl: Remove unused declarations in run_bisect_test function Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 038/328] padata: fix sysfs store callback check Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 039/328] perf top: Dont complain about lack of vmlinux when not resolving some kernel samples Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 040/328] perf report: Fix misleading help message about --demangle Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 041/328] bpf: Send signals asynchronously if !preemptible Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 042/328] RDMA/mlx4: Avoid false error about access to uninitialized gids array Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 043/328] rdma/cxgb4: Prevent potential integer overflow on 32bit Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 044/328] arm64: dts: mediatek: mt8173-evb: Drop regulator-compatible property Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 045/328] arm64: dts: mediatek: mt8173-evb: Fix MT6397 PMIC sub-node names Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 046/328] ARM: dts: mediatek: mt7623: fix IR nodename Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 047/328] fbdev: omapfb: Fix an OF node leak in dss_of_port_get_parent_device() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 048/328] media: rc: iguanair: handle timeouts Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 049/328] media: lmedm04: Use GFP_KERNEL for URB allocation/submission Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 050/328] media: lmedm04: Handle errors for lme2510_int_read Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 051/328] PCI: endpoint: Destroy the EPC device in devm_pci_epc_destroy() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 052/328] media: mipi-csis: Add check for clk_enable() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 053/328] media: camif-core: " Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 054/328] media: uvcvideo: Propagate buf->error to userspace Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 055/328] staging: media: imx: fix OF node leak in imx_media_add_of_subdevs() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 056/328] scsi: mpt3sas: Set ioc->manu_pg11.EEDPTagMode directly to 1 Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 057/328] scsi: ufs: bsg: Delete bsg_dev when setting up bsg fails Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 058/328] ocfs2: mark dquot as inactive if failed to start trans while releasing dquot Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 059/328] module: Extend the preempt disabled section in dereference_symbol_descriptor() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 060/328] dmaengine: ti: edma: fix OF node reference leaks in edma_driver Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 061/328] rtc: pcf85063: fix potential OOB write in PCF85063 NVMEM read Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 062/328] ubifs: skip dumping tnc tree when zroot is null Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 063/328] net: fec: implement TSO descriptor cleanup Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 064/328] ipmr: do not call mr_mfc_uses_dev() for unres entries Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 065/328] PM: hibernate: Add error handling for syscore_suspend() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 066/328] net: rose: fix timer races against user threads Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 067/328] net: davicom: fix UAF in dm9000_drv_remove Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 068/328] perf trace: Fix runtime error of index out of bounds Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 069/328] vsock: Allow retrying on connect() failure Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 070/328] net: sh_eth: Fix missing rtnl lock in suspend/resume path Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 071/328] genksyms: fix memory leak when the same symbol is added from source Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 072/328] genksyms: fix memory leak when the same symbol is read from *.symref file Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 073/328] hexagon: fix using plain integer as NULL pointer warning in cmpxchg Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 074/328] hexagon: Fix unbalanced spinlock in die() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 075/328] NFSD: Reset cb_seq_status after NFS4ERR_DELAY Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 076/328] ktest.pl: Check kernelrelease return in get_version Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 077/328] drivers/card_reader/rtsx_usb: Restore interrupt based detection Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 078/328] usb: typec: tcpm: set SRC_SEND_CAPABILITIES timeout to PD_T_SENDER_RESPONSE Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 079/328] HID: core: Fix assumption that Resolution Multipliers must be in Logical Collections Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 080/328] media: uvcvideo: Fix double free in error path Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 081/328] usb: gadget: f_tcm: Dont free command immediately Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 082/328] btrfs: output the reason for open_ctree() failure Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 083/328] btrfs: fix use-after-free when attempting to join an aborted transaction Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 084/328] btrfs: convert BUG_ON in btrfs_reloc_cow_block() to proper error handling Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 085/328] sched: Dont try to catch up excess steal time Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 086/328] x86/amd_nb: Restrict init function to AMD-based systems Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 087/328] printk: Fix signed integer overflow when defining LOG_BUF_LEN_MAX Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 088/328] tun: fix group permission check Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 089/328] mmc: core: Respect quirk_max_rate for non-UHS SDIO card Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 090/328] wifi: brcmsmac: add gain range check to wlc_phy_iqcal_gainparams_nphy() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 091/328] tomoyo: dont emit warning in tomoyo_write_control() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 092/328] mfd: lpc_ich: Add another Gemini Lake ISA bridge PCI device-id Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 093/328] HID: Wacom: Add PCI Wacom device support Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 094/328] APEI: GHES: Have GHES honor the panic= setting Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 095/328] x86/mm: Dont disable PCID when INVLPG has been fixed by microcode Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 096/328] spi-mxs: Fix chipselect glitch Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 097/328] nilfs2: move page release outside of nilfs_delete_entry and nilfs_set_link Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 098/328] nilfs2: eliminate staggered calls to kunmap in nilfs_rename Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 099/328] nilfs2: handle errors that nilfs_prepare_chunk() may return Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 100/328] media: uvcvideo: Only save async fh if success Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 101/328] media: uvcvideo: Remove dangling pointers Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 102/328] sched: sch_cake: add bounds checks to host bulk flow fairness counts Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 103/328] kbuild: userprogs: use correct lld when linking through clang Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 104/328] tasklet: Introduce new initialization API Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 105/328] net: usb: rtl8150: use new tasklet API Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 106/328] net: usb: rtl8150: enable basic endpoint checking Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 107/328] usb: xhci: Add timeout argument in address_device USB HCD callback Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 108/328] usb: xhci: Fix NULL pointer dereference on certain command aborts Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 109/328] nvme: handle connectivity loss in nvme_set_queue_count Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 110/328] firmware: iscsi_ibft: fix ISCSI_IBFT Kconfig entry Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 111/328] gpu: drm_dp_cec: fix broken CEC adapter properties check Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 112/328] tg3: Disable tg3 PCIe AER on system reboot Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 113/328] udp: gso: do not drop small packets when PMTU reduces Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 114/328] net: rose: lock the socket in rose_bind() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 115/328] netem: Update sch->q.qlen before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 116/328] tun: revert fix group permission check Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 117/328] cpufreq: s3c64xx: Fix compilation warning Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 118/328] leds: lp8860: Write full EEPROM, not only half of it Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 119/328] s390/futex: Fix FUTEX_OP_ANDN implementation Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 120/328] m68k: vga: Fix I/O defines Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 121/328] binfmt_flat: Fix integer overflow bug on 32 bit systems Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 122/328] arm64: dts: rockchip: increase gmac rx_delay on rk3399-puma Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 123/328] KVM: Explicitly verify target vCPU is online in kvm_get_vcpu() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 124/328] KVM: s390: vsie: fix some corner-cases when grabbing vsie pages Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 125/328] drm/komeda: Add check for komeda_get_layer_fourcc_list() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 126/328] Bluetooth: L2CAP: handle NULL sock pointer in l2cap_sock_alloc Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 127/328] clk: qcom: clk-alpha-pll: fix alpha mode configuration Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 128/328] clk: qcom: clk-rpmh: prevent integer overflow in recalc_rate Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 129/328] perf bench: Fix undefined behavior in cmpworker() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 130/328] of: Correct child specifier used as input of the 2nd nexus node Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 131/328] of: Fix of_find_node_opts_by_path() handling of alias+path+options Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 132/328] of: reserved-memory: Fix using wrong number of cells to get property alignment Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 133/328] HID: hid-sensor-hub: dont use stale platform-data on remove Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 134/328] wifi: brcmfmac: fix NULL pointer dereference in brcmf_txfinalize() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 135/328] usb: gadget: f_tcm: Translate error to sense Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 136/328] usb: gadget: f_tcm: Decrement command ref count on cleanup Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 137/328] usb: gadget: f_tcm: ep_autoconfig with fullspeed endpoint Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 138/328] usb: gadget: f_tcm: Dont prepare BOT write request twice Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 139/328] soc: qcom: socinfo: Avoid out of bounds read of serial number Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 140/328] serial: sh-sci: Drop __initdata macro for port_cfg Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 141/328] serial: sh-sci: Do not probe the serial port if its slot in sci_ports[] is in use Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 142/328] powerpc/pseries/eeh: Fix get PE state translation Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 143/328] kbuild: Move -Wenum-enum-conversion to W=2 Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 144/328] soc: qcom: smem_state: fix missing of_node_put in error path Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 145/328] media: ov5640: fix get_light_freq on auto Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 146/328] media: uvcvideo: Fix event flags in uvc_ctrl_send_events Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 147/328] media: uvcvideo: Remove redundant NULL assignment Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 148/328] crypto: qce - fix goto jump in error path Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 149/328] crypto: qce - unregister previously registered algos " Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 150/328] nvmem: core: improve range check for nvmem_cell_write() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 151/328] vfio/platform: check the bounds of read/write syscalls Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 152/328] ocfs2: fix incorrect CPU endianness conversion causing mount failure Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 153/328] ocfs2: handle a symlink read error correctly Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 154/328] nilfs2: fix possible int overflows in nilfs_fiemap() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 155/328] NFC: nci: Add bounds checking in nci_hci_create_pipe() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 156/328] mtd: onenand: Fix uninitialized retlen in do_otp_read() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 157/328] misc: fastrpc: Fix registered buffer page address Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 158/328] net/ncsi: wait for the last response to Deselect Package before configuring channel Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 159/328] ptp: Ensure info->enable callback is always set Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 160/328] MIPS: ftrace: Declare ftrace_get_parent_ra_addr() as static Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 161/328] ocfs2: check dir i_size in ocfs2_find_entry Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 162/328] HID: multitouch: Add NULL check in mt_input_configured Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 163/328] ndisc: ndisc_send_redirect() must use dev_get_by_index_rcu() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 164/328] vrf: use RCU protection in l3mdev_l3_out() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 165/328] team: better TEAM_OPTION_TYPE_STRING validation Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 166/328] arm64: cacheinfo: Avoid out-of-bounds write to cacheinfo array Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 167/328] gpio: bcm-kona: Fix GPIO lock/unlock for banks above bank 0 Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 168/328] gpio: bcm-kona: Make sure GPIO bits are unlocked when requesting IRQ Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 169/328] gpio: bcm-kona: Add missing newline to dev_err format string Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 170/328] xen: remove a confusing comment on auto-translated guest I/O Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 171/328] x86/xen: allow larger contiguous memory regions in PV guests Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 172/328] media: cxd2841er: fix 64-bit division on gcc-9 Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 173/328] vfio/pci: Enable iowrite64 and ioread64 for vfio pci Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 174/328] Grab mm lock before grabbing pt lock Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 175/328] orangefs: fix a oob in orangefs_debug_write Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 176/328] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet 5V Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 177/328] batman-adv: fix panic during interface removal Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 178/328] usb: roles: set switch registered flag early on Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 179/328] usb: gadget: udc: renesas_usb3: Fix compiler warning Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 180/328] usb: dwc2: gadget: remove of_node reference upon udc_stop Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 181/328] USB: pci-quirks: Fix HCCPARAMS register error for LS7A EHCI Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 182/328] USB: quirks: add USB_QUIRK_NO_LPM quirk for Teclast dist Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 183/328] USB: Add USB_QUIRK_NO_LPM quirk for sony xperia xz1 smartphone Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 184/328] usb: gadget: f_midi: fix MIDI Streaming descriptor lengths Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 185/328] USB: hub: Ignore non-compliant devices with too many configs or interfaces Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 186/328] USB: cdc-acm: Fill in Renesas R-Car D3 USB Download mode quirk Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 187/328] usb: cdc-acm: Check control transfer buffer size before access Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 188/328] usb: cdc-acm: Fix handling of oversized fragments Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 189/328] USB: serial: option: add MeiG Smart SLM828 Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 190/328] USB: serial: option: add Telit Cinterion FN990B compositions Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 191/328] USB: serial: option: fix Telit Cinterion FN990A name Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 192/328] USB: serial: option: drop MeiG Smart defines Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 193/328] can: c_can: fix unbalanced runtime PM disable in error path Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 194/328] can: j1939: j1939_sk_send_loop(): fix unable to send messages with data length zero Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 195/328] alpha: make stack 16-byte aligned (most cases) Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 196/328] serial: 8250: Fix fifo underflow on flush Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 197/328] alpha: align stack for page fault and user unaligned trap handlers Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 198/328] gpio: stmpe: Check return value of stmpe_reg_read in stmpe_gpio_irq_sync_unlock Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 199/328] partitions: mac: fix handling of bogus partition table Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 200/328] regmap-irq: Add missing kfree() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 201/328] net: treat possible_net_t net pointer as an RCU one and add read_pnet_rcu() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 202/328] net: add dev_net_rcu() helper Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 203/328] ipv4: use RCU protection in rt_is_expired() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 204/328] ipv4: use RCU protection in inet_select_addr() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 205/328] ipv6: use RCU protection in ip6_default_advmss() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 206/328] ndisc: use RCU protection in ndisc_alloc_skb() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 207/328] neighbour: delete redundant judgment statements Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 208/328] neighbour: use RCU protection in __neigh_notify() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 209/328] arp: use RCU protection in arp_xmit() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 210/328] openvswitch: use RCU protection in ovs_vport_cmd_fill_info() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 211/328] ndisc: extend RCU protection in ndisc_send_skb() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 212/328] alpha: replace hardcoded stack offsets with autogenerated ones Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 213/328] nilfs2: do not output warnings when clearing dirty buffers Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 214/328] nilfs2: do not force clear folio if buffer is referenced Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 215/328] nilfs2: protect access to buffers with no active references Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 216/328] can: ems_pci: move ASIX AX99100 ids to pci_ids.h Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 217/328] serial: 8250_pci: add support for ASIX AX99100 Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 218/328] parport_pc: " Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 219/328] x86/i8253: Disable PIT timer 0 when not in use Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 220/328] Revert "btrfs: avoid monopolizing a core when activating a swap file" Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 221/328] btrfs: avoid monopolizing a core when activating a swap file Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 222/328] pps: Fix a use-after-free Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 223/328] ima: Fix use-after-free on a dentrys dname.name Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 224/328] vlan: introduce vlan_dev_free_egress_priority Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 225/328] vlan: move dev_put into vlan_dev_uninit Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 226/328] scsi: storvsc: Set correct data length for sending SCSI command without payload Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 227/328] driver core: bus: Fix double free in driver API bus_register() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 228/328] crypto: testmgr - fix wrong key length for pkcs1pad Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 229/328] crypto: testmgr - Fix wrong test case of RSA Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 230/328] crypto: testmgr - fix version number of RSA tests Greg Kroah-Hartman
2025-03-11 15:00 ` Greg Kroah-Hartman [this message]
2025-03-11 15:00 ` [PATCH 5.4 232/328] crypto: testmgr - some more fixes to RSA test vectors Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 233/328] mm: update mark_victim tracepoints fields Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 234/328] memcg: fix soft lockup in the OOM process Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 235/328] usb: dwc3: Increase DWC3 controller halt timeout Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 236/328] usb: dwc3: Fix timeout issue during controller enter/exit from halt state Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 237/328] usb/gadget: f_midi: convert tasklets to use new tasklet_setup() API Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 238/328] usb/gadget: f_midi: Replace tasklet with work Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 239/328] USB: gadget: f_midi: f_midi_complete to call queue_work Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 240/328] powerpc/64s/mm: Move __real_pte stubs into hash-4k.h Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 241/328] powerpc/64s: Rewrite __real_pte() and __rpte_to_hidx() as static inline Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 242/328] ALSA: hda/realtek - Add type for ALC287 Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 243/328] ALSA: hda/realtek: Fixup ALC225 depop procedure Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 244/328] powerpc/code-patching: Fix KASAN hit by not flagging text patching area as VM_ALLOC Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 245/328] geneve: Fix use-after-free in geneve_find_dev() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 246/328] gtp: Suppress list corruption splat in gtp_net_exit_batch_rtnl() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 247/328] geneve: Suppress list corruption splat in geneve_destroy_tunnels() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 248/328] net: extract port range fields from fl_flow_key Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 249/328] flow_dissector: Fix handling of mixed port and port-range keys Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 250/328] flow_dissector: Fix port range key handling in BPF conversion Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 251/328] power: supply: da9150-fg: fix potential overflow Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 252/328] tee: optee: Fix supplicant wait loop Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 253/328] nfp: bpf: Add check for nfp_app_ctrl_msg_alloc() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 254/328] ALSA: hda/conexant: Add quirk for HP ProBook 450 G4 mute LED Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 255/328] acct: block access to kernel internal filesystems Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 256/328] batman-adv: Ignore neighbor throughput metrics in error case Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 257/328] batman-adv: Drop unmanaged ELP metric worker Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 258/328] sunrpc: suppress warnings for unused procfs functions Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 259/328] net: loopback: Avoid sending IP packets without an Ethernet header Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 260/328] net: cadence: macb: Synchronize stats calculations Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 261/328] ASoC: es8328: fix route from DAC to output Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 262/328] ipvs: Always clear ipvs_property flag in skb_scrub_packet() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 263/328] net: mvpp2: cls: Fixed Non IP flow, with vlan tag flow defination Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 264/328] x86/CPU: Fix warm boot hang regression on AMD SC1100 SoC systems Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 265/328] ftrace: Avoid potential division by zero in function_stat_show() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 266/328] perf/core: Fix low freq setting via IOC_PERIOD Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 267/328] usbnet: gl620a: fix endpoint checking in genelink_bind() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 268/328] phy: tegra: xusb: reset VBUS & ID OVERRIDE Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 269/328] phy: exynos5-usbdrd: fix MPLL_MULTIPLIER and SSC_REFCLKSEL masks in refclk Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 270/328] sched/core: Prevent rescheduling when interrupts are disabled Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 271/328] pfifo_tail_enqueue: Drop new packet when sch->limit == 0 Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 272/328] drop_monitor: fix incorrect initialization order Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 273/328] kernel/acct.c: use #elif instead of #end and #elif Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 274/328] kernel/acct.c: use dedicated helper to access rlimit values Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 275/328] acct: perform last write from workqueue Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 276/328] drm/amdgpu: skip BAR resizing if the bios already did it Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 277/328] drm/amdgpu: Check extended configuration space register when system uses large bar Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 278/328] drm/amdgpu: disable BAR resize on Dell G5 SE Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 279/328] Revert "of: reserved-memory: Fix using wrong number of cells to get property alignment" Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 280/328] HID: appleir: Fix potential NULL dereference at raw event handle Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 281/328] ALSA: hda: intel: Add Dell ALC3271 to power_save denylist Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 282/328] ALSA: hda/realtek: update ALC222 depop optimize Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 283/328] drm/radeon: Fix rs400_gpu_init for ATI mobility radeon Xpress 200M Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 284/328] platform/x86: thinkpad_acpi: Add battery quirk for ThinkPad X131e Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 285/328] x86/cacheinfo: Validate CPUID leaf 0x2 EDX output Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 286/328] x86/cpu: " Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 287/328] x86/cpu: Properly parse CPUID leaf 0x2 TLB descriptor 0x63 Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 288/328] wifi: cfg80211: regulatory: improve invalid hints checking Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 289/328] wifi: nl80211: reject cooked mode if it is set along with other flags Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 290/328] rapidio: add check for rio_add_net() in rio_scan_alloc_net() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 291/328] rapidio: fix an API misues when rio_add_net() fails Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 292/328] mm/page_alloc: fix uninitialized variable Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 293/328] wifi: iwlwifi: limit printed string from FW file Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 294/328] HID: google: fix unused variable warning under !CONFIG_ACPI Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 295/328] HID: intel-ish-hid: Fix use-after-free issue in ishtp_hid_remove() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 296/328] net: gso: fix ownership in __udp_gso_segment Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 297/328] caif_virtio: fix wrong pointer check in cfv_probe() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 298/328] hwmon: (pmbus) Initialise page count in pmbus_identify() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 299/328] hwmon: (ntc_thermistor) Fix the ncpXXxh103 sensor table Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 300/328] hwmon: (ad7314) Validate leading zero bits and return error Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 301/328] llc: do not use skb_get() before dev_queue_xmit() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 302/328] hwmon: fix a NULL vs IS_ERR_OR_NULL() check in xgene_hwmon_probe() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 303/328] drm/sched: Fix preprocessor guard Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 304/328] be2net: fix sleeping while atomic bugs in be_ndo_bridge_getlink Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 305/328] ppp: Fix KMSAN uninit-value warning with bpf Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 306/328] vlan: enforce underlying device type Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 307/328] net-timestamp: support TCP GSO case for a few missing flags Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 308/328] net: ipv6: fix dst ref loop in ila lwtunnel Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 309/328] net: ipv6: fix missing dst ref drop " Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 310/328] gpio: rcar: Fix missing of_node_put() call Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 311/328] Revert "drivers/card_reader/rtsx_usb: Restore interrupt based detection" Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 312/328] usb: renesas_usbhs: Call clk_put() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 313/328] usb: renesas_usbhs: Use devm_usb_get_phy() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 314/328] usb: quirks: Add DELAY_INIT and NO_LPM for Prolific Mass Storage Card Reader Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 315/328] usb: renesas_usbhs: Flush the notify_hotplug_work Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 316/328] usb: atm: cxacru: fix a flaw in existing endpoint checks Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 317/328] usb: typec: ucsi: increase timeout for PPM reset operations Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 318/328] usb: typec: tcpci_rt1711h: Unmask alert interrupts to fix functionality Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 319/328] usb: gadget: Set self-powered based on MaxPower and bmAttributes Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 320/328] usb: gadget: Fix setting self-powered state on suspend Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 321/328] usb: gadget: Check bmAttributes only if configuration is valid Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 322/328] xhci: pci: Fix indentation in the PCI device ID definitions Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 323/328] Squashfs: check the inode number is not the invalid value of zero Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 324/328] intel_th: pci: Add Arrow Lake support Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 325/328] intel_th: pci: Add Panther Lake-H support Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 326/328] intel_th: pci: Add Panther Lake-P/U support Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 327/328] slimbus: messaging: Free transaction ID in delayed interrupt scenario Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 328/328] eeprom: digsy_mtc: Make GPIO lookup table match the device Greg Kroah-Hartman
2025-03-11 18:38 ` [PATCH 5.4 000/328] 5.4.291-rc1 review Florian Fainelli
2025-03-12  8:05   ` Greg Kroah-Hartman
2025-03-12  1:01 ` Shuah Khan
2025-03-12 12:56 ` [External] : " ALOK TIWARI
2025-03-13  7:19 ` Naresh Kamboju
2025-03-13 13:59   ` Florian Fainelli
2025-03-13 14:07     ` Greg Kroah-Hartman

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=20250311145724.087666794@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=herbert@gondor.apana.org.au \
    --cc=ignat@cloudflare.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tasmiya@linux.vnet.ibm.com \
    /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