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, Jaroslav Kysela <perex@perex.cz>,
	Takashi Iwai <tiwai@suse.de>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 436/554] ALSA: wavefront: Use standard print API
Date: Thu, 15 Jan 2026 17:48:22 +0100	[thread overview]
Message-ID: <20260115164302.043973351@linuxfoundation.org> (raw)
In-Reply-To: <20260115164246.225995385@linuxfoundation.org>

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

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

From: Takashi Iwai <tiwai@suse.de>

[ Upstream commit 8b4ac5429938dd5f1fbf2eea0687f08cbcccb6be ]

Use the standard print API with dev_*() instead of the old house-baked
one.  It gives better information and allows dynamically control of
debug prints.

Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Link: https://patch.msgid.link/20240807133452.9424-36-tiwai@suse.de
Stable-dep-of: 0c4a13ba8859 ("ALSA: wavefront: Fix integer overflow in sample size validation")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 include/sound/snd_wavefront.h         |    4 
 sound/isa/wavefront/wavefront.c       |   61 +++++-----
 sound/isa/wavefront/wavefront_fx.c    |   36 +++---
 sound/isa/wavefront/wavefront_midi.c  |   15 +-
 sound/isa/wavefront/wavefront_synth.c |  196 +++++++++++++++++-----------------
 5 files changed, 158 insertions(+), 154 deletions(-)

--- a/include/sound/snd_wavefront.h
+++ b/include/sound/snd_wavefront.h
@@ -137,8 +137,4 @@ extern int  snd_wavefront_fx_ioctl  (str
 extern int snd_wavefront_fx_open    (struct snd_hwdep *, struct file *);
 extern int snd_wavefront_fx_release (struct snd_hwdep *, struct file *);
 
-/* prefix in all snd_printk() delivered messages */
-
-#define LOGNAME "WaveFront: "
-
 #endif  /* __SOUND_SND_WAVEFRONT_H__ */
--- a/sound/isa/wavefront/wavefront.c
+++ b/sound/isa/wavefront/wavefront.c
@@ -140,7 +140,7 @@ snd_wavefront_pnp (int dev, snd_wavefron
 
 	err = pnp_activate_dev(pdev);
 	if (err < 0) {
-		snd_printk(KERN_ERR "PnP WSS pnp configure failure\n");
+		dev_err(&pdev->dev, "PnP WSS pnp configure failure\n");
 		return err;
 	}
 
@@ -156,7 +156,7 @@ snd_wavefront_pnp (int dev, snd_wavefron
 	
 	err = pnp_activate_dev(pdev);
 	if (err < 0) {
-		snd_printk(KERN_ERR "PnP ICS2115 pnp configure failure\n");
+		dev_err(&pdev->dev, "PnP ICS2115 pnp configure failure\n");
 		return err;
 	}
 
@@ -174,26 +174,27 @@ snd_wavefront_pnp (int dev, snd_wavefron
 
 		err = pnp_activate_dev(pdev);
 		if (err < 0) {
-			snd_printk(KERN_ERR "PnP MPU401 pnp configure failure\n");
+			dev_err(&pdev->dev, "PnP MPU401 pnp configure failure\n");
 			cs4232_mpu_port[dev] = SNDRV_AUTO_PORT;
 		} else {
 			cs4232_mpu_port[dev] = pnp_port_start(pdev, 0);
 			cs4232_mpu_irq[dev] = pnp_irq(pdev, 0);
 		}
 
-		snd_printk (KERN_INFO "CS4232 MPU: port=0x%lx, irq=%i\n", 
-			    cs4232_mpu_port[dev], 
-			    cs4232_mpu_irq[dev]);
+		dev_info(&pdev->dev, "CS4232 MPU: port=0x%lx, irq=%i\n",
+			 cs4232_mpu_port[dev],
+			 cs4232_mpu_irq[dev]);
 	}
 
-	snd_printdd ("CS4232: pcm port=0x%lx, fm port=0x%lx, dma1=%i, dma2=%i, irq=%i\nICS2115: port=0x%lx, irq=%i\n", 
-		    cs4232_pcm_port[dev], 
-		    fm_port[dev],
-		    dma1[dev], 
-		    dma2[dev], 
-		    cs4232_pcm_irq[dev],
-		    ics2115_port[dev], 
-		    ics2115_irq[dev]);
+	dev_dbg(&pdev->dev,
+		"CS4232: pcm port=0x%lx, fm port=0x%lx, dma1=%i, dma2=%i, irq=%i\nICS2115: port=0x%lx, irq=%i\n",
+		cs4232_pcm_port[dev],
+		fm_port[dev],
+		dma1[dev],
+		dma2[dev],
+		cs4232_pcm_irq[dev],
+		ics2115_port[dev],
+		ics2115_irq[dev]);
 	
 	return 0;
 }
@@ -251,7 +252,7 @@ static struct snd_hwdep *snd_wavefront_n
 	struct snd_hwdep *fx_processor;
 
 	if (snd_wavefront_fx_start (&acard->wavefront)) {
-		snd_printk (KERN_ERR "cannot initialize YSS225 FX processor");
+		dev_err(card->dev, "cannot initialize YSS225 FX processor");
 		return NULL;
 	}
 
@@ -282,7 +283,7 @@ static struct snd_rawmidi *snd_wavefront
 		first = 0;
 		acard->wavefront.midi.base = port;
 		if (snd_wavefront_midi_start (acard)) {
-			snd_printk (KERN_ERR "cannot initialize MIDI interface\n");
+			dev_err(card->dev, "cannot initialize MIDI interface\n");
 			return NULL;
 		}
 	}
@@ -349,7 +350,7 @@ snd_wavefront_probe (struct snd_card *ca
 			     cs4232_pcm_irq[dev], dma1[dev], dma2[dev],
 			     WSS_HW_DETECT, 0, &chip);
 	if (err < 0) {
-		snd_printk(KERN_ERR "can't allocate WSS device\n");
+		dev_err(card->dev, "can't allocate WSS device\n");
 		return err;
 	}
 
@@ -369,7 +370,7 @@ snd_wavefront_probe (struct snd_card *ca
 		err = snd_opl3_create(card, fm_port[dev], fm_port[dev] + 2,
 				      OPL3_HW_OPL3_CS, 0, &opl3);
 		if (err < 0) {
-			snd_printk (KERN_ERR "can't allocate or detect OPL3 synth\n");
+			dev_err(card->dev, "can't allocate or detect OPL3 synth\n");
 			return err;
 		}
 
@@ -385,14 +386,14 @@ snd_wavefront_probe (struct snd_card *ca
 		devm_request_region(card->dev, ics2115_port[dev], 16,
 				    "ICS2115");
 	if (acard->wavefront.res_base == NULL) {
-		snd_printk(KERN_ERR "unable to grab ICS2115 i/o region 0x%lx-0x%lx\n",
-			   ics2115_port[dev], ics2115_port[dev] + 16 - 1);
+		dev_err(card->dev, "unable to grab ICS2115 i/o region 0x%lx-0x%lx\n",
+			ics2115_port[dev], ics2115_port[dev] + 16 - 1);
 		return -EBUSY;
 	}
 	if (devm_request_irq(card->dev, ics2115_irq[dev],
 			     snd_wavefront_ics2115_interrupt,
 			     0, "ICS2115", acard)) {
-		snd_printk(KERN_ERR "unable to use ICS2115 IRQ %d\n", ics2115_irq[dev]);
+		dev_err(card->dev, "unable to use ICS2115 IRQ %d\n", ics2115_irq[dev]);
 		return -EBUSY;
 	}
 	
@@ -402,7 +403,7 @@ snd_wavefront_probe (struct snd_card *ca
 
 	wavefront_synth = snd_wavefront_new_synth(card, hw_dev, acard);
 	if (wavefront_synth == NULL) {
-		snd_printk (KERN_ERR "can't create WaveFront synth device\n");
+		dev_err(card->dev, "can't create WaveFront synth device\n");
 		return -ENOMEM;
 	}
 
@@ -414,7 +415,7 @@ snd_wavefront_probe (struct snd_card *ca
 
 	err = snd_wss_mixer(chip);
 	if (err < 0) {
-		snd_printk (KERN_ERR "can't allocate mixer device\n");
+		dev_err(card->dev, "can't allocate mixer device\n");
 		return err;
 	}
 
@@ -425,7 +426,7 @@ snd_wavefront_probe (struct snd_card *ca
 					  cs4232_mpu_port[dev], 0,
 					  cs4232_mpu_irq[dev], NULL);
 		if (err < 0) {
-			snd_printk (KERN_ERR "can't allocate CS4232 MPU-401 device\n");
+			dev_err(card->dev, "can't allocate CS4232 MPU-401 device\n");
 			return err;
 		}
 		midi_dev++;
@@ -441,7 +442,7 @@ snd_wavefront_probe (struct snd_card *ca
 						ics2115_port[dev],
 						internal_mpu);
 		if (ics2115_internal_rmidi == NULL) {
-			snd_printk (KERN_ERR "can't setup ICS2115 internal MIDI device\n");
+			dev_err(card->dev, "can't setup ICS2115 internal MIDI device\n");
 			return -ENOMEM;
 		}
 		midi_dev++;
@@ -457,7 +458,7 @@ snd_wavefront_probe (struct snd_card *ca
 						ics2115_port[dev],
 						external_mpu);
 		if (ics2115_external_rmidi == NULL) {
-			snd_printk (KERN_ERR "can't setup ICS2115 external MIDI device\n");
+			dev_err(card->dev, "can't setup ICS2115 external MIDI device\n");
 			return -ENOMEM;
 		}
 		midi_dev++;
@@ -471,7 +472,7 @@ snd_wavefront_probe (struct snd_card *ca
 						     acard,
 						     ics2115_port[dev]);
 		if (fx_processor == NULL) {
-			snd_printk (KERN_ERR "can't setup FX device\n");
+			dev_err(card->dev, "can't setup FX device\n");
 			return -ENOMEM;
 		}
 
@@ -525,11 +526,11 @@ static int snd_wavefront_isa_match(struc
 		return 0;
 #endif
 	if (cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) {
-		snd_printk(KERN_ERR "specify CS4232 port\n");
+		dev_err(pdev, "specify CS4232 port\n");
 		return 0;
 	}
 	if (ics2115_port[dev] == SNDRV_AUTO_PORT) {
-		snd_printk(KERN_ERR "specify ICS2115 port\n");
+		dev_err(pdev, "specify ICS2115 port\n");
 		return 0;
 	}
 	return 1;
@@ -585,7 +586,7 @@ static int snd_wavefront_pnp_detect(stru
 
 	if (snd_wavefront_pnp (dev, card->private_data, pcard, pid) < 0) {
 		if (cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) {
-			snd_printk (KERN_ERR "isapnp detection failed\n");
+			dev_err(card->dev, "isapnp detection failed\n");
 			return -ENODEV;
 		}
 	}
--- a/sound/isa/wavefront/wavefront_fx.c
+++ b/sound/isa/wavefront/wavefront_fx.c
@@ -38,7 +38,7 @@ wavefront_fx_idle (snd_wavefront_t *dev)
 	}
 
 	if (x & 0x80) {
-		snd_printk ("FX device never idle.\n");
+		dev_err(dev->card->dev, "FX device never idle.\n");
 		return 0;
 	}
 
@@ -64,14 +64,14 @@ wavefront_fx_memset (snd_wavefront_t *de
 		     unsigned short *data)
 {
 	if (page < 0 || page > 7) {
-		snd_printk ("FX memset: "
-			"page must be >= 0 and <= 7\n");
+		dev_err(dev->card->dev,
+			"FX memset: page must be >= 0 and <= 7\n");
 		return -EINVAL;
 	}
 
 	if (addr < 0 || addr > 0x7f) {
-		snd_printk ("FX memset: "
-			"addr must be >= 0 and <= 7f\n");
+		dev_err(dev->card->dev,
+			"FX memset: addr must be >= 0 and <= 7f\n");
 		return -EINVAL;
 	}
 
@@ -83,7 +83,7 @@ wavefront_fx_memset (snd_wavefront_t *de
 		outb ((data[0] >> 8), dev->fx_dsp_msb);
 		outb ((data[0] & 0xff), dev->fx_dsp_lsb);
 
-		snd_printk ("FX: addr %d:%x set to 0x%x\n",
+		dev_err(dev->card->dev, "FX: addr %d:%x set to 0x%x\n",
 			page, addr, data[0]);
 
 	} else {
@@ -102,9 +102,9 @@ wavefront_fx_memset (snd_wavefront_t *de
 		}
 
 		if (i != cnt) {
-			snd_printk ("FX memset "
-				    "(0x%x, 0x%x, 0x%lx, %d) incomplete\n",
-				    page, addr, (unsigned long) data, cnt);
+			dev_err(dev->card->dev,
+				"FX memset (0x%x, 0x%x, 0x%lx, %d) incomplete\n",
+				page, addr, (unsigned long) data, cnt);
 			return -EIO;
 		}
 	}
@@ -123,7 +123,7 @@ snd_wavefront_fx_detect (snd_wavefront_t
 	*/
 
 	if (inb (dev->fx_status) & 0x80) {
-		snd_printk ("Hmm, probably a Maui or Tropez.\n");
+		dev_err(dev->card->dev, "Hmm, probably a Maui or Tropez.\n");
 		return -1;
 	}
 
@@ -180,15 +180,15 @@ snd_wavefront_fx_ioctl (struct snd_hwdep
 
 	case WFFX_MEMSET:
 		if (r.data[2] <= 0) {
-			snd_printk ("cannot write "
-				"<= 0 bytes to FX\n");
+			dev_err(dev->card->dev,
+				"cannot write <= 0 bytes to FX\n");
 			return -EIO;
 		} else if (r.data[2] == 1) {
 			pd = (unsigned short *) &r.data[3];
 		} else {
 			if (r.data[2] > 256) {
-				snd_printk ("cannot write "
-					    "> 512 bytes to FX\n");
+				dev_err(dev->card->dev,
+					"cannot write > 512 bytes to FX\n");
 				return -EIO;
 			}
 			page_data = memdup_user((unsigned char __user *)
@@ -208,8 +208,8 @@ snd_wavefront_fx_ioctl (struct snd_hwdep
 		break;
 
 	default:
-		snd_printk ("FX: ioctl %d not yet supported\n",
-			    r.request);
+		dev_err(dev->card->dev, "FX: ioctl %d not yet supported\n",
+			r.request);
 		return -ENOTTY;
 	}
 	return err;
@@ -254,8 +254,8 @@ snd_wavefront_fx_start (snd_wavefront_t
 				goto out;
 			}
 		} else {
-			snd_printk(KERN_ERR "invalid address"
-				   " in register data\n");
+			dev_err(dev->card->dev,
+				"invalid address in register data\n");
 			err = -1;
 			goto out;
 		}
--- a/sound/isa/wavefront/wavefront_midi.c
+++ b/sound/isa/wavefront/wavefront_midi.c
@@ -503,7 +503,8 @@ snd_wavefront_midi_start (snd_wavefront_
 	for (i = 0; i < 30000 && !output_ready (midi); i++);
 
 	if (!output_ready (midi)) {
-		snd_printk ("MIDI interface not ready for command\n");
+		dev_err(card->wavefront.card->dev,
+			"MIDI interface not ready for command\n");
 		return -1;
 	}
 
@@ -525,7 +526,8 @@ snd_wavefront_midi_start (snd_wavefront_
 	}
 
 	if (!ok) {
-		snd_printk ("cannot set UART mode for MIDI interface");
+		dev_err(card->wavefront.card->dev,
+			"cannot set UART mode for MIDI interface");
 		dev->interrupts_are_midi = 0;
 		return -1;
 	}
@@ -533,7 +535,8 @@ snd_wavefront_midi_start (snd_wavefront_
 	/* Route external MIDI to WaveFront synth (by default) */
     
 	if (snd_wavefront_cmd (dev, WFC_MISYNTH_ON, rbuf, wbuf)) {
-		snd_printk ("can't enable MIDI-IN-2-synth routing.\n");
+		dev_warn(card->wavefront.card->dev,
+			 "can't enable MIDI-IN-2-synth routing.\n");
 		/* XXX error ? */
 	}
 
@@ -549,14 +552,16 @@ snd_wavefront_midi_start (snd_wavefront_
 	*/
 
 	if (snd_wavefront_cmd (dev, WFC_VMIDI_OFF, rbuf, wbuf)) { 
-		snd_printk ("virtual MIDI mode not disabled\n");
+		dev_warn(card->wavefront.card->dev,
+			 "virtual MIDI mode not disabled\n");
 		return 0; /* We're OK, but missing the external MIDI dev */
 	}
 
 	snd_wavefront_midi_enable_virtual (card);
 
 	if (snd_wavefront_cmd (dev, WFC_VMIDI_ON, rbuf, wbuf)) {
-		snd_printk ("cannot enable virtual MIDI mode.\n");
+		dev_warn(card->wavefront.card->dev,
+			 "cannot enable virtual MIDI mode.\n");
 		snd_wavefront_midi_disable_virtual (card);
 	} 
 	return 0;
--- a/sound/isa/wavefront/wavefront_synth.c
+++ b/sound/isa/wavefront/wavefront_synth.c
@@ -116,7 +116,7 @@ MODULE_PARM_DESC(osrun_time, "how many s
 
 #define DPRINT(cond, ...) \
        if ((dev->debug & (cond)) == (cond)) { \
-	     snd_printk (__VA_ARGS__); \
+	     pr_debug(__VA_ARGS__); \
        }
 #else
 #define DPRINT(cond, args...)
@@ -341,7 +341,7 @@ snd_wavefront_cmd (snd_wavefront_t *dev,
 
 	wfcmd = wavefront_get_command(cmd);
 	if (!wfcmd) {
-		snd_printk ("command 0x%x not supported.\n",
+		dev_err(dev->card->dev, "command 0x%x not supported.\n",
 			cmd);
 		return 1;
 	}
@@ -625,7 +625,7 @@ wavefront_get_sample_status (snd_wavefro
 	/* check sample status */
     
 	if (snd_wavefront_cmd (dev, WFC_GET_NSAMPLES, rbuf, wbuf)) {
-		snd_printk ("cannot request sample count.\n");
+		dev_err(dev->card->dev, "cannot request sample count.\n");
 		return -1;
 	} 
     
@@ -637,8 +637,8 @@ wavefront_get_sample_status (snd_wavefro
 		wbuf[1] = i >> 7;
 
 		if (snd_wavefront_cmd (dev, WFC_IDENTIFY_SAMPLE_TYPE, rbuf, wbuf)) {
-			snd_printk(KERN_WARNING "cannot identify sample "
-				   "type of slot %d\n", i);
+			dev_warn(dev->card->dev,
+				 "cannot identify sample type of slot %d\n", i);
 			dev->sample_status[i] = WF_ST_EMPTY;
 			continue;
 		}
@@ -663,9 +663,9 @@ wavefront_get_sample_status (snd_wavefro
 			break;
 
 		default:
-			snd_printk ("unknown sample type for "
-				    "slot %d (0x%x)\n", 
-				    i, rbuf[0]);
+			dev_err(dev->card->dev,
+				"unknown sample type for slot %d (0x%x)\n",
+				i, rbuf[0]);
 		}
 
 		if (rbuf[0] != WF_ST_EMPTY) {
@@ -673,9 +673,10 @@ wavefront_get_sample_status (snd_wavefro
 		} 
 	}
 
-	snd_printk ("%d samples used (%d real, %d aliases, %d multi), "
-		    "%d empty\n", dev->samples_used, sc_real, sc_alias, sc_multi,
-		    WF_MAX_SAMPLE - dev->samples_used);
+	dev_info(dev->card->dev,
+		 "%d samples used (%d real, %d aliases, %d multi), %d empty\n",
+		 dev->samples_used, sc_real, sc_alias, sc_multi,
+		 WF_MAX_SAMPLE - dev->samples_used);
 
 
 	return (0);
@@ -708,8 +709,8 @@ wavefront_get_patch_status (snd_wavefron
 		} else if (x == 3) { /* Bad patch number */
 			dev->patch_status[i] = 0;
 		} else {
-			snd_printk ("upload patch "
-				    "error 0x%x\n", x);
+			dev_err(dev->card->dev,
+				"upload patch error 0x%x\n", x);
 			dev->patch_status[i] = 0;
 			return 1;
 		}
@@ -726,7 +727,8 @@ wavefront_get_patch_status (snd_wavefron
 		}
 	
 	}
-	snd_printk ("%d patch slots filled, %d in use\n", cnt, cnt2);
+	dev_info(dev->card->dev, "%d patch slots filled, %d in use\n",
+		 cnt, cnt2);
 
 	return (0);
 }
@@ -762,8 +764,8 @@ wavefront_get_program_status (snd_wavefr
 		} else if (x == 1) { /* Bad program number */
 			dev->prog_status[i] = 0;
 		} else {
-			snd_printk ("upload program "
-				    "error 0x%x\n", x);
+			dev_err(dev->card->dev,
+				"upload program error 0x%x\n", x);
 			dev->prog_status[i] = 0;
 		}
 	}
@@ -774,7 +776,7 @@ wavefront_get_program_status (snd_wavefr
 		}
 	}
 
-	snd_printk ("%d programs slots in use\n", cnt);
+	dev_info(dev->card->dev, "%d programs slots in use\n", cnt);
 
 	return (0);
 }
@@ -798,7 +800,7 @@ wavefront_send_patch (snd_wavefront_t *d
 	munge_buf ((unsigned char *)&header->hdr.p, bptr, WF_PATCH_BYTES);
     
 	if (snd_wavefront_cmd (dev, WFC_DOWNLOAD_PATCH, NULL, buf)) {
-		snd_printk ("download patch failed\n");
+		dev_err(dev->card->dev, "download patch failed\n");
 		return -EIO;
 	}
 
@@ -839,7 +841,7 @@ wavefront_send_program (snd_wavefront_t
 	munge_buf ((unsigned char *)&header->hdr.pr, &buf[1], WF_PROGRAM_BYTES);
     
 	if (snd_wavefront_cmd (dev, WFC_DOWNLOAD_PROGRAM, NULL, buf)) {
-		snd_printk ("download patch failed\n");	
+		dev_err(dev->card->dev, "download patch failed\n");
 		return -EIO;
 	}
 
@@ -853,7 +855,7 @@ wavefront_freemem (snd_wavefront_t *dev)
 	char rbuf[8];
 
 	if (snd_wavefront_cmd (dev, WFC_REPORT_FREE_MEMORY, rbuf, NULL)) {
-		snd_printk ("can't get memory stats.\n");
+		dev_err(dev->card->dev, "can't get memory stats.\n");
 		return -1;
 	} else {
 		return demunge_int32 (rbuf, 4);
@@ -903,7 +905,7 @@ wavefront_send_sample (snd_wavefront_t *
 		x = wavefront_find_free_sample(dev);
 		if (x < 0)
 			return -ENOMEM;
-		snd_printk ("unspecified sample => %d\n", x);
+		dev_info(dev->card->dev, "unspecified sample => %d\n", x);
 		header->number = x;
 	}
 
@@ -937,9 +939,9 @@ wavefront_send_sample (snd_wavefront_t *
 
 		if (dev->rom_samples_rdonly) {
 			if (dev->sample_status[header->number] & WF_SLOT_ROM) {
-				snd_printk ("sample slot %d "
-					    "write protected\n",
-					    header->number);
+				dev_err(dev->card->dev,
+					"sample slot %d write protected\n",
+					header->number);
 				return -EACCES;
 			}
 		}
@@ -951,9 +953,9 @@ wavefront_send_sample (snd_wavefront_t *
 		dev->freemem = wavefront_freemem (dev);
 
 		if (dev->freemem < (int)header->size) {
-			snd_printk ("insufficient memory to "
-				    "load %d byte sample.\n",
-				    header->size);
+			dev_err(dev->card->dev,
+				"insufficient memory to load %d byte sample.\n",
+				header->size);
 			return -ENOMEM;
 		}
 	
@@ -962,8 +964,8 @@ wavefront_send_sample (snd_wavefront_t *
 	skip = WF_GET_CHANNEL(&header->hdr.s);
 
 	if (skip > 0 && header->hdr.s.SampleResolution != LINEAR_16BIT) {
-		snd_printk ("channel selection only "
-			    "possible on 16-bit samples");
+		dev_err(dev->card->dev,
+			"channel selection only possible on 16-bit samples");
 		return -EINVAL;
 	}
 
@@ -1059,8 +1061,8 @@ wavefront_send_sample (snd_wavefront_t *
 			   header->size ?
 			   WFC_DOWNLOAD_SAMPLE : WFC_DOWNLOAD_SAMPLE_HEADER,
 			   NULL, sample_hdr)) {
-		snd_printk ("sample %sdownload refused.\n",
-			    header->size ? "" : "header ");
+		dev_err(dev->card->dev, "sample %sdownload refused.\n",
+			header->size ? "" : "header ");
 		return -EIO;
 	}
 
@@ -1085,8 +1087,8 @@ wavefront_send_sample (snd_wavefront_t *
 		}
 
 		if (snd_wavefront_cmd (dev, WFC_DOWNLOAD_BLOCK, NULL, NULL)) {
-			snd_printk ("download block "
-				    "request refused.\n");
+			dev_err(dev->card->dev,
+				"download block request refused.\n");
 			return -EIO;
 		}
 
@@ -1147,13 +1149,13 @@ wavefront_send_sample (snd_wavefront_t *
 		dma_ack = wavefront_read(dev);
 		if (dma_ack != WF_DMA_ACK) {
 			if (dma_ack == -1) {
-				snd_printk ("upload sample "
-					    "DMA ack timeout\n");
+				dev_err(dev->card->dev,
+					"upload sample DMA ack timeout\n");
 				return -EIO;
 			} else {
-				snd_printk ("upload sample "
-					    "DMA ack error 0x%x\n",
-					    dma_ack);
+				dev_err(dev->card->dev,
+					"upload sample DMA ack error 0x%x\n",
+					dma_ack);
 				return -EIO;
 			}
 		}
@@ -1197,7 +1199,7 @@ wavefront_send_alias (snd_wavefront_t *d
 	munge_int32 (*(&header->hdr.a.FrequencyBias+1), &alias_hdr[23], 2);
 
 	if (snd_wavefront_cmd (dev, WFC_DOWNLOAD_SAMPLE_ALIAS, NULL, alias_hdr)) {
-		snd_printk ("download alias failed.\n");
+		dev_err(dev->card->dev, "download alias failed.\n");
 		return -EIO;
 	}
 
@@ -1250,7 +1252,7 @@ wavefront_send_multisample (snd_wavefron
 	if (snd_wavefront_cmd (dev, WFC_DOWNLOAD_MULTISAMPLE, 
 			   (unsigned char *) (long) ((num_samples*2)+3),
 			   msample_hdr)) {
-		snd_printk ("download of multisample failed.\n");
+		dev_err(dev->card->dev, "download of multisample failed.\n");
 		kfree(msample_hdr);
 		return -EIO;
 	}
@@ -1273,7 +1275,7 @@ wavefront_fetch_multisample (snd_wavefro
 	munge_int32 (header->number, number, 2);
     
 	if (snd_wavefront_cmd (dev, WFC_UPLOAD_MULTISAMPLE, log_ns, number)) {
-		snd_printk ("upload multisample failed.\n");
+		dev_err(dev->card->dev, "upload multisample failed.\n");
 		return -EIO;
 	}
     
@@ -1292,16 +1294,16 @@ wavefront_fetch_multisample (snd_wavefro
 	
 		val = wavefront_read(dev);
 		if (val == -1) {
-			snd_printk ("upload multisample failed "
-				    "during sample loop.\n");
+			dev_err(dev->card->dev,
+				"upload multisample failed during sample loop.\n");
 			return -EIO;
 		}
 		d[0] = val;
 
 		val = wavefront_read(dev);
 		if (val == -1) {
-			snd_printk ("upload multisample failed "
-				    "during sample loop.\n");
+			dev_err(dev->card->dev,
+				"upload multisample failed during sample loop.\n");
 			return -EIO;
 		}
 		d[1] = val;
@@ -1336,7 +1338,7 @@ wavefront_send_drum (snd_wavefront_t *de
 	}
 
 	if (snd_wavefront_cmd (dev, WFC_DOWNLOAD_EDRUM_PROGRAM, NULL, drumbuf)) {
-		snd_printk ("download drum failed.\n");
+		dev_err(dev->card->dev, "download drum failed.\n");
 		return -EIO;
 	}
 
@@ -1354,7 +1356,7 @@ wavefront_find_free_sample (snd_wavefron
 			return i;
 		}
 	}
-	snd_printk ("no free sample slots!\n");
+	dev_err(dev->card->dev, "no free sample slots!\n");
 	return -1;
 }
 
@@ -1370,7 +1372,7 @@ wavefront_find_free_patch (snd_wavefront
 			return i;
 		}
 	}
-	snd_printk ("no free patch slots!\n");
+	dev_err(dev->card->dev, "no free patch slots!\n");
 	return -1;
 }
 #endif
@@ -1387,7 +1389,7 @@ wavefront_load_patch (snd_wavefront_t *d
 
 	if (copy_from_user (header, addr, sizeof(wavefront_patch_info) -
 			    sizeof(wavefront_any))) {
-		snd_printk ("bad address for load patch.\n");
+		dev_err(dev->card->dev, "bad address for load patch.\n");
 		err = -EFAULT;
 		goto __error;
 	}
@@ -1465,8 +1467,8 @@ wavefront_load_patch (snd_wavefront_t *d
 		break;
 
 	default:
-		snd_printk ("unknown patch type %d.\n",
-			    header->subkey);
+		dev_err(dev->card->dev, "unknown patch type %d.\n",
+			header->subkey);
 		err = -EINVAL;
 		break;
 	}
@@ -1529,13 +1531,13 @@ wavefront_synth_control (snd_wavefront_c
 	switch (wc->cmd) {
 		
 	case WFC_DISABLE_INTERRUPTS:
-		snd_printk ("interrupts disabled.\n");
+		dev_dbg(dev->card->dev, "interrupts disabled.\n");
 		outb (0x80|0x20, dev->control_port);
 		dev->interrupts_are_midi = 1;
 		return 0;
 
 	case WFC_ENABLE_INTERRUPTS:
-		snd_printk ("interrupts enabled.\n");
+		dev_dbg(dev->card->dev, "interrupts enabled.\n");
 		outb (0x80|0x40|0x20, dev->control_port);
 		dev->interrupts_are_midi = 1;
 		return 0;
@@ -1552,7 +1554,7 @@ wavefront_synth_control (snd_wavefront_c
 	case WFC_IDENTIFY_SLOT_TYPE:
 		i = wc->wbuf[0] | (wc->wbuf[1] << 7);
 		if (i <0 || i >= WF_MAX_SAMPLE) {
-			snd_printk ("invalid slot ID %d\n",
+			dev_err(dev->card->dev, "invalid slot ID %d\n",
 				i);
 			wc->status = EINVAL;
 			return -EINVAL;
@@ -1563,7 +1565,7 @@ wavefront_synth_control (snd_wavefront_c
 
 	case WFC_DEBUG_DRIVER:
 		dev->debug = wc->wbuf[0];
-		snd_printk ("debug = 0x%x\n", dev->debug);
+		dev_dbg(dev->card->dev, "debug = 0x%x\n", dev->debug);
 		return 0;
 
 	case WFC_UPLOAD_PATCH:
@@ -1580,8 +1582,8 @@ wavefront_synth_control (snd_wavefront_c
 		return 0;
 
 	case WFC_UPLOAD_SAMPLE_ALIAS:
-		snd_printk ("support for sample alias upload "
-			"being considered.\n");
+		dev_err(dev->card->dev,
+			"support for sample alias upload being considered.\n");
 		wc->status = EINVAL;
 		return -EINVAL;
 	}
@@ -1622,9 +1624,8 @@ wavefront_synth_control (snd_wavefront_c
 			break;
 
 		case WFC_UPLOAD_SAMPLE_ALIAS:
-			snd_printk ("support for "
-				    "sample aliases still "
-				    "being considered.\n");
+			dev_err(dev->card->dev,
+				"support for sample aliases still being considered.\n");
 			break;
 
 		case WFC_VMIDI_OFF:
@@ -1762,7 +1763,7 @@ snd_wavefront_internal_interrupt (snd_wa
 */
 
 static int
-snd_wavefront_interrupt_bits (int irq)
+snd_wavefront_interrupt_bits(snd_wavefront_t *dev, int irq)
 
 {
 	int bits;
@@ -1782,7 +1783,7 @@ snd_wavefront_interrupt_bits (int irq)
 		break;
 	
 	default:
-		snd_printk ("invalid IRQ %d\n", irq);
+		dev_err(dev->card->dev, "invalid IRQ %d\n", irq);
 		bits = -1;
 	}
 
@@ -1817,7 +1818,7 @@ wavefront_reset_to_cleanliness (snd_wave
 
 	/* IRQ already checked */
 
-	bits = snd_wavefront_interrupt_bits (dev->irq);
+	bits = snd_wavefront_interrupt_bits(dev, dev->irq);
 
 	/* try reset of port */
 
@@ -1887,7 +1888,7 @@ wavefront_reset_to_cleanliness (snd_wave
 	 */
 
 	if (!dev->irq_ok) {
-		snd_printk ("intr not received after h/w un-reset.\n");
+		dev_err(dev->card->dev, "intr not received after h/w un-reset.\n");
 		goto gone_bad;
 	} 
 
@@ -1911,18 +1912,18 @@ wavefront_reset_to_cleanliness (snd_wave
 					 dev->data_port, ramcheck_time*HZ);
 
 	if (!dev->irq_ok) {
-		snd_printk ("post-RAM-check interrupt not received.\n");
+		dev_err(dev->card->dev, "post-RAM-check interrupt not received.\n");
 		goto gone_bad;
 	} 
 
 	if (!wavefront_wait (dev, STAT_CAN_READ)) {
-		snd_printk ("no response to HW version cmd.\n");
+		dev_err(dev->card->dev, "no response to HW version cmd.\n");
 		goto gone_bad;
 	}
 	
 	hwv[0] = wavefront_read(dev);
 	if (hwv[0] == -1) {
-		snd_printk ("board not responding correctly.\n");
+		dev_err(dev->card->dev, "board not responding correctly.\n");
 		goto gone_bad;
 	}
 
@@ -1934,11 +1935,11 @@ wavefront_reset_to_cleanliness (snd_wave
 		
 		hwv[0] = wavefront_read(dev);
 		if (hwv[0] == -1) {
-			snd_printk ("on-board RAM test failed "
-				    "(bad error code).\n");
+			dev_err(dev->card->dev,
+				"on-board RAM test failed (bad error code).\n");
 		} else {
-			snd_printk ("on-board RAM test failed "
-				    "(error code: 0x%x).\n",
+			dev_err(dev->card->dev,
+				"on-board RAM test failed (error code: 0x%x).\n",
 				hwv[0]);
 		}
 		goto gone_bad;
@@ -1948,12 +1949,12 @@ wavefront_reset_to_cleanliness (snd_wave
 
 	hwv[1] = wavefront_read(dev);
 	if (hwv[1] == -1) {
-		snd_printk ("incorrect h/w response.\n");
+		dev_err(dev->card->dev, "incorrect h/w response.\n");
 		goto gone_bad;
 	}
 
-	snd_printk ("hardware version %d.%d\n",
-		    hwv[0], hwv[1]);
+	dev_info(dev->card->dev, "hardware version %d.%d\n",
+		 hwv[0], hwv[1]);
 
 	return 0;
 
@@ -1973,7 +1974,7 @@ wavefront_download_firmware (snd_wavefro
 
 	err = request_firmware(&firmware, path, dev->card->dev);
 	if (err < 0) {
-		snd_printk(KERN_ERR "firmware (%s) download failed!!!\n", path);
+		dev_err(dev->card->dev, "firmware (%s) download failed!!!\n", path);
 		return 1;
 	}
 
@@ -1984,16 +1985,16 @@ wavefront_download_firmware (snd_wavefro
 		if (section_length == 0)
 			break;
 		if (section_length < 0 || section_length > WF_SECTION_MAX) {
-			snd_printk(KERN_ERR
-				   "invalid firmware section length %d\n",
-				   section_length);
+			dev_err(dev->card->dev,
+				"invalid firmware section length %d\n",
+				section_length);
 			goto failure;
 		}
 		buf++;
 		len++;
 
 		if (firmware->size < len + section_length) {
-			snd_printk(KERN_ERR "firmware section read error.\n");
+			dev_err(dev->card->dev, "firmware section read error.\n");
 			goto failure;
 		}
 
@@ -2010,15 +2011,14 @@ wavefront_download_firmware (snd_wavefro
 	
 		/* get ACK */
 		if (!wavefront_wait(dev, STAT_CAN_READ)) {
-			snd_printk(KERN_ERR "time out for firmware ACK.\n");
+			dev_err(dev->card->dev, "time out for firmware ACK.\n");
 			goto failure;
 		}
 		err = inb(dev->data_port);
 		if (err != WF_ACK) {
-			snd_printk(KERN_ERR
-				   "download of section #%d not "
-				   "acknowledged, ack = 0x%x\n",
-				   section_cnt_downloaded + 1, err);
+			dev_err(dev->card->dev,
+				"download of section #%d not acknowledged, ack = 0x%x\n",
+				section_cnt_downloaded + 1, err);
 			goto failure;
 		}
 
@@ -2030,7 +2030,7 @@ wavefront_download_firmware (snd_wavefro
 
  failure:
 	release_firmware(firmware);
-	snd_printk(KERN_ERR "firmware download failed!!!\n");
+	dev_err(dev->card->dev, "firmware download failed!!!\n");
 	return 1;
 }
 
@@ -2042,7 +2042,7 @@ wavefront_do_reset (snd_wavefront_t *dev
 	char voices[1];
 
 	if (wavefront_reset_to_cleanliness (dev)) {
-		snd_printk ("hw reset failed.\n");
+		dev_err(dev->card->dev, "hw reset failed.\n");
 		goto gone_bad;
 	}
 
@@ -2066,7 +2066,7 @@ wavefront_do_reset (snd_wavefront_t *dev
 						  (osrun_time*HZ));
 
 		if (!dev->irq_ok) {
-			snd_printk ("no post-OS interrupt.\n");
+			dev_err(dev->card->dev, "no post-OS interrupt.\n");
 			goto gone_bad;
 		}
 		
@@ -2076,7 +2076,7 @@ wavefront_do_reset (snd_wavefront_t *dev
 						  dev->data_port, (10*HZ));
 		
 		if (!dev->irq_ok) {
-			snd_printk ("no post-OS interrupt(2).\n");
+			dev_err(dev->card->dev, "no post-OS interrupt(2).\n");
 			goto gone_bad;
 		}
 
@@ -2096,20 +2096,20 @@ wavefront_do_reset (snd_wavefront_t *dev
 	if (dev->freemem < 0)
 		goto gone_bad;
 		
-	snd_printk ("available DRAM %dk\n", dev->freemem / 1024);
+	dev_info(dev->card->dev, "available DRAM %dk\n", dev->freemem / 1024);
 
 	if (wavefront_write (dev, 0xf0) ||
 	    wavefront_write (dev, 1) ||
 	    (wavefront_read (dev) < 0)) {
 		dev->debug = 0;
-		snd_printk ("MPU emulation mode not set.\n");
+		dev_err(dev->card->dev, "MPU emulation mode not set.\n");
 		goto gone_bad;
 	}
 
 	voices[0] = 32;
 
 	if (snd_wavefront_cmd (dev, WFC_SET_NVOICES, NULL, voices)) {
-		snd_printk ("cannot set number of voices to 32.\n");
+		dev_err(dev->card->dev, "cannot set number of voices to 32.\n");
 		goto gone_bad;
 	}
 
@@ -2189,8 +2189,8 @@ snd_wavefront_detect (snd_wavefront_card
 		dev->fw_version[0] = rbuf[0];
 		dev->fw_version[1] = rbuf[1];
 
-		snd_printk ("firmware %d.%d already loaded.\n",
-			    rbuf[0], rbuf[1]);
+		dev_info(dev->card->dev, "firmware %d.%d already loaded.\n",
+			 rbuf[0], rbuf[1]);
 
 		/* check that a command actually works */
       
@@ -2199,22 +2199,24 @@ snd_wavefront_detect (snd_wavefront_card
 			dev->hw_version[0] = rbuf[0];
 			dev->hw_version[1] = rbuf[1];
 		} else {
-			snd_printk ("not raw, but no "
-				    "hardware version!\n");
+			dev_err(dev->card->dev,
+				"not raw, but no hardware version!\n");
 			return -1;
 		}
 
 		if (!wf_raw) {
 			return 0;
 		} else {
-			snd_printk ("reloading firmware as you requested.\n");
+			dev_info(dev->card->dev,
+				 "reloading firmware as you requested.\n");
 			dev->israw = 1;
 		}
 
 	} else {
 
 		dev->israw = 1;
-		snd_printk ("no response to firmware probe, assume raw.\n");
+		dev_info(dev->card->dev,
+			 "no response to firmware probe, assume raw.\n");
 
 	}
 



  parent reply	other threads:[~2026-01-15 17:34 UTC|newest]

Thread overview: 564+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-15 16:41 [PATCH 5.15 000/554] 5.15.198-rc1 review Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 001/554] xfrm: delete x->tunnel as we delete x Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 002/554] Revert "xfrm: destroy xfrm_state synchronously on net exit path" Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 003/554] xfrm: also call xfrm_state_delete_tunnel at destroy time for states that were never added Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 004/554] xfrm: flush all states in xfrm_state_fini Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 005/554] dpaa2-mac: bail if the dpmacs fwnode is not found Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 006/554] drm/i915/selftests: Fix inconsistent IS_ERR and PTR_ERR Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 007/554] leds: Replace all non-returning strlcpy with strscpy Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 008/554] leds: spi-byte: Use devm_led_classdev_register_ext() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 009/554] Documentation: process: Also mention Sasha Levin as stable tree maintainer Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 010/554] jbd2: avoid bug_on in jbd2_journal_get_create_access() when file system corrupted Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 011/554] ext4: refresh inline data size before write operations Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 012/554] locking/spinlock/debug: Fix data-race in do_raw_write_lock Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 013/554] ext4: add i_data_sem protection in ext4_destroy_inline_data_nolock() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 014/554] comedi: pcl818: fix null-ptr-deref in pcl818_ai_cancel() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 015/554] USB: serial: option: add Foxconn T99W760 Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 016/554] USB: serial: option: add Telit Cinterion FE910C04 new compositions Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 017/554] USB: serial: option: move Telit 0x10c7 composition in the right place Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 018/554] USB: serial: ftdi_sio: match on interface number for jtag Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 019/554] serial: add support of CPCI cards Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 020/554] USB: serial: belkin_sa: fix TIOCMBIS and TIOCMBIC Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 021/554] USB: serial: kobil_sct: " Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 022/554] spi: xilinx: increase number of retries before declaring stall Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 023/554] spi: imx: keep dma request disabled before dma transfer setup Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 024/554] bfs: Reconstruct file type when loading from disk Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 025/554] pinctrl: qcom: msm: Fix deadlock in pinmux configuration Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 026/554] platform/x86: acer-wmi: Ignore backlight event Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 027/554] platform/x86: huawei-wmi: add keys for HONOR models Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 028/554] HID: elecom: Add support for ELECOM M-XT3URBK (018F) Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 029/554] samples: work around glibc redefining some of our defines wrong Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 030/554] comedi: c6xdigio: Fix invalid PNP driver unregistration Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 031/554] comedi: multiq3: sanitize config options in multiq3_attach() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 032/554] comedi: check devices attached status in compat ioctls Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 033/554] staging: rtl8723bs: fix stack buffer overflow in OnAssocReq IE parsing Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 034/554] staging: rtl8723bs: fix out-of-bounds read in OnBeacon ESR " Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 035/554] smack: fix bug: unprivileged task can create labels Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 036/554] gpu: host1x: Fix race in syncpt alloc/free Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 037/554] drm/panel: visionox-rm69299: Dont clear all mode flags Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 038/554] drm/vgem-fence: Fix potential deadlock on release Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 039/554] USB: Fix descriptor count when handling invalid MBIM extended descriptor Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 040/554] irqchip/qcom-irq-combiner: Fix section mismatch Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 041/554] ntfs3: fix uninit memory after failed mi_read in mi_format_new Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 042/554] ntfs3: Fix uninit buffer allocated by __getname() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 043/554] rculist: Add hlist_nulls_replace_rcu() and hlist_nulls_replace_init_rcu() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 044/554] inet: Avoid ehash lookup race in inet_ehash_insert() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 045/554] iio: imu: st_lsm6dsx: introduce st_lsm6dsx_device_set_enable routine Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 046/554] iio: imu: st_lsm6dsx: discard samples during filters settling time Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 047/554] iio: imu: st_lsm6dsx: Fix measurement unit for odr struct member Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 048/554] arm64: dts: imx8mm-venice-gw72xx: remove unused sdhc1 pinctrl Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 049/554] uio: uio_fsl_elbc_gpcm:: Add null pointer check to uio_fsl_elbc_gpcm_probe Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 050/554] crypto: asymmetric_keys - prevent overflow in asymmetric_key_generate_id Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 051/554] crypto: hisilicon/qm - restore original qos values Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 052/554] s390/smp: Fix fallback CPU detection Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 053/554] s390/ap: Dont leak debug feature files if AP instructions are not available Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 054/554] firmware: imx: scu-irq: fix OF node leak in Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 055/554] phy: mscc: Fix PTP for VSC8574 and VSC8572 Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 056/554] sctp: Defer SCTP_DBG_OBJCNT_DEC() to sctp_destroy_sock() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 057/554] compiler-gcc.h: Define __SANITIZE_ADDRESS__ under hwaddress sanitizer Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 058/554] kmsan: introduce __no_sanitize_memory and __no_kmsan_checks Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 059/554] x86: kmsan: dont instrument stack walking functions Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 060/554] x86/dumpstack: Prevent KASAN false positive warnings in __show_regs() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 061/554] pinctrl: stm32: fix hwspinlock resource leak in probe function Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 062/554] i3c: remove i2c board info from i2c_dev_desc Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 063/554] i3c: support dynamically added i2c devices Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 064/554] i3c: Allow OF-alias-based persistent bus numbering Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 065/554] i3c: master: Inherit DMA masks and parameters from parent device Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 066/554] i3c: fix refcount inconsistency in i3c_master_register Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 067/554] i3c: master: svc: Prevent incomplete IBI transaction Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 068/554] power: supply: wm831x: Check wm831x_set_bits() return value Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 069/554] power: supply: apm_power: only unset own apm_get_power_status Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 070/554] scsi: target: Do not write NUL characters into ASCII configfs output Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 071/554] spi: tegra210-quad: use device_reset method Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 072/554] spi: tegra210-quad: add new chips to compatible Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 073/554] spi: tegra210-quad: combined sequence mode Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 074/554] spi: tegra210-quad: modify chip select (CS) deactivation Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 075/554] spi: tegra210-quad: Fix timeout handling Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 076/554] mfd: da9055: Fix missing regmap_del_irq_chip() in error path Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 077/554] ext4: minor defrag code improvements Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 078/554] ext4: correct the checking of quota files before moving extents Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 079/554] perf/x86/intel: Correct large PEBS flag check Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 080/554] regulator: core: disable supply if enabling main regulator fails Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 081/554] nbd: clean up return value checking of sock_xmit() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 082/554] nbd: partition nbd_read_stat() into nbd_read_reply() and nbd_handle_reply() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 083/554] nbd: defer config put in recv_work Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 084/554] scsi: stex: Fix reboot_notifier leak in probe error path Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 085/554] dt-bindings: PCI: convert amlogic,meson-pcie.txt to dt-schema Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 086/554] dt-bindings: PCI: amlogic: Fix the register name of the DBI region Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 087/554] RDMA/rtrs: server: Fix error handling in get_or_create_srv Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 088/554] ntfs3: init run lock for extend inode Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 089/554] powerpc/32: Fix unpaired stwcx. on interrupt exit Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 090/554] macintosh/mac_hid: fix race condition in mac_hid_toggle_emumouse Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 091/554] wifi: cw1200: Fix potential memory leak in cw1200_bh_rx_helper() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 092/554] nbd: defer config unlock in nbd_genl_connect Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 093/554] coresight: etm4x: Save restore TRFCR_EL1 Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 094/554] coresight: etm4x: Use Trace Filtering controls dynamically Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 095/554] coresight-etm4x: add isb() before reading the TRCSTATR Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 096/554] coresight: etm4x: Extract the trace unit controlling Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 097/554] coresight: etm4x: Add context synchronization before enabling trace Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 098/554] clk: renesas: r9a06g032: Export function to set dmamux Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 099/554] soc: renesas: r9a06g032-sysctrl: Handle h2mode setting based on USBF presence Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 100/554] clk: renesas: r9a06g032: Fix memory leak in error path Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 101/554] lib/vsprintf: Check pointer before dereferencing in time_and_date() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 102/554] ocfs2: relax BUG() to ocfs2_error() in __ocfs2_move_extent() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 103/554] ACPI: property: Fix fwnode refcount leak in acpi_fwnode_graph_parse_endpoint() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 104/554] scsi: sim710: Fix resource leak by adding missing ioport_unmap() calls Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 105/554] leds: netxbig: Fix GPIO descriptor leak in error paths Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 106/554] PCI: keystone: Exit ks_pcie_probe() for invalid mode Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 107/554] ps3disk: use memcpy_{from,to}_bvec index Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 108/554] selftests/bpf: Fix failure paths in send_signal test Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 109/554] watchdog: wdat_wdt: Stop watchdog when uninstalling module Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 110/554] watchdog: wdat_wdt: Fix ACPI table leak in probe function Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 111/554] NFSD/blocklayout: Fix minlength check in proc_layoutget Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 112/554] wifi: rtl818x: Fix potential memory leaks in rtl8180_init_rx_ring() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 113/554] powerpc/64s/ptdump: Fix kernel_hash_pagetable dump for ISA v3.00 HPTE format Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 114/554] fs/ntfs3: Remove unused mi_mark_free Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 115/554] fs/ntfs3: Add new argument is_mft to ntfs_mark_rec_free Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 116/554] fs/ntfs3: Make ni_ins_new_attr return error Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 117/554] fs/ntfs3: out1 also needs to put mi Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 118/554] fs/ntfs3: Prevent memory leaks in add sub record Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 119/554] drm/mediatek: Fix CCORR mtk_ctm_s31_32_to_s1_n function issue Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 120/554] pwm: bcm2835: Make sure the channel is enabled after pwm_request() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 121/554] mfd: mt6397-irq: Fix missing irq_domain_remove() in error path Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 122/554] mfd: mt6358-irq: " Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 123/554] wifi: rtl818x: rtl8187: Fix potential buffer underflow in rtl8187_rx_cb() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 124/554] ima: Handle error code returned by ima_filter_rule_match() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 125/554] usb: chaoskey: fix locking for O_NONBLOCK Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 126/554] usb: dwc2: disable platform lowlevel hw resources during shutdown Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 127/554] usb: dwc2: fix hang during shutdown if set as peripheral Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 128/554] usb: dwc2: fix hang during suspend " Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 129/554] usb: raw-gadget: cap raw_io transfer length to KMALLOC_MAX_SIZE Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 130/554] selftests/bpf: skip test_perf_branches_hw() on unsupported platforms Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 131/554] selftests/bpf: Improve reliability of test_perf_branches_no_hw() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 132/554] crypto: ccree - Correctly handle return of sg_nents_for_len Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 133/554] mt76: mt7615: Fix memory leak in mt7615_mcu_wtbl_sta_add() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 134/554] staging: fbtft: core: fix potential memory leak in fbtft_probe_common() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 135/554] PCI: dwc: Fix wrong PORT_LOGIC_LTSSM_STATE_MASK definition Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 136/554] wifi: ieee80211: correct FILS status codes Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 137/554] backlight: led_bl: Take led_access lock when required Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 138/554] backlight: led-bl: Add devlink to supplier LEDs Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 139/554] backlight: lp855x: Fix lp855x.h kernel-doc warnings Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 140/554] iommu/arm-smmu-qcom: Enable use of all SMR groups when running bare-metal Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 141/554] RDMA/irdma: Fix data race in irdma_sc_ccq_arm Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 142/554] RDMA/irdma: Fix data race in irdma_free_pble Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 143/554] ASoC: fsl_xcvr: Add Counter registers Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 144/554] ASoC: fsl_xcvr: Add support for i.MX93 platform Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 145/554] ASoC: fsl_xcvr: clear the channel status control memory Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 146/554] drm/amd/display: Fix logical vs bitwise bug in get_embedded_panel_info_v2_1() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 147/554] ACPI: processor_core: fix map_x2apic_id for amd-pstate on am4 Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 148/554] ext4: remove unused return value of __mb_check_buddy Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 149/554] ext4: improve integrity checking in __mb_check_buddy by enhancing order-0 validation Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 150/554] vdpa: Introduce and use vdpa device get, set config helpers Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 151/554] vdpa: Introduce query of device config layout Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 152/554] vdpa: Sync calls set/get config/status with cf_mutex Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 153/554] virtio_vdpa: fix misleading return in void function Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 154/554] virtio: fix virtqueue_set_affinity() docs Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 155/554] ASoC: Intel: catpt: Fix error path in hw_params() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 156/554] regulator: core: Protect regulator_supply_alias_list with regulator_list_mutex Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 157/554] netfilter: flowtable: check for maximum number of encapsulations in bridge vlan Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 158/554] netfilter: nf_conncount: reduce unnecessary GC Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 159/554] netfilter: nf_conncount: rework API to use sk_buff directly Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 160/554] netfilter: nft_connlimit: update the count if add was skipped Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 161/554] net: stmmac: fix rx limit check in stmmac_rx_zc() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 162/554] mtd: lpddr_cmds: fix signed shifts in lpddr_cmds Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 163/554] remoteproc: qcom_q6v5_wcss: fix parsing of qcom,halt-regs Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 164/554] net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 165/554] perf tools: Fix split kallsyms DSO counting Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 166/554] pinctrl: single: Fix PIN_CONFIG_BIAS_DISABLE handling Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 167/554] pinctrl: single: Fix incorrect type for error return variable Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 168/554] fbdev: ssd1307fb: fix potential page leak in ssd1307fb_probe() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 169/554] NFS: Label the dentry with a verifier in nfs_rmdir() and nfs_unlink() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 170/554] NFS: dont unhash dentry during unlink/rename Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 171/554] NFS: Avoid changing nlink when file removes and attribute updates race Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 172/554] fs/nls: Fix utf16 to utf8 conversion Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 173/554] NFSv4: Add some support for case insensitive filesystems Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 174/554] NFS: Fix the verifier for case sensitive filesystem in nfs_atomic_open() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 175/554] NFS: Initialise verifiers for visible dentries " Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 176/554] NFSv4/pNFS: Clear NFS_INO_LAYOUTCOMMIT in pnfs_mark_layout_stateid_invalid Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 177/554] Revert "nfs: ignore SB_RDONLY when remounting nfs" Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 178/554] Revert "nfs: clear SB_RDONLY before getting superblock" Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 179/554] Revert "nfs: ignore SB_RDONLY when mounting nfs" Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 180/554] fs_context: drop the unused lsm_flags member Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 181/554] NFS: Automounted filesystems should inherit ro,noexec,nodev,sync flags Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 182/554] fs/nls: Fix inconsistency between utf8_to_utf32() and utf32_to_utf8() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 183/554] platform/x86: asus-wmi: use brightness_set_blocking() for kbd led Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 184/554] ASoC: bcm: bcm63xx-pcm-whistler: Check return value of of_dma_configure() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 185/554] ASoC: ak4458: Disable regulator when error happens Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 186/554] ASoC: ak5558: " Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 187/554] blk-mq: Abort suspend when wakeup events are pending Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 188/554] block: fix comment for op_is_zone_mgmt() to include RESET_ALL Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 189/554] dma/pool: eliminate alloc_pages warning in atomic_pool_expand Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 190/554] ALSA: uapi: Fix typo in asound.h comment Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 191/554] ARM: 9464/1: fix input-only operand modification in load_unaligned_zeropad() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 192/554] dm-raid: fix possible NULL dereference with undefined raid type Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 193/554] dm log-writes: Add missing set_freezable() for freezable kthread Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 194/554] efi/cper: Add a new helper function to print bitmasks Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 195/554] efi/cper: Adjust infopfx size to accept an extra space Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 196/554] efi/cper: align ARM CPER type with UEFI 2.9A/2.10 specs Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 197/554] ocfs2: fix memory leak in ocfs2_merge_rec_left() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 198/554] usb: gadget: tegra-xudc: Always reinitialize data toggle when clear halt Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 199/554] usb: phy: Initialize struct usb_phy list_head Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 200/554] ALSA: dice: fix buffer overflow in detect_stream_formats() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 201/554] ASoC: fsl_xcvr: get channel status data when PHY is not exists Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 202/554] NFS: Fix missing unlock in nfs_unlink() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 203/554] netfilter: nf_conncount: garbage collection is not skipped when jiffies wrap around Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 204/554] coresight: etm4x: Correct polling IDLE bit Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 205/554] spi: tegra210-quad: Fix validate combined sequence Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 206/554] spi: tegra210-quad: Fix X1_X2_X4 encoding and support x4 transfers Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 207/554] i3c: fix uninitialized variable use in i2c setup Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 208/554] bpf, arm64: Do not audit capability check in do_jit() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 209/554] btrfs: fix memory leak of fs_devices in degraded seed device path Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 210/554] sched/deadline: only set free_cpus for online runqueues Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 211/554] x86/ptrace: Always inline trivial accessors Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 212/554] ACPICA: Avoid walking the Namespace if start_node is NULL Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 213/554] ACPI: property: Use ACPI functions in acpi_graph_get_next_endpoint() only Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 214/554] cpufreq: s5pv210: fix refcount leak Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 215/554] livepatch: Match old_sympos 0 and 1 in klp_find_func() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 216/554] fs/ntfs3: Support timestamps prior to epoch Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 217/554] hfsplus: fix volume corruption issue for generic/070 Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 218/554] hfsplus: fix missing hfs_bnode_get() in __hfs_bnode_create Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 219/554] hfsplus: Verify inode mode when loading from disk Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 220/554] hfsplus: fix volume corruption issue for generic/073 Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 221/554] btrfs: scrub: always update btrfs_scrub_progress::last_physical Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 222/554] Bluetooth: btusb: Add new VID/PID 13d3/3533 for RTL8821CE Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 223/554] netrom: Fix memory leak in nr_sendmsg() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 224/554] net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 225/554] ipvlan: Ignore PACKET_LOOPBACK in handle_mode_l2() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 226/554] mlxsw: spectrum_router: Fix neighbour use-after-free Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 227/554] mlxsw: spectrum_mr: Fix use-after-free when updating multicast route stats Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 228/554] net: openvswitch: fix middle attribute validation in push_nsh() action Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 229/554] broadcom: b44: prevent uninitialized value usage Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 230/554] netfilter: nf_conncount: fix leaked ct in error paths Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 231/554] ipvs: fix ipv4 null-ptr-deref in route error path Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 232/554] caif: fix integer underflow in cffrml_receive() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 233/554] net/sched: ets: Remove drr class from the active list if it changes to strict Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 234/554] nfc: pn533: Fix error code in pn533_acr122_poweron_rdr() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 235/554] ethtool: use phydev variable Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 236/554] net/ethtool/ioctl: remove if n_stats checks from ethtool_get_phy_stats Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 237/554] net/ethtool/ioctl: split ethtool_get_phy_stats into multiple helpers Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 238/554] ethtool: Avoid overflowing userspace buffer on stats query Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 239/554] net/mlx5: fw_tracer, Add support for unrecognized string Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 240/554] net/mlx5: fw_tracer, Validate format string parameters Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 241/554] net/mlx5: fw_tracer, Handle escaped percent properly Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 242/554] net: hns3: using the num_tqps in the vf driver to apply for resources Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 243/554] net: hns3: Align type of some variables with their print type Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 244/554] net: hns3: using the num_tqps to check whether tqp_index is out of range when vf get ring info from mbx Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 245/554] net: hns3: add VLAN id validation before using Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 246/554] HID: input: map HID_GD_Z to ABS_DISTANCE for stylus/pen Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 247/554] Input: ti_am335x_tsc - fix off-by-one error in wire_order validation Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 248/554] Input: i8042 - add TUXEDO InfinityBook Max Gen10 AMD to i8042 quirk table Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 249/554] ACPI: CPPC: Fix missing PCC check for guaranteed_perf Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 250/554] spi: fsl-cpm: Check length parity before switching to 16 bit mode Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 251/554] mmc: sdhci-esdhc-imx: add alternate ARCH_S32 dependency to Kconfig Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 252/554] net/hsr: fix NULL pointer dereference in prp_get_untagged_frame() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 253/554] ALSA: vxpocket: Fix resource leak in vxpocket_probe error path Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 254/554] ALSA: pcmcia: Fix resource leak in snd_pdacf_probe " Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 255/554] ALSA: usb-mixer: us16x08: validate meter packet indices Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 256/554] ipmi: Fix the race between __scan_channels() and deliver_response() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 257/554] ipmi: Fix __scan_channels() failing to rescan channels Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 258/554] firmware: imx: scu-irq: Init workqueue before request mbox channel Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 259/554] ti-sysc: allow OMAP2 and OMAP4 timers to be reserved on AM33xx Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 260/554] clk: mvebu: cp110 add CLK_IGNORE_UNUSED to pcie_x10, pcie_x11 & pcie_x4 Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 261/554] powerpc/addnote: Fix overflow on 32-bit builds Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 262/554] scsi: qla2xxx: Fix lost interrupts with qlini_mode=disabled Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 263/554] scsi: qla2xxx: Fix initiator mode with qlini_mode=exclusive Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 264/554] scsi: qla2xxx: Use reinit_completion on mbx_intr_comp Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 265/554] via_wdt: fix critical boot hang due to unnamed resource allocation Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 266/554] reset: fix BIT macro reference Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 267/554] exfat: fix remount failure in different process environments Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 268/554] usbip: Fix locking bug in RT-enabled kernels Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 269/554] usb: typec: ucsi: Handle incorrect num_connectors capability Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 270/554] usb: xhci: limit run_graceperiod for only usb 3.0 devices Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 271/554] usb: usb-storage: No additional quirks need to be added to the EL-R12 optical drive Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 272/554] serial: sprd: Return -EPROBE_DEFER when uart clock is not ready Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 273/554] nvme-fc: dont hold rport lock when putting ctrl Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 274/554] platform/x86/intel/hid: Add Dell Pro Rugged 10/12 tablet to VGBS DMI quirks Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 275/554] vhost/vsock: improve RCU read sections around vhost_vsock_get() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 276/554] KEYS: trusted: Fix a memory leak in tpm2_load_cmd Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 277/554] mmc: sdhci-msm: Avoid early clock doubling during HS400 transition Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 278/554] lib/crypto: x86/blake2s: Fix 32-bit arg treated as 64-bit Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 279/554] block: rate-limit capacity change info log Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 280/554] floppy: fix for PAGE_SIZE != 4KB Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 281/554] fs/ntfs3: fix mount failure for sparse runs in run_unpack() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 282/554] ktest.pl: Fix uninitialized var in config-bisect.pl Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 283/554] ext4: xattr: fix null pointer deref in ext4_raw_inode() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 284/554] ext4: clear i_state_flags when alloc inode Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 285/554] ext4: fix incorrect group number assertion in mb_check_buddy Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 286/554] ext4: align max orphan file size with e2fsprogs limit Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 287/554] jbd2: use a weaker annotation in journal handling Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 288/554] media: v4l2-mem2mem: Fix outdated documentation Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 289/554] usb: usb-storage: Maintain minimal modifications to the bcdDevice range Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 290/554] media: dvb-usb: dtv5100: fix out-of-bounds in dtv5100_i2c_msg() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 291/554] media: pvrusb2: Fix incorrect variable used in trace message Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 292/554] phy: broadcom: bcm63xx-usbh: fix section mismatches Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 293/554] USB: lpc32xx_udc: Fix error handling in probe Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 294/554] usb: phy: fsl-usb: Fix use-after-free in delayed work during device removal Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 295/554] usb: phy: isp1301: fix non-OF device reference imbalance Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 296/554] usb: dwc3: of-simple: fix clock resource leak in dwc3_of_simple_probe Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 297/554] usb: renesas_usbhs: Fix a resource leak in usbhs_pipe_malloc() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 298/554] char: applicom: fix NULL pointer dereference in ac_ioctl Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 299/554] intel_th: Fix error handling in intel_th_output_open Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 300/554] cpufreq: nforce2: fix reference count leak in nforce2 Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 301/554] scsi: Revert "scsi: qla2xxx: Perform lockless command completion in abort path" Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 302/554] scsi: aic94xx: fix use-after-free in device removal path Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 303/554] NFSD: use correct reservation type in nfsd4_scsi_fence_client Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 304/554] scsi: target: Reset t_task_cdb pointer in error case Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 305/554] f2fs: invalidate dentry cache on failed whiteout creation Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 306/554] f2fs: fix return value of f2fs_recover_fsync_data() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 307/554] tools/testing/nvdimm: Use per-DIMM device handle Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 308/554] media: vidtv: initialize local pointers upon transfer of memory ownership Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 309/554] ocfs2: fix kernel BUG in ocfs2_find_victim_chain Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 310/554] platform/chrome: cros_ec_ishtp: Fix UAF after unbinding driver Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 311/554] scs: fix a wrong parameter in __scs_magic Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 312/554] parisc: Do not reprogram affinitiy on ASP chip Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 313/554] libceph: make decode_pool() more resilient against corrupted osdmaps Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 314/554] KVM: x86: WARN if hrtimer callback for periodic APIC timer fires with period=0 Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 315/554] KVM: x86: Explicitly set new periodic hrtimer expiration in apic_timer_fn() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 316/554] KVM: x86: Fix VM hard lockup after prolonged inactivity with periodic HV timer Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 317/554] KVM: nSVM: Propagate SVM_EXIT_CR0_SEL_WRITE correctly for LMSW emulation Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 318/554] KVM: nSVM: Set exit_code_hi to -1 when synthesizing SVM_EXIT_ERR (failed VMRUN) Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 319/554] KVM: nSVM: Clear exit_code_hi in VMCB when synthesizing nested VM-Exits Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 320/554] tracing: Do not register unsupported perf events Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 321/554] PM: runtime: Do not clear needs_force_resume with enabled runtime PM Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 322/554] fsnotify: do not generate ACCESS/MODIFY events on child for special files Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 323/554] nfsd: Mark variable __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 324/554] svcrdma: return 0 on success from svc_rdma_copy_inline_range Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 325/554] io_uring: fix filename leak in __io_openat_prep() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 326/554] drm/amd/display: Use GFP_ATOMIC in dc_create_plane_state() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 327/554] amba: tegra-ahb: Fix device leak on SMMU enable Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 328/554] soc: qcom: ocmem: fix device leak on lookup Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 329/554] soc: amlogic: canvas: " Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 330/554] rpmsg: glink: fix rpmsg device leak Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 331/554] i2c: amd-mp2: fix reference leak in MP2 PCI device Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 332/554] hwmon: (max16065) Use local variable to avoid TOCTOU Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 333/554] hwmon: (w83791d) Convert macros to functions " Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 334/554] hwmon: (w83l786ng) " Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 335/554] i40e: fix scheduling in set_rx_mode Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 336/554] i40e: Refactor argument of several client notification functions Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 337/554] i40e: Refactor argument of i40e_detect_recover_hung() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 338/554] i40e: validate ring_len parameter against hardware-specific values Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 339/554] iavf: fix off-by-one issues in iavf_config_rss_reg() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 340/554] crypto: seqiv - Do not use req->iv after crypto_aead_encrypt Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 341/554] Bluetooth: btusb: revert use of devm_kzalloc in btusb Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 342/554] net: mdio: aspeed: move reg accessing part into separate functions Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 343/554] net: mdio: aspeed: add dummy read to avoid read-after-write issue Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 344/554] net: openvswitch: Avoid needlessly taking the RTNL on vport destroy Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 345/554] ip6_gre: make ip6gre_header() robust Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 346/554] platform/x86: msi-laptop: add missing sysfs_remove_group() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 347/554] platform/x86: ibm_rtl: fix EBDA signature search pointer arithmetic Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 348/554] team: fix check for port enabled in team_queue_override_port_prio_changed() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 349/554] net: usb: rtl8150: fix memory leak on usb_submit_urb() failure Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 350/554] smc91x: fix broken irq-context in PREEMPT_RT Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 351/554] genalloc.h: fix htmldocs warning Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 352/554] firewire: nosy: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 353/554] net: dsa: b53: skip multicast entries for fdb_dump() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 354/554] net: usb: asix: validate PHY address before use Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 355/554] net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 356/554] octeontx2-pf: fix "UBSAN: shift-out-of-bounds error" Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 357/554] ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 358/554] ipv4: Fix reference count leak when using error routes with nexthop objects Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 359/554] net: rose: fix invalid array index in rose_kill_by_device() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 360/554] RDMA/irdma: avoid invalid read in irdma_net_event Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 361/554] RDMA/efa: Remove possible negative shift Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 362/554] RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 363/554] RDMA/bnxt_re: Fix incorrect BAR check in bnxt_qplib_map_creq_db() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 364/554] RDMA/bnxt_re: Fix IB_SEND_IP_CSUM handling in post_send Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 365/554] RDMA/bnxt_re: Fix to use correct page size for PDE table Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 366/554] RDMA/rtrs: Fix clt_path::max_pages_per_mr calculation Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 367/554] RDMA/bnxt_re: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 368/554] selftests/ftrace: traceonoff_triggers: strip off names Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 369/554] ASoC: stm32: sai: fix device leak on probe Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 370/554] ASoC: qcom: q6asm-dai: perform correct state check before closing Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 371/554] ASoC: qcom: q6adm: the the copp device only during last instance Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 372/554] ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 373/554] iommu/apple-dart: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 374/554] iommu/exynos: " Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 375/554] iommu/ipmmu-vmsa: " Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 376/554] iommu/mediatek-v1: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 377/554] iommu/mediatek: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 378/554] iommu/omap: fix device leaks on probe_device() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 379/554] iommu/sun50i: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 380/554] iommu/tegra: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 381/554] HID: logitech-dj: Remove duplicate error logging Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 382/554] PCI/PM: Reinstate clearing state_saved in legacy and !PM codepaths Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 383/554] leds: leds-lp50xx: Allow LED 0 to be added to module bank Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 384/554] leds: leds-lp50xx: LP5009 supports 3 modules for a total of 9 LEDs Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 385/554] mfd: altera-sysmgr: Fix device leak on sysmgr regmap lookup Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 386/554] mfd: max77620: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 387/554] media: rc: st_rc: Fix reset control resource leak Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 388/554] parisc: entry.S: fix space adjustment on interruption for 64-bit userspace Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 389/554] parisc: entry: set W bit for !compat tasks in syscall_restore_rfi() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 390/554] media: adv7842: Avoid possible out-of-bounds array accesses in adv7842_cp_log_status() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 391/554] dm-ebs: Mark full buffer dirty even on partial write Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 392/554] fbdev: gbefb: fix to use physical address instead of dma address Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 393/554] fbdev: pxafb: Fix multiple clamped values in pxafb_adjust_timing Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 394/554] fbdev: tcx.c fix mem_map to correct smem_start offset Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 395/554] media: cec: Fix debugfs leak on bus_register() failure Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 396/554] media: msp3400: Avoid possible out-of-bounds array accesses in msp3400c_thread() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 397/554] media: TDA1997x: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 398/554] media: i2c: ADV7604: " Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 399/554] media: i2c: adv7842: " Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 400/554] idr: fix idr_alloc() returning an ID out of range Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 401/554] RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 402/554] RDMA/cm: Fix leaking the multicast GID table reference Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 403/554] e1000: fix OOB in e1000_tbi_should_accept() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 404/554] fjes: Add missing iounmap in fjes_hw_init() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 405/554] nfsd: Drop the client reference in client_states_open() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 406/554] net: usb: sr9700: fix incorrect command used to write single register Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 407/554] net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 408/554] net: macb: Relocate mog_init_rings() callback from macb_mac_link_up() to macb_open() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 409/554] drm/msm/a6xx: Fix out of bound IO access in a6xx_get_gmu_registers Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 410/554] drm/ttm: Avoid NULL pointer deref for evicted BOs Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 411/554] drm/nouveau/dispnv50: Dont call drm_atomic_get_crtc_state() in prepare_fb Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 412/554] mm/damon/tests/vaddr-kunit: handle alloc failures in damon_test_split_evenly_fail() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 413/554] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_do_test_apply_three_regions() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 414/554] RDMA/core: Fix "KASAN: slab-use-after-free Read in ib_register_device" problem Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 415/554] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_test_split_evenly_succ() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 416/554] mm/damon/tests/core-kunit: handle allocation failures in damon_test_regions() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 417/554] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_at() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 418/554] mm/damon/tests/core-kunit: handle alloc failures on dasmon_test_merge_regions_of() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 419/554] mm/damon/tests/core-kunit: handle alloc failures on damon_test_merge_two() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 420/554] mm/damon/tests/core-kunit: handle memory failure from damon_test_target() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 421/554] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_regions_of() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 422/554] mm/damon/tests/core-kunit: handle memory alloc failure from damon_test_aggregate() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 423/554] kbuild: Use CRC32 and a 1MiB dictionary for XZ compressed modules Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 424/554] virtio_console: fix order of fields cols and rows Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 425/554] drm/vmwgfx: Fix a null-ptr access in the cursor snooper Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 426/554] usb: xhci: move link chain bit quirk checks into one helper function Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 427/554] usb: xhci: Apply the link chain quirk on NEC isoc endpoints Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 428/554] usb: gadget: udc: fix use-after-free in usb_gadget_state_work Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 429/554] xhci: dbgtty: use IDR to support several dbc instances Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 430/554] xhci: dbgtty: fix device unregister Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 431/554] jbd2: fix the inconsistency between checksum and data in memory for journal sb Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 432/554] tpm: Cap the number of PCR banks Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 433/554] btrfs: dont rewrite ret from inode_permission Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 434/554] wifi: mt76: Fix DTS power-limits on little endian systems Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 435/554] ALSA: wavefront: Clear substream pointers on close Greg Kroah-Hartman
2026-01-15 16:48 ` Greg Kroah-Hartman [this message]
2026-01-15 16:48 ` [PATCH 5.15 437/554] ALSA: wavefront: Fix integer overflow in sample size validation Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 438/554] NFSD: Clear SECLABEL in the suppattr_exclcreat bitmap Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 439/554] KVM: nVMX: Immediately refresh APICv controls as needed on nested VM-Exit Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 440/554] xfs: fix a memory leak in xfs_buf_item_init() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 441/554] f2fs: fix to detect recoverable inode during dryrun of find_fsync_dnodes() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 442/554] f2fs: use global inline_xattr_slab instead of per-sb slab cache Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 443/554] f2fs: fix to propagate error from f2fs_enable_checkpoint() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 444/554] f2fs: fix to avoid updating zero-sized extent in extent cache Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 445/554] usb: dwc3: keep susphy enabled during exit to avoid controller faults Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 446/554] mptcp: pm: ignore unknown endpoint flags Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 447/554] usb: ohci-nxp: Use helper function devm_clk_get_enabled() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 448/554] usb: ohci-nxp: fix device leak on probe failure Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 449/554] fuse: fix readahead reclaim deadlock Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 450/554] ARM: dts: microchip: sama7g5: fix uart fifo size to 32 Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 451/554] svcrdma: bound check rq_pages index in inline path Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 452/554] ARM: dts: microchip: sama5d2: fix spi flexcom fifo size to 32 Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 453/554] crypto: af_alg - zero initialize memory allocated via sock_kmalloc Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 454/554] KVM: SVM: Mark VMCB_NPT as dirty on nested VMRUN Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 455/554] SUNRPC: svcauth_gss: avoid NULL deref on zero length gss_token in gss_read_proxy_verf Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 456/554] media: mediatek: vcodec: Fix a reference leak in mtk_vcodec_fw_vpu_init() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 457/554] media: vpif_capture: fix section mismatch Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 458/554] media: verisilicon: Protect G2 HEVC decoder against invalid DPB index Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 459/554] NFSD: NFSv4 file creation neglects setting ACL Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 460/554] media: samsung: exynos4-is: fix potential ABBA deadlock on init Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 461/554] media: renesas: rcar_drif: fix device node reference leak in rcar_drif_bond_enabled Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 462/554] powerpc/pseries/cmm: call balloon_devinfo_init() also without CONFIG_BALLOON_COMPACTION Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 463/554] PCI: brcmstb: Fix disabling L0s capability Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 464/554] powerpc/64s/slb: Fix SLB multihit issue during SLB preload Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 465/554] iommu/qcom: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 466/554] r8169: fix RTL8117 Wake-on-Lan in DASH mode Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 467/554] ASoC: stm: Use dev_err_probe() helper Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 468/554] ASoC: stm32: sai: Use the devm_clk_get_optional() helper Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 469/554] ASoC: stm32: sai: fix clk prepare imbalance on probe failure Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 470/554] mm/balloon_compaction: make balloon page compaction callbacks static Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 471/554] mm/balloon_compaction: we cannot have isolated pages in the balloon list Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 472/554] mm/balloon_compaction: convert balloon_page_delete() to balloon_page_finalize() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 473/554] powerpc/pseries/cmm: adjust BALLOON_MIGRATE when migrating pages Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 474/554] pmdomain: Use device_get_match_data() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 475/554] pmdomain: imx: Fix reference count leak in imx_gpc_probe() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 476/554] lockd: fix vfs_test_lock() calls Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 477/554] ASoC: stm: stm32_sai_sub: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-01-16  9:00   ` Uwe Kleine-König
2026-01-16 11:07     ` Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 478/554] ASoC: stm32: sai: fix OF node leak on probe Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 479/554] wifi: mac80211: Discard Beacon frames to non-broadcast address Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 480/554] drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 481/554] net: Remove RTNL dance for SIOCBRADDIF and SIOCBRDELIF Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 482/554] mmc: core: use sysfs_emit() instead of sprintf() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 483/554] drm/i915/selftests: fix subtraction overflow bug Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 484/554] page_pool: Fix use-after-free in page_pool_recycle_in_ring Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 485/554] KVM: x86: Acquire kvm->srcu when handling KVM_SET_VCPU_EVENTS Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 486/554] HID: core: Harden s32ton() against conversion to 0 bits Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 487/554] mm/mprotect: use long for page accountings and retval Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 488/554] KVM: arm64: sys_regs: disable -Wuninitialized-const-pointer warning Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 489/554] ipv6: Fix potential uninit-value access in __ip6_make_skb() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 490/554] ipv4: Fix uninit-value access in __ip_make_skb() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 491/554] selftests: net: test_vxlan_under_vrf: fix HV connectivity test Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 492/554] x86: remove __range_not_ok() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 493/554] pwm: stm32: Always program polarity Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 494/554] ext4: filesystems without casefold feature cannot be mounted with siphash Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 495/554] ext4: factor out ext4_hash_info_init() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 496/554] ext4: fix error message when rejecting the default hash Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 497/554] firmware: arm_scmi: Fix unused notifier-block in unregister Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 498/554] Revert "iommu/amd: Skip enabling command/event buffers for kdump" Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 499/554] net: ethtool: fix the error condition in ethtool_get_phy_stats_ethtool() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 500/554] usb: gadget: lpc32xx_udc: fix clock imbalance in error path Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 501/554] atm: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 502/554] net: 3com: 3c59x: fix possible null dereference in vortex_probe1() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 503/554] mei: me: add nova lake point S DID Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 504/554] lib/crypto: aes: Fix missing MMU protection for AES S-box Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 505/554] drm/pl111: Fix error handling in pl111_amba_probe Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 506/554] wifi: avoid kernel-infoleak from struct iw_point Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 507/554] libceph: prevent potential out-of-bounds reads in handle_auth_done() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 508/554] libceph: replace overzealous BUG_ON in osdmap_apply_incremental() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 509/554] libceph: make free_choose_arg_map() resilient to partial allocation Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 510/554] libceph: return the handler error from mon_handle_auth_done() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 511/554] libceph: make calc_target() set t->paused, not just clear it Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 512/554] ext4: introduce ITAIL helper Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 513/554] ext4: fix out-of-bound read in ext4_xattr_inode_dec_ref_all() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 514/554] net: Add locking to protect skb->dev access in ip_output Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 515/554] tls: Use __sk_dst_get() and dst_dev_rcu() in get_netdev_for_sock() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 516/554] csky: fix csky_cmpxchg_fixup not working Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 517/554] ARM: 9461/1: Disable HIGHPTE on PREEMPT_RT kernels Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 518/554] alpha: dont reference obsolete termio struct for TC* constants Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 519/554] NFSv4: ensure the open stateid seqid doesnt go backwards Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 520/554] NFS: Fix up the automount fs_context to use the correct cred Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 521/554] scsi: ipr: Enable/disable IRQD_NO_BALANCING during reset Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 522/554] scsi: Revert "scsi: libsas: Fix exp-attached device scan after probe failure scanned in again after probe failed" Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 523/554] arm64: dts: add off-on-delay-us for usdhc2 regulator Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 524/554] ARM: dts: imx6q-ba16: fix RTC interrupt level Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 525/554] netfilter: nft_synproxy: avoid possible data-race on update operation Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 526/554] netfilter: nf_tables: fix memory leak in nf_tables_newrule() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 527/554] netfilter: nf_conncount: update last_gc only when GC has been performed Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 528/554] net: marvell: prestera: fix NULL dereference on devlink_alloc() failure Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 529/554] bridge: fix C-VLAN preservation in 802.1ad vlan_tunnel egress Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 530/554] net: mscc: ocelot: Fix crash when adding interface under a lag Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 531/554] inet: ping: Fix icmp out counting Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 532/554] net: sock: fix hardened usercopy panic in sock_recv_errqueue Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 533/554] netdev: preserve NETIF_F_ALL_FOR_ALL across TSO updates Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 534/554] net/mlx5e: Dont print error message due to invalid module Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 535/554] eth: bnxt: move and rename reset helpers Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 536/554] bnxt_en: Fix potential data corruption with HW GRO/LRO Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 537/554] HID: quirks: work around VID/PID conflict for appledisplay Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 538/554] net/sched: sch_qfq: Fix NULL deref when deactivating inactive aggregate in qfq_reset Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 539/554] net: usb: pegasus: fix memory leak in update_eth_regs_async() Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 540/554] net: enetc: fix build warning when PAGE_SIZE is greater than 128K Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 541/554] arp: do not assume dev_hard_header() does not change skb->head Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 542/554] NFS: trace: show TIMEDOUT instead of 0x6e Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 543/554] nfs_common: factor out nfs_errtbl and nfs_stat_to_errno Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 544/554] NFSD: Remove NFSERR_EAGAIN Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 545/554] nfsd: provide locking for v4_end_grace Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 546/554] counter: interrupt-cnt: Drop IRQF_NO_THREAD flag Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 547/554] pinctrl: qcom: lpass-lpi: Remove duplicate assignment of of_gpio_n_cells Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 548/554] pinctrl: qcom: lpass-lpi: mark the GPIO controller as sleeping Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 549/554] blk-throttle: Set BIO_THROTTLED when bio has been throttled Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 550/554] powercap: fix race condition in register_control_type() Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 551/554] powercap: fix sscanf() error return value handling Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 552/554] can: j1939: make j1939_session_activate() fail if device is no longer registered Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 553/554] ASoC: fsl_sai: Add missing registers to cache default Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 554/554] scsi: sg: Fix occasional bogus elapsed time that exceeds timeout Greg Kroah-Hartman
2026-01-15 19:15 ` [PATCH 5.15 000/554] 5.15.198-rc1 review Brett A C Sheffield
2026-01-15 19:33 ` Slade Watkins
2026-01-15 22:04 ` Florian Fainelli
2026-01-16  9:45 ` Jon Hunter
2026-01-16 11:08   ` Greg Kroah-Hartman
2026-01-16 17:38 ` Hardik Garg
2026-01-16 20:33 ` Shuah Khan

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=20260115164302.043973351@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=patches@lists.linux.dev \
    --cc=perex@perex.cz \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tiwai@suse.de \
    /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