[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] blkfront problem in pvops kernel when barriers enabled
On Tue, Sep 06, 2011 at 07:16:34PM +0200, Marek Marczykowski wrote: > On 06.09.2011 18:32, Konrad Rzeszutek Wilk wrote: > > On Sun, Sep 04, 2011 at 12:49:42PM +0200, Marek Marczykowski wrote: > >> Hello, > >> > >> Pvops block frontend (tested vanilla 3.0.3, 3.1rc2, Konrad's testing > >> branch) produces a lot of I/O errors when barriers are enabled but > >> cannot be used. > >> > >> On xenlinux I've got message: > >> [ 15.036921] blkfront: xvdb: empty write barrier op failed > >> [ 15.036936] blkfront: xvdb: barriers disabled > >> > >> and after that, everything works fine. On pvops - I/O errors. > >> As backend I've used 2.6.38.3 xenlinux (based on SUSE package) and > >> 3.1rc2 with same result. > > > > Hm, and the 'feature-barrier' was enabled on in those backends? > > That is really bizzare considering that those backends don't actually > > support WRITE_BARRIER anymore. > > At least in 2.6.38.3 xenlinux (SUSE). Now I'm not sure if 3.1rc2 also > needed this modification (can't find it now). I think this is resolved now? This patch below should fix the issue (at least it did for me when I tried 3.0 with a 2.6.32 older backend with DEBUG enabled): # HG changeset patch From: Jan Beulich <jbeulich@xxxxxxxxxx> # Date 1306409621 -3600 # Node ID 876a5aaac0264cf38cae6581e5714b93ec380aaa # Parent aedb712c05cf065e943e15d0f38597c2e80f7982 Subject: xen/blkback: don't fail empty barrier requests The sector number on empty barrier requests may (will?) be uninitialized (neither bio_init() nor rq_init() set the respective fields), which allows for exceeding the actual (virtual) disk's size. Inspired by Konrad's "When writting barriers set the sector number to zero...", but instead of zapping the sector number (which is wrong for non-empty ones) just ignore the sector number when the sector count is zero. While at it also add overflow checking to the math in vbd_translate(). Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx> diff -r aedb712c05cf -r 876a5aaac026 drivers/xen/blkback/vbd.c --- a/drivers/xen/blkback/vbd.c Thu May 26 08:09:04 2011 +0100 +++ b/drivers/xen/blkback/vbd.c Thu May 26 12:33:41 2011 +0100 @@ -108,8 +108,14 @@ int vbd_translate(struct phys_req *req, if ((operation != READ) && vbd->readonly) goto out; - if (unlikely((req->sector_number + req->nr_sects) > vbd_sz(vbd))) - goto out; + if (likely(req->nr_sects)) { + blkif_sector_t end = req->sector_number + req->nr_sects; + + if (unlikely(end < req->sector_number)) + goto out; + if (unlikely(end > vbd_sz(vbd))) + goto out; + } req->dev = vbd->pdevice; req->bdev = vbd->bdev; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |