* [PATCH] spi: fsl-espi: avoid processing uninitalized data on error
@ 2016-10-27 5:55 Heiner Kallweit
[not found] ` <b5d3b5f3-034e-28c4-e616-69de4bf7cb8f-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Heiner Kallweit @ 2016-10-27 5:55 UTC (permalink / raw)
To: Mark Brown
Cc: Arnd Bergmann, linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
When we get a spurious interrupt in fsl_espi_irq, we end up
processing four uninitalized bytes of data, as shown in this
warning message:
drivers/spi/spi-fsl-espi.c: In function 'fsl_espi_irq':
drivers/spi/spi-fsl-espi.c:462:4: warning: 'rx_data' may be used uninitialized in this function [-Wmaybe-uninitialized]
This adds another check so we skip the data in this case.
A functionally identical patch was submitted for stable
already, however due to a merge conflict a separate patch
is needed for next.
Fixes: 6319a68011b8 ("spi/fsl-espi: avoid infinite loops on fsl_espi_cpu_irq()")
Signed-off-by: Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>
Signed-off-by: Heiner Kallweit <hkallweit1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
drivers/spi/spi-fsl-espi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/spi/spi-fsl-espi.c b/drivers/spi/spi-fsl-espi.c
index eea5123..4e8a99d 100644
--- a/drivers/spi/spi-fsl-espi.c
+++ b/drivers/spi/spi-fsl-espi.c
@@ -455,7 +455,7 @@ static void fsl_espi_cpu_irq(struct mpc8xxx_spi *mspi, u32 events)
mspi->len -= rx_nr_bytes;
- if (mspi->rx) {
+ if (rx_nr_bytes && mspi->rx) {
*(u32 *)mspi->rx = rx_data;
mspi->rx += 4;
}
--
2.10.1
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: fsl-espi: avoid processing uninitalized data on error
[not found] ` <b5d3b5f3-034e-28c4-e616-69de4bf7cb8f-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2016-10-27 10:14 ` Mark Brown
[not found] ` <20161027101417.GG25322-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2016-10-27 10:14 UTC (permalink / raw)
To: Heiner Kallweit
Cc: Arnd Bergmann, linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
[-- Attachment #1: Type: text/plain, Size: 276 bytes --]
On Thu, Oct 27, 2016 at 07:55:30AM +0200, Heiner Kallweit wrote:
> When we get a spurious interrupt in fsl_espi_irq, we end up
> processing four uninitalized bytes of data, as shown in this
> warning message:
This doesn't apply against current code, please check and resend.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: fsl-espi: avoid processing uninitalized data on error
[not found] ` <20161027101417.GG25322-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
@ 2016-10-27 18:11 ` Heiner Kallweit
0 siblings, 0 replies; 3+ messages in thread
From: Heiner Kallweit @ 2016-10-27 18:11 UTC (permalink / raw)
To: Mark Brown
Cc: Arnd Bergmann, linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Am 27.10.2016 um 12:14 schrieb Mark Brown:
> On Thu, Oct 27, 2016 at 07:55:30AM +0200, Heiner Kallweit wrote:
>> When we get a spurious interrupt in fsl_espi_irq, we end up
>> processing four uninitalized bytes of data, as shown in this
>> warning message:
>
> This doesn't apply against current code, please check and resend.
>
OK, I'll provide an updated one. I thought it was intended to
replace Arnd's patch for next.
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-10-27 18:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-27 5:55 [PATCH] spi: fsl-espi: avoid processing uninitalized data on error Heiner Kallweit
[not found] ` <b5d3b5f3-034e-28c4-e616-69de4bf7cb8f-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-10-27 10:14 ` Mark Brown
[not found] ` <20161027101417.GG25322-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-10-27 18:11 ` Heiner Kallweit
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).