Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 208323
b: refs/heads/master
c: 4dab46f
h: refs/heads/master
i:
  208321: fc08775
  208319: ed6f948
v: v3
  • Loading branch information
Jeremy Fitzhardinge authored and Jens Axboe committed Aug 7, 2010
1 parent 2b61a47 commit 4846444
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e96f6abe02fc3320d669985443e8c68ff8e83294
refs/heads/master: 4dab46ff26c6003a13ec769312c50938b93c359d
17 changes: 13 additions & 4 deletions trunk/drivers/block/xen-blkfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,19 @@ static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size)
static int xlvbd_barrier(struct blkfront_info *info)
{
int err;
unsigned ordered = QUEUE_ORDERED_NONE;

err = blk_queue_ordered(info->rq,
info->feature_barrier ? QUEUE_ORDERED_DRAIN : QUEUE_ORDERED_NONE);
/*
* If we don't have barrier support, then there's really no
* way to guarantee write ordering, so we really just have to
* send writes to the backend and hope for the best. If
* barriers are supported then we can treat them as proper
* ordering tags.
*/
if (info->feature_barrier)
ordered = QUEUE_ORDERED_TAG;

err = blk_queue_ordered(info->rq, ordered);

if (err)
return err;
Expand Down Expand Up @@ -509,8 +519,7 @@ static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
info->rq = gd->queue;
info->gd = gd;

if (info->feature_barrier)
xlvbd_barrier(info);
xlvbd_barrier(info);

if (vdisk_info & VDISK_READONLY)
set_disk_ro(gd, 1);
Expand Down

0 comments on commit 4846444

Please sign in to comment.