diff options
Diffstat (limited to 'block/bfq-ioc.c')
-rw-r--r-- | block/bfq-ioc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/block/bfq-ioc.c b/block/bfq-ioc.c index 7f6b0004c..fb7bb8f08 100644 --- a/block/bfq-ioc.c +++ b/block/bfq-ioc.c @@ -14,7 +14,7 @@ * icq_to_bic - convert iocontext queue structure to bfq_io_cq. * @icq: the iocontext queue. */ -static inline struct bfq_io_cq *icq_to_bic(struct io_cq *icq) +static struct bfq_io_cq *icq_to_bic(struct io_cq *icq) { /* bic->icq is the first member, %NULL will convert to %NULL */ return container_of(icq, struct bfq_io_cq, icq); @@ -27,8 +27,8 @@ static inline struct bfq_io_cq *icq_to_bic(struct io_cq *icq) * * Queue lock must be held. */ -static inline struct bfq_io_cq *bfq_bic_lookup(struct bfq_data *bfqd, - struct io_context *ioc) +static struct bfq_io_cq *bfq_bic_lookup(struct bfq_data *bfqd, + struct io_context *ioc) { if (ioc) return icq_to_bic(ioc_lookup_icq(ioc, bfqd->queue)); |