diff options
| author | Jens Axboe <[email protected]> | 2016-08-24 15:54:25 -0600 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2016-08-29 08:13:21 -0600 |
| commit | 27489a3c827b7eebba26eda0320bb0f100bef167 (patch) | |
| tree | 899f2101b78e5a5bab8121686d6f8576a5dcf940 /include | |
| parent | ee63cfa7fc197b63669623721b8009cce5b0659b (diff) | |
blk-mq: turn hctx->run_work into a regular work struct
We don't need the larger delayed work struct, since we always run it
immediately.
Signed-off-by: Jens Axboe <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/blk-mq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index e43bbffb5b7a..d579252e6463 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h @@ -25,7 +25,7 @@ struct blk_mq_hw_ctx { } ____cacheline_aligned_in_smp; unsigned long state; /* BLK_MQ_S_* flags */ - struct delayed_work run_work; + struct work_struct run_work; struct delayed_work delay_work; cpumask_var_t cpumask; int next_cpu; |