Commit 6935321e authored by Juergen Gross's avatar Juergen Gross

xen/blkback: fix white space code style issues

Signed-off-by: default avatarJuergen Gross <jgross@suse.com>
Acked-by: default avatarRoger Pau Monné <roger.pau@citrix.com>
Signed-off-by: default avatarJuergen Gross <jgross@suse.com>
parent c66bb48e
...@@ -891,7 +891,7 @@ static int xen_blkbk_map(struct xen_blkif_ring *ring, ...@@ -891,7 +891,7 @@ static int xen_blkbk_map(struct xen_blkif_ring *ring,
out: out:
for (i = last_map; i < num; i++) { for (i = last_map; i < num; i++) {
/* Don't zap current batch's valid persistent grants. */ /* Don't zap current batch's valid persistent grants. */
if(i >= map_until) if (i >= map_until)
pages[i]->persistent_gnt = NULL; pages[i]->persistent_gnt = NULL;
pages[i]->handle = BLKBACK_INVALID_HANDLE; pages[i]->handle = BLKBACK_INVALID_HANDLE;
} }
......
...@@ -296,7 +296,7 @@ struct xen_blkif_ring { ...@@ -296,7 +296,7 @@ struct xen_blkif_ring {
struct work_struct free_work; struct work_struct free_work;
/* Thread shutdown wait queue. */ /* Thread shutdown wait queue. */
wait_queue_head_t shutdown_wq; wait_queue_head_t shutdown_wq;
struct xen_blkif *blkif; struct xen_blkif *blkif;
}; };
struct xen_blkif { struct xen_blkif {
...@@ -315,7 +315,7 @@ struct xen_blkif { ...@@ -315,7 +315,7 @@ struct xen_blkif {
atomic_t drain; atomic_t drain;
struct work_struct free_work; struct work_struct free_work;
unsigned int nr_ring_pages; unsigned int nr_ring_pages;
bool multi_ref; bool multi_ref;
/* All rings for this device. */ /* All rings for this device. */
struct xen_blkif_ring *rings; struct xen_blkif_ring *rings;
...@@ -329,7 +329,7 @@ struct seg_buf { ...@@ -329,7 +329,7 @@ struct seg_buf {
}; };
struct grant_page { struct grant_page {
struct page *page; struct page *page;
struct persistent_gnt *persistent_gnt; struct persistent_gnt *persistent_gnt;
grant_handle_t handle; grant_handle_t handle;
grant_ref_t gref; grant_ref_t gref;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment