* Fix docg3 read align bug
@ 2012-03-25 21:47 Robert Jarzmik
2012-03-26 9:51 ` Artem Bityutskiy
0 siblings, 1 reply; 2+ messages in thread
From: Robert Jarzmik @ 2012-03-25 21:47 UTC (permalink / raw)
To: Artem Bityutskiy; +Cc: Linux mtd
Hi Artem,
I sent not long ago a patch for unaligned reads. And ... I made an error. I have
a patch to patch my previous submission. I wonder if this can be squashed in, or
requires an incremental commit. Tell me what you want to do, the patch is at the
end of the mail.
I hope I have not overseen another corner case, I'll recheck tomorrow evening
(GMT+1).
Cheers.
--
Robert
---8>---
>From c013bc50a456c3c127eae3f1751369dec1e32221 Mon Sep 17 00:00:00 2001
From: Robert Jarzmik <robert.jarzmik@free.fr>
Date: Sun, 25 Mar 2012 23:26:05 +0200
Subject: [PATCH] mtd: docg3 refix docg3 lessen read alignement burden
After the fix "mtd: docg3 less read alignement burden", a corner case
where read is unaligned an length read is small was left. As a full
page must be read, the remaining data bytes to read number was
miscalculated, leading to unreadable LEBs by UBIFS.
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
---
drivers/mtd/devices/docg3.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/devices/docg3.c b/drivers/mtd/devices/docg3.c
index 7ced089..8272c02 100644
--- a/drivers/mtd/devices/docg3.c
+++ b/drivers/mtd/devices/docg3.c
@@ -893,7 +893,8 @@ static int doc_read_oob(struct mtd_info *mtd, loff_t from,
ret = doc_read_page_getbytes(docg3, nbdata, buf, 0);
if (ret < nbdata)
goto err_in_read;
- doc_read_page_getbytes(docg3, DOC_LAYOUT_PAGE_SIZE - nbdata,
+ doc_read_page_getbytes(docg3,
+ DOC_LAYOUT_PAGE_SIZE - nbdata - skip,
NULL, 0);
ret = doc_read_page_getbytes(docg3, nboob, oobbuf, 0);
if (ret < nboob)
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: Fix docg3 read align bug
2012-03-25 21:47 Fix docg3 read align bug Robert Jarzmik
@ 2012-03-26 9:51 ` Artem Bityutskiy
0 siblings, 0 replies; 2+ messages in thread
From: Artem Bityutskiy @ 2012-03-26 9:51 UTC (permalink / raw)
To: Robert Jarzmik; +Cc: Linux mtd
[-- Attachment #1: Type: text/plain, Size: 506 bytes --]
On Sun, 2012-03-25 at 23:47 +0200, Robert Jarzmik wrote:
> Hi Artem,
>
> I sent not long ago a patch for unaligned reads. And ... I made an error. I have
> a patch to patch my previous submission. I wonder if this can be squashed in, or
> requires an incremental commit. Tell me what you want to do, the patch is at the
> end of the mail.
>
> I hope I have not overseen another corner case, I'll recheck tomorrow evening
> (GMT+1).
Shoved in, thanks!
--
Best Regards,
Artem Bityutskiy
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-03-26 9:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-25 21:47 Fix docg3 read align bug Robert Jarzmik
2012-03-26 9:51 ` Artem Bityutskiy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox