diff options
Diffstat (limited to 'include/linux/bio.h')
-rw-r--r-- | include/linux/bio.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/bio.h b/include/linux/bio.h index 4d94eb8bcbcc..26435890dc87 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h | |||
@@ -269,6 +269,14 @@ extern struct bio_vec *bvec_alloc_bs(gfp_t, int, unsigned long *, struct bio_set | |||
269 | extern void bvec_free_bs(struct bio_set *, struct bio_vec *, unsigned int); | 269 | extern void bvec_free_bs(struct bio_set *, struct bio_vec *, unsigned int); |
270 | extern unsigned int bvec_nr_vecs(unsigned short idx); | 270 | extern unsigned int bvec_nr_vecs(unsigned short idx); |
271 | 271 | ||
272 | #ifdef CONFIG_BLK_CGROUP | ||
273 | int bio_associate_current(struct bio *bio); | ||
274 | void bio_disassociate_task(struct bio *bio); | ||
275 | #else /* CONFIG_BLK_CGROUP */ | ||
276 | static inline int bio_associate_current(struct bio *bio) { return -ENOENT; } | ||
277 | static inline void bio_disassociate_task(struct bio *bio) { } | ||
278 | #endif /* CONFIG_BLK_CGROUP */ | ||
279 | |||
272 | /* | 280 | /* |
273 | * bio_set is used to allow other portions of the IO system to | 281 | * bio_set is used to allow other portions of the IO system to |
274 | * allocate their own private memory pools for bio and iovec structures. | 282 | * allocate their own private memory pools for bio and iovec structures. |