diff options
| author | Jens Axboe <axboe@fb.com> | 2015-01-02 15:20:25 -0700 |
|---|---|---|
| committer | Jens Axboe <axboe@fb.com> | 2015-01-02 15:20:25 -0700 |
| commit | 78e367a3601f35ea811e7f5660b7362afa2401fa (patch) | |
| tree | dd433ae062a7975fa30d63cee4b6b095636d2782 /drivers/block/loop.h | |
| parent | block: loop: don't handle REQ_FUA explicitly (diff) | |
| download | linux-78e367a3601f35ea811e7f5660b7362afa2401fa.tar.gz linux-78e367a3601f35ea811e7f5660b7362afa2401fa.zip | |
loop: add blk-mq.h include
Looks like we pull it in through other ways on x86, but we fail
on sparc:
In file included from drivers/block/cryptoloop.c:30:0:
drivers/block/loop.h:63:24: error: field 'tag_set' has incomplete type
struct blk_mq_tag_set tag_set;
Add the include to loop.h, kill it from loop.c.
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block/loop.h')
| -rw-r--r-- | drivers/block/loop.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/loop.h b/drivers/block/loop.h index e20cdbbff7d5..301c27f8323f 100644 --- a/drivers/block/loop.h +++ b/drivers/block/loop.h @@ -11,6 +11,7 @@ #include <linux/bio.h> #include <linux/blkdev.h> +#include <linux/blk-mq.h> #include <linux/spinlock.h> #include <linux/mutex.h> #include <linux/workqueue.h> |
