From: Janjaap Bos <janjaap@bos.nl>
To: Jens Axboe <jaxboe@fusionio.com>
Cc: Chris Frey <cdfrey@foursquare.net>,
Richard Weinberger <richard@nod.at>,
Andrew Morton <akpm@linux-foundation.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"jdike@addtoit.com" <jdike@addtoit.com>,
"user-mode-linux-devel@lists.sourceforge.net"
<user-mode-linux-devel@lists.sourceforge.net>,
"user-mode-linux-user@lists.sourceforge.net"
<user-mode-linux-user@lists.sourceforge.net>,
"geert@linux-m68k.org" <geert@linux-m68k.org>,
"martin.petersen@oracle.com" <martin.petersen@oracle.com>,
"adobriyan@gmail.com" <adobriyan@gmail.com>,
"syzop@vulnscan.org" <syzop@vulnscan.org>
Subject: Re: [PATCH 1/1] um: ubd: Fix data corruption
Date: Wed, 29 Sep 2010 02:48:28 +0200 [thread overview]
Message-ID: <1285721308.9775.3.camel@voyager> (raw)
In-Reply-To: <4CA275CE.6060401@fusionio.com>
On Wed, 2010-09-29 at 08:10 +0900, Jens Axboe wrote:
> It looks like that if we need to restart the requeue, then
> we use the initial position and not the current index. Does
> this help?
>
> diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c
> index 1bcd208..81ee063 100644
> --- a/arch/um/drivers/ubd_kern.c
> +++ b/arch/um/drivers/ubd_kern.c
> @@ -162,7 +162,7 @@ struct ubd {
> spinlock_t lock;
> struct scatterlist sg[MAX_SG];
> struct request *request;
> - int start_sg, end_sg;
> + int start_sg, end_sg, rq_off;
> };
>
> #define DEFAULT_COW { \
> @@ -187,6 +187,7 @@ struct ubd {
> .request = NULL, \
> .start_sg = 0, \
> .end_sg = 0, \
> + .rq_off = 0, \
> }
>
> /* Protected by ubd_lock */
> @@ -1241,10 +1242,11 @@ static void do_ubd_request(struct request_queue *q)
> dev->request = req;
> dev->start_sg = 0;
> dev->end_sg = blk_rq_map_sg(q, req, dev->sg);
> + dev->rq_off = 0;
> }
>
> req = dev->request;
> - sector = blk_rq_pos(req);
> + sector = blk_rq_pos(req) + dev->rq_off;
> while(dev->start_sg < dev->end_sg){
> struct scatterlist *sg = &dev->sg[dev->start_sg];
>
> @@ -1273,6 +1275,7 @@ static void do_ubd_request(struct request_queue *q)
> }
>
> dev->start_sg++;
> + dev->rq_off += sg->length >> 9;
> }
> dev->end_sg = 0;
> dev->request = NULL;
>
Yes, this works. I quickly tested it on current git version, and it does
not require the work-around. So far no corruption seen.
Thanks!
-Janjaap
next prev parent reply other threads:[~2010-09-29 0:48 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-28 21:47 [PATCH 1/1] um: ubd: Fix data corruption Richard Weinberger
2010-09-28 22:00 ` Andrew Morton
2010-09-28 22:00 ` Andrew Morton
2010-09-28 22:13 ` Richard Weinberger
2010-09-28 22:52 ` Chris Frey
2010-09-28 23:10 ` Jens Axboe
2010-09-29 0:48 ` Janjaap Bos [this message]
2010-09-29 1:29 ` Chris Frey
2010-09-29 5:21 ` Jens Axboe
2010-09-29 6:34 ` Chris Frey
2010-10-04 16:37 ` Tejun Heo
2010-10-04 19:51 ` Chris Frey
2010-10-05 8:23 ` Tejun Heo
2010-10-05 20:31 ` Chris Frey
2010-10-07 7:58 ` Jens Axboe
2010-10-07 20:23 ` Chris Frey
2010-10-14 13:14 ` Tejun Heo
2010-10-14 14:20 ` richard -rw- weinberger
2010-10-14 18:03 ` Tejun Heo
2010-10-14 21:24 ` Richard Weinberger
2010-10-15 4:47 ` Chris Frey
2010-10-02 17:27 ` richard -rw- weinberger
2010-09-29 3:30 ` Chris Frey
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1285721308.9775.3.camel@voyager \
--to=janjaap@bos.nl \
--cc=adobriyan@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=cdfrey@foursquare.net \
--cc=geert@linux-m68k.org \
--cc=jaxboe@fusionio.com \
--cc=jdike@addtoit.com \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=richard@nod.at \
--cc=syzop@vulnscan.org \
--cc=user-mode-linux-devel@lists.sourceforge.net \
--cc=user-mode-linux-user@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.