* [PATCH] sg direct io/mmap oops
@ 2005-08-30 11:14 Douglas Gilbert
0 siblings, 0 replies; only message in thread
From: Douglas Gilbert @ 2005-08-30 11:14 UTC (permalink / raw)
To: linux-scsi; +Cc: ahmed.teirelbar, Kai.Makisara, James.Bottomley
[-- Attachment #1: Type: text/plain, Size: 1155 bytes --]
Back in the lk 2.4 series it was possible with the sgm_dd
utility to do a zero copy transfer between two disks (or
2 locations on the same disk). That was done by doing mmap-ed
IO on the read and direct IO on the write with the sg driver.
Well that no longer works in the lk 2.6 series because the
sg (and st) driver uses get_user_pages() for direct IO and
that returns -EFAULT when VM_IO is set on any of the user
pages it is trying use. Pages that are mmap-ed have VM_IO
set.
I can live with that: dio and mmap-ed IO work separately
and dio can work on both sides of a transfer.
This was brought to my attention by Ahmed Teirelbar
<ahmed.teirelbar@adic.com> with lk 2.6.5 . Worse, when
tested in lk 2.6.12 and lk 2.6.13, attempting dio/mmap
caused the sg driver to oops (due to empty entries in
a scatter gather list). Ahmed proposed the following
patch which both of us have tested.
I have alerted Kai M. as the same fix is needed in
the st driver IMO.
Changelog:
- check error return (a negative integer) properly after
the get_user_pages() call that sets up direct IO
Signed-off-by: Douglas Gilbert <dougg@torque.net>
Doug Gilbert
[-- Attachment #2: sg_2613mm.diff --]
[-- Type: text/x-patch, Size: 659 bytes --]
--- linux/drivers/scsi/sg.c 2005-08-29 18:28:23.000000000 +1000
+++ linux/drivers/scsi/sg.c2613mm 2005-08-30 15:09:04.000000000 +1000
@@ -61,7 +61,7 @@
#ifdef CONFIG_SCSI_PROC_FS
#include <linux/proc_fs.h>
-static char *sg_version_date = "20050328";
+static char *sg_version_date = "20050830";
static int sg_proc_init(void);
static void sg_proc_cleanup(void);
@@ -1831,7 +1831,8 @@
up_read(¤t->mm->mmap_sem);
/* Errors and no page mapped should return here */
- if (res < nr_pages)
+ /* Beware of signed to unsigned integer promotions!! */
+ if ((res < 0) || (res < nr_pages))
goto out_unmap;
for (i=0; i < nr_pages; i++) {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-08-30 11:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-30 11:14 [PATCH] sg direct io/mmap oops Douglas Gilbert
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).