Lines Matching defs:mapped_device
31 struct mapped_device { struct
32 struct mutex suspend_lock;
34 struct mutex table_devices_lock;
35 struct list_head table_devices;
42 void __rcu *map;
44 unsigned long flags;
47 struct mutex type_lock;
48 enum dm_queue_mode type;
50 int numa_node_id;
51 struct request_queue *queue;
53 atomic_t holders;
54 atomic_t open_count;
56 struct dm_target *immutable_target;
57 struct target_type *immutable_target_type;
59 char name[16];
60 struct gendisk *disk;
61 struct dax_device *dax_dev;
66 struct work_struct work;
67 wait_queue_head_t wait;
68 spinlock_t deferred_lock;
69 struct bio_list deferred;
71 void *interface_ptr;
76 wait_queue_head_t eventq;
77 atomic_t event_nr;
78 atomic_t uevent_seq;
79 struct list_head uevent_list;
80 spinlock_t uevent_lock; /* Protect access to uevent_list */
83 unsigned internal_suspend_count;
88 struct bio_set io_bs;
89 struct bio_set bs;
94 struct workqueue_struct *wq;
118 void disable_discard(struct mapped_device *md); argument