summaryrefslogtreecommitdiffstats
path: root/src/kernel/dnbd3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/dnbd3.h')
-rw-r--r--src/kernel/dnbd3.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/kernel/dnbd3.h b/src/kernel/dnbd3.h
index 6f31c07..ec9dd6e 100644
--- a/src/kernel/dnbd3.h
+++ b/src/kernel/dnbd3.h
@@ -33,25 +33,25 @@ extern int major;
struct dnbd3_device
{
- // block
- struct gendisk *disk;
- spinlock_t blk_lock;
-
- // network
- char host[16];
- char port[6];
- char image_id[MAX_FILE_NAME];
- struct socket *sock;
- struct timer_list hb_timer;
- struct request hb_request;
-
- // process
- struct task_struct *thread_send;
- struct task_struct *thread_receive;
- wait_queue_head_t process_queue_send;
- wait_queue_head_t process_queue_receive;
- struct list_head request_queue_send;
- struct list_head request_queue_receive;
+ // block
+ struct gendisk *disk;
+ spinlock_t blk_lock;
+
+ // network
+ char host[16];
+ char port[6];
+ char image_id[MAX_FILE_NAME];
+ struct socket *sock;
+ struct timer_list hb_timer;
+ struct request hb_request;
+
+ // process
+ struct task_struct *thread_send;
+ struct task_struct *thread_receive;
+ wait_queue_head_t process_queue_send;
+ wait_queue_head_t process_queue_receive;
+ struct list_head request_queue_send;
+ struct list_head request_queue_receive;
};