[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [BLKTAP]: Kill bogus fast_flush_area
# HG changeset patch # User kfraser@xxxxxxxxxxxxxxxxxxxxx # Node ID bb76521fdcb34fb10247f335b9e3836d9779321f # Parent 1467ae6622288069016fd0a12010fa9e737f6f17 [BLKTAP]: Kill bogus fast_flush_area The function dispatch_rw_block_io may call fast_flush_area even before a pending request has been initialised. This patch deletes that call. Signed-off-by: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> --- linux-2.6-xen-sparse/drivers/xen/blktap/blktap.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff -r 1467ae662228 -r bb76521fdcb3 linux-2.6-xen-sparse/drivers/xen/blktap/blktap.c --- a/linux-2.6-xen-sparse/drivers/xen/blktap/blktap.c Fri Oct 20 09:22:58 2006 +0100 +++ b/linux-2.6-xen-sparse/drivers/xen/blktap/blktap.c Fri Oct 20 09:24:26 2006 +0100 @@ -1128,9 +1128,10 @@ static void dispatch_rw_block_io(blkif_t int usr_idx = GET_NEXT_REQ(info->idx_map); uint16_t mmap_idx = pending_req->mem_idx; - /*Check we have space on user ring - should never fail*/ - if(usr_idx == INVALID_REQ) goto fail_flush; - + /* Check we have space on user ring - should never fail. */ + if (usr_idx == INVALID_REQ) + goto fail_response; + /* Check that number of segments is sane. */ nseg = req->nr_segments; if ( unlikely(nseg == 0) || _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |