diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nbd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/nbd.h b/include/linux/nbd.h index 9865720..6907551 100644 --- a/include/linux/nbd.h +++ b/include/linux/nbd.h @@ -56,9 +56,11 @@ struct nbd_device { int magic; spinlock_t queue_lock; - struct list_head queue_head;/* Requests are added here... */ + struct list_head queue_head; /* Requests waiting result */ struct request *active_req; wait_queue_head_t active_wq; + struct list_head waiting_queue; /* Requests to be sent */ + wait_queue_head_t waiting_wq; struct mutex tx_lock; struct gendisk *disk; |