We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cbce28 commit 982b48aCopy full SHA for 982b48a
drivers/md/dm-core.h
@@ -250,17 +250,19 @@ static inline bool dm_tio_is_normal(struct dm_target_io *tio)
250
#define DM_IO_MAGIC 19577
251
struct dm_io {
252
unsigned short magic;
253
- blk_short_t flags;
254
- atomic_t io_count;
255
- struct mapped_device *md;
256
- struct bio *orig_bio;
257
- blk_status_t status;
+
258
spinlock_t lock;
259
unsigned long start_time;
260
void *data;
261
struct hlist_node node;
262
struct task_struct *map_task;
263
struct dm_stats_aux stats_aux;
+ blk_short_t flags;
+ blk_status_t status;
+ atomic_t io_count;
264
+ struct mapped_device *md;
265
+ struct bio *orig_bio;
266
/* last member of dm_target_io is 'struct bio' */
267
struct dm_target_io tio;
268
};
0 commit comments