* [PATCH] fix do_sync_(read|write) to properly handle aio retries
@ 2005-06-13 18:18 Benjamin LaHaise
2005-06-13 19:33 ` Jeff Garzik
0 siblings, 1 reply; 2+ messages in thread
From: Benjamin LaHaise @ 2005-06-13 18:18 UTC (permalink / raw)
To: torvalds; +Cc: linux-aio, linux-kernel
When do_sync_(read|write) encounters an aio method that makes use of the
retry mechanism, they fail to correctly retry the operation. This fixes
that by adding the appropriate sleep and retry mechanism.
-ben
Signed-off-by: Benjamin LaHaise <benjamin.c.lahaise@intel.com>
diff -purN v2.6.12-rc6/fs/read_write.c uml-rc6/fs/read_write.c
--- v2.6.12-rc6/fs/read_write.c 2005-06-13 02:08:02.000000000 -0400
+++ uml-rc6/fs/read_write.c 2005-06-13 14:04:13.272313776 -0400
@@ -203,6 +203,16 @@ Einval:
return -EINVAL;
}
+static void wait_on_retry_sync_kiocb(struct kiocb *iocb)
+{
+ set_current_state(TASK_UNINTERRUPTIBLE);
+ if (!kiocbIsKicked(iocb))
+ schedule();
+ else
+ kiocbClearKicked(iocb);
+ __set_current_state(TASK_RUNNING);
+}
+
ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
{
struct kiocb kiocb;
@@ -210,7 +220,10 @@ ssize_t do_sync_read(struct file *filp,
init_sync_kiocb(&kiocb, filp);
kiocb.ki_pos = *ppos;
- ret = filp->f_op->aio_read(&kiocb, buf, len, kiocb.ki_pos);
+ while (-EIOCBRETRY ==
+ (ret = filp->f_op->aio_read(&kiocb, buf, len, kiocb.ki_pos)))
+ wait_on_retry_sync_kiocb(&kiocb);
+
if (-EIOCBQUEUED == ret)
ret = wait_on_sync_kiocb(&kiocb);
*ppos = kiocb.ki_pos;
@@ -258,7 +271,10 @@ ssize_t do_sync_write(struct file *filp,
init_sync_kiocb(&kiocb, filp);
kiocb.ki_pos = *ppos;
- ret = filp->f_op->aio_write(&kiocb, buf, len, kiocb.ki_pos);
+ while (-EIOCBRETRY ==
+ (ret = filp->f_op->aio_write(&kiocb, buf, len, kiocb.ki_pos)))
+ wait_on_retry_sync_kiocb(&kiocb);
+
if (-EIOCBQUEUED == ret)
ret = wait_on_sync_kiocb(&kiocb);
*ppos = kiocb.ki_pos;
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] fix do_sync_(read|write) to properly handle aio retries
2005-06-13 18:18 [PATCH] fix do_sync_(read|write) to properly handle aio retries Benjamin LaHaise
@ 2005-06-13 19:33 ` Jeff Garzik
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Garzik @ 2005-06-13 19:33 UTC (permalink / raw)
To: Benjamin LaHaise; +Cc: torvalds, linux-aio, linux-kernel
Benjamin LaHaise wrote:
> When do_sync_(read|write) encounters an aio method that makes use of the
> retry mechanism, they fail to correctly retry the operation. This fixes
> that by adding the appropriate sleep and retry mechanism.
Don't forget to send patches to akpm@osdl.org as well. He's evolved
into the main collector of random patches, as well as being the 2.6
series maintainer.
Jeff
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-06-13 19:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-13 18:18 [PATCH] fix do_sync_(read|write) to properly handle aio retries Benjamin LaHaise
2005-06-13 19:33 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox