* [PATCH] IDE: bugfix of IDE PIO size calculation
@ 2013-05-10 18:47 Leonid Yegoshin
2013-05-10 18:56 ` Sergei Shtylyov
0 siblings, 1 reply; 2+ messages in thread
From: Leonid Yegoshin @ 2013-05-10 18:47 UTC (permalink / raw)
To: linux-ide, linux-kernel; +Cc: davem
IDE PIO calculates size wrong.
Proven by test on MIPS Malta platform with multiple CPU types
with bootparam flag "ide-core.nodma=0.0".
It is still needed to test non-DMA IO.
Change-Id: Id82c2bc5965d85960846db53d84846d9a05d75a3
Author: Leonid Yegoshin <yegoshin@mips.com>
Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
(imported from commit 43cee988ce0aa8d2ca1eec014d25f014e95eefe6)
(imported from commit d74805b8b12cada05df811e112eb7e3ec197d565)
---
drivers/ide/ide-taskfile.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/ide/ide-taskfile.c b/drivers/ide/ide-taskfile.c
index 729428e..dabb88b 100644
--- a/drivers/ide/ide-taskfile.c
+++ b/drivers/ide/ide-taskfile.c
@@ -239,9 +239,6 @@ void ide_pio_bytes(ide_drive_t *drive, struct ide_cmd *cmd,
unsigned nr_bytes = min(len, cursg->length - cmd->cursg_ofs);
int page_is_high;
- if (nr_bytes > PAGE_SIZE)
- nr_bytes = PAGE_SIZE;
-
page = sg_page(cursg);
offset = cursg->offset + cmd->cursg_ofs;
@@ -249,6 +246,8 @@ void ide_pio_bytes(ide_drive_t *drive, struct ide_cmd *cmd,
page = nth_page(page, (offset >> PAGE_SHIFT));
offset %= PAGE_SIZE;
+ nr_bytes = min_t(unsigned, nr_bytes, (PAGE_SIZE - offset));
+
page_is_high = PageHighMem(page);
if (page_is_high)
local_irq_save(flags);
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] IDE: bugfix of IDE PIO size calculation
2013-05-10 18:47 [PATCH] IDE: bugfix of IDE PIO size calculation Leonid Yegoshin
@ 2013-05-10 18:56 ` Sergei Shtylyov
0 siblings, 0 replies; 2+ messages in thread
From: Sergei Shtylyov @ 2013-05-10 18:56 UTC (permalink / raw)
To: Leonid Yegoshin; +Cc: linux-ide, linux-kernel, davem
Hello.
On 05/10/2013 10:47 PM, Leonid Yegoshin wrote:
> IDE PIO calculates size wrong.
> Proven by test on MIPS Malta platform with multiple CPU types
> with bootparam flag "ide-core.nodma=0.0".
>
> It is still needed to test non-DMA IO.
>
> Change-Id: Id82c2bc5965d85960846db53d84846d9a05d75a3
Please get rid of this line.
> Author: Leonid Yegoshin <yegoshin@mips.com>
From: line at the start of message is used for that.
> Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
> (imported from commit 43cee988ce0aa8d2ca1eec014d25f014e95eefe6)
> (imported from commit d74805b8b12cada05df811e112eb7e3ec197d565)
What are those two lines? Why are they here, in upstream patch?
WBR, Sergei
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-10 18:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-10 18:47 [PATCH] IDE: bugfix of IDE PIO size calculation Leonid Yegoshin
2013-05-10 18:56 ` Sergei Shtylyov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox