diff options
| author | Christoph Hellwig <hch@lst.de> | 2018-09-24 03:43:49 -0400 |
|---|---|---|
| committer | Jens Axboe <axboe@kernel.dk> | 2018-09-24 14:33:53 -0400 |
| commit | 27ca1d4ed04ea29dc77b47190a3cc82697023e76 (patch) | |
| tree | 8b69a5b53cc879fcb683ef026b092edd53b65bde /include/linux | |
| parent | e9907009cbfc0c93d987d5a8fdf3d6c3c7b89717 (diff) | |
block: move req_gap_back_merge to blk.h
No need to expose these helpers outside the block layer.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/blkdev.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index b7e676bb01bc..1d5e14139795 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
| @@ -1676,25 +1676,6 @@ static inline void put_dev_sector(Sector p) | |||
| 1676 | put_page(p.v); | 1676 | put_page(p.v); |
| 1677 | } | 1677 | } |
| 1678 | 1678 | ||
| 1679 | static inline bool __bvec_gap_to_prev(struct request_queue *q, | ||
| 1680 | struct bio_vec *bprv, unsigned int offset) | ||
| 1681 | { | ||
| 1682 | return offset || | ||
| 1683 | ((bprv->bv_offset + bprv->bv_len) & queue_virt_boundary(q)); | ||
| 1684 | } | ||
| 1685 | |||
| 1686 | /* | ||
| 1687 | * Check if adding a bio_vec after bprv with offset would create a gap in | ||
| 1688 | * the SG list. Most drivers don't care about this, but some do. | ||
| 1689 | */ | ||
| 1690 | static inline bool bvec_gap_to_prev(struct request_queue *q, | ||
| 1691 | struct bio_vec *bprv, unsigned int offset) | ||
| 1692 | { | ||
| 1693 | if (!queue_virt_boundary(q)) | ||
| 1694 | return false; | ||
| 1695 | return __bvec_gap_to_prev(q, bprv, offset); | ||
| 1696 | } | ||
| 1697 | |||
| 1698 | int kblockd_schedule_work(struct work_struct *work); | 1679 | int kblockd_schedule_work(struct work_struct *work); |
| 1699 | int kblockd_schedule_work_on(int cpu, struct work_struct *work); | 1680 | int kblockd_schedule_work_on(int cpu, struct work_struct *work); |
| 1700 | int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay); | 1681 | int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay); |
