search for: 72b818b

Displaying 2 results from an estimated 2 matches for "72b818b".

Did you mean: 22b818cb
2012 May 03
2
[PATCH 1/2] virtio-blk: Fix hot-unplug race in remove method
...t-unplug while the device is busy serving I/O Signed-off-by: Asias He <asias at redhat.com> --- drivers/block/virtio_blk.c | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 72fe55d..72b818b 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -46,6 +46,9 @@ struct virtio_blk /* Ida index - used to track minor number allocations. */ int index; + /* Number of pending requests dispatched to driver. */ + int req_in_flight; + /* Scatterlist: can be too big fo...
2012 May 03
2
[PATCH 1/2] virtio-blk: Fix hot-unplug race in remove method
...t-unplug while the device is busy serving I/O Signed-off-by: Asias He <asias at redhat.com> --- drivers/block/virtio_blk.c | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 72fe55d..72b818b 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -46,6 +46,9 @@ struct virtio_blk /* Ida index - used to track minor number allocations. */ int index; + /* Number of pending requests dispatched to driver. */ + int req_in_flight; + /* Scatterlist: can be too big fo...