diff options
| author | Christoph Hellwig <hch@lst.de> | 2015-11-26 03:13:05 -0500 |
|---|---|---|
| committer | Jens Axboe <axboe@fb.com> | 2015-12-01 12:53:59 -0500 |
| commit | 6f3b0e8bcf3cbb87a7459b3ed018d31d918df3f8 (patch) | |
| tree | 78520f9313db6743cb1ba6feb805120e80113a8d /drivers/block/mtip32xx | |
| parent | d7cf931dd9f18ce8ee7a0a9b7813a19fb2c8f5e9 (diff) | |
blk-mq: add a flags parameter to blk_mq_alloc_request
We already have the reserved flag, and a nowait flag awkwardly encoded as
a gfp_t. Add a real flags argument to make the scheme more extensible and
allow for a nicer calling convention.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block/mtip32xx')
| -rw-r--r-- | drivers/block/mtip32xx/mtip32xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/mtip32xx/mtip32xx.c b/drivers/block/mtip32xx/mtip32xx.c index 3457ac8c03e2..10bd8d0a9d9c 100644 --- a/drivers/block/mtip32xx/mtip32xx.c +++ b/drivers/block/mtip32xx/mtip32xx.c | |||
| @@ -173,7 +173,7 @@ static struct mtip_cmd *mtip_get_int_command(struct driver_data *dd) | |||
| 173 | { | 173 | { |
| 174 | struct request *rq; | 174 | struct request *rq; |
| 175 | 175 | ||
| 176 | rq = blk_mq_alloc_request(dd->queue, 0, __GFP_RECLAIM, true); | 176 | rq = blk_mq_alloc_request(dd->queue, 0, BLK_MQ_REQ_RESERVED); |
| 177 | return blk_mq_rq_to_pdu(rq); | 177 | return blk_mq_rq_to_pdu(rq); |
| 178 | } | 178 | } |
| 179 | 179 | ||
