aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/xen-blkback/common.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-11-06 21:31:36 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2011-11-06 21:31:36 -0500
commit06d381484fe8fb1ba2996c22e89595a273e3634c (patch)
tree0d39c57cb8c501341ab8ed1d740f076b0b8c0bd0 /drivers/block/xen-blkback/common.h
parent5d5a8d2d9d6cca979efe4fe1552d787fdc542603 (diff)
parentc9d6369978411f690513994e6e53e2e6410874a4 (diff)
Merge branch 'stable/vmalloc-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen
* 'stable/vmalloc-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen: net: xen-netback: use API provided by xenbus module to map rings block: xen-blkback: use API provided by xenbus module to map rings xen: use generic functions instead of xen_{alloc, free}_vm_area()
Diffstat (limited to 'drivers/block/xen-blkback/common.h')
-rw-r--r--drivers/block/xen-blkback/common.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/block/xen-blkback/common.h b/drivers/block/xen-blkback/common.h
index de09f525d6c1..dfb1b3a43a5d 100644
--- a/drivers/block/xen-blkback/common.h
+++ b/drivers/block/xen-blkback/common.h
@@ -170,7 +170,7 @@ struct xen_blkif {
170 enum blkif_protocol blk_protocol; 170 enum blkif_protocol blk_protocol;
171 enum blkif_backend_type blk_backend_type; 171 enum blkif_backend_type blk_backend_type;
172 union blkif_back_rings blk_rings; 172 union blkif_back_rings blk_rings;
173 struct vm_struct *blk_ring_area; 173 void *blk_ring;
174 /* The VBD attached to this interface. */ 174 /* The VBD attached to this interface. */
175 struct xen_vbd vbd; 175 struct xen_vbd vbd;
176 /* Back pointer to the backend_info. */ 176 /* Back pointer to the backend_info. */
@@ -198,9 +198,6 @@ struct xen_blkif {
198 int st_wr_sect; 198 int st_wr_sect;
199 199
200 wait_queue_head_t waiting_to_free; 200 wait_queue_head_t waiting_to_free;
201
202 grant_handle_t shmem_handle;
203 grant_ref_t shmem_ref;
204}; 201};
205 202
206 203