|
@@ -1676,25 +1676,6 @@ static inline void put_dev_sector(Sector p)
|
|
|
put_page(p.v);
|
|
|
}
|
|
|
|
|
|
-static inline bool __bvec_gap_to_prev(struct request_queue *q,
|
|
|
- struct bio_vec *bprv, unsigned int offset)
|
|
|
-{
|
|
|
- return offset ||
|
|
|
- ((bprv->bv_offset + bprv->bv_len) & queue_virt_boundary(q));
|
|
|
-}
|
|
|
-
|
|
|
-/*
|
|
|
- * Check if adding a bio_vec after bprv with offset would create a gap in
|
|
|
- * the SG list. Most drivers don't care about this, but some do.
|
|
|
- */
|
|
|
-static inline bool bvec_gap_to_prev(struct request_queue *q,
|
|
|
- struct bio_vec *bprv, unsigned int offset)
|
|
|
-{
|
|
|
- if (!queue_virt_boundary(q))
|
|
|
- return false;
|
|
|
- return __bvec_gap_to_prev(q, bprv, offset);
|
|
|
-}
|
|
|
-
|
|
|
int kblockd_schedule_work(struct work_struct *work);
|
|
|
int kblockd_schedule_work_on(int cpu, struct work_struct *work);
|
|
|
int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
|