diff mbox series

drivers/ssb/sdio: Don't overwrite const buffer if block_write fails

Message ID 20210515210252.318be2ba@wiggum
State New
Headers show
Series drivers/ssb/sdio: Don't overwrite const buffer if block_write fails | expand

Commit Message

Michael Büsch May 15, 2021, 7:02 p.m. UTC
It doesn't make sense to clobber the const driver-side buffer, if a
write-to-device attempt failed. All other SSB variants (PCI, PCMCIA and SoC)
also don't corrupt the buffer on any failure in block_write.
Therefore, remove this memset from the SDIO variant.

Signed-off-by: Michael Büsch <m@bues.ch>
Cc: stable@vger.kernel.org

---


This memset has been introduced by the original patch that added SDIO support to SSB:
24ea602e183ca
Better late than never.

This change is only build tested, because I don't own the hardware.
But to me this change looks reasonable.

Comments

Kalle Valo June 15, 2021, 10:11 a.m. UTC | #1
Michael Büsch <m@bues.ch> wrote:

> It doesn't make sense to clobber the const driver-side buffer, if a

> write-to-device attempt failed. All other SSB variants (PCI, PCMCIA and SoC)

> also don't corrupt the buffer on any failure in block_write.

> Therefore, remove this memset from the SDIO variant.

> 

> Signed-off-by: Michael Büsch <m@bues.ch>

> Cc: stable@vger.kernel.org


Patch applied to wireless-drivers-next.git, thanks.

47ec636f7a25 ssb: sdio: Don't overwrite const buffer if block_write fails

-- 
https://patchwork.kernel.org/project/linux-wireless/patch/20210515210252.318be2ba@wiggum/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
diff mbox series

Patch

diff --git a/drivers/ssb/sdio.c b/drivers/ssb/sdio.c
index 7fe0afb42234..66c5c2169704 100644
--- a/drivers/ssb/sdio.c
+++ b/drivers/ssb/sdio.c
@@ -411,7 +411,6 @@  static void ssb_sdio_block_write(struct ssb_device *dev, const void *buffer,
 	sdio_claim_host(bus->host_sdio);
 	if (unlikely(ssb_sdio_switch_core(bus, dev))) {
 		error = -EIO;
-		memset((void *)buffer, 0xff, count);
 		goto err_out;
 	}
 	offset |= bus->sdio_sbaddr & 0xffff;