Lines Matching defs:nbd_device
43 struct nbd_device { struct
44 u32 flags;
45 struct socket * sock; /* If == NULL, device is not ready, yet */
46 int magic;
48 spinlock_t queue_lock;
49 struct list_head queue_head; /* Requests waiting result */
50 struct request *active_req;
51 wait_queue_head_t active_wq;
52 struct list_head waiting_queue; /* Requests to be sent */
53 wait_queue_head_t waiting_wq;
55 struct mutex tx_lock;
56 struct gendisk *disk;
57 int blksize;
81 static struct nbd_device *nbd_dev; argument