summaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-cache-target.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/md/dm-cache-target.c')
-rw-r--r--drivers/md/dm-cache-target.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/md/dm-cache-target.c b/drivers/md/dm-cache-target.c
index 2fd4c8296144..5780accffa30 100644
--- a/drivers/md/dm-cache-target.c
+++ b/drivers/md/dm-cache-target.c
@@ -118,14 +118,12 @@ static void iot_io_end(struct io_tracker *iot, sector_t len)
118 */ 118 */
119struct dm_hook_info { 119struct dm_hook_info {
120 bio_end_io_t *bi_end_io; 120 bio_end_io_t *bi_end_io;
121 void *bi_private;
122}; 121};
123 122
124static void dm_hook_bio(struct dm_hook_info *h, struct bio *bio, 123static void dm_hook_bio(struct dm_hook_info *h, struct bio *bio,
125 bio_end_io_t *bi_end_io, void *bi_private) 124 bio_end_io_t *bi_end_io, void *bi_private)
126{ 125{
127 h->bi_end_io = bio->bi_end_io; 126 h->bi_end_io = bio->bi_end_io;
128 h->bi_private = bio->bi_private;
129 127
130 bio->bi_end_io = bi_end_io; 128 bio->bi_end_io = bi_end_io;
131 bio->bi_private = bi_private; 129 bio->bi_private = bi_private;
@@ -134,7 +132,6 @@ static void dm_hook_bio(struct dm_hook_info *h, struct bio *bio,
134static void dm_unhook_bio(struct dm_hook_info *h, struct bio *bio) 132static void dm_unhook_bio(struct dm_hook_info *h, struct bio *bio)
135{ 133{
136 bio->bi_end_io = h->bi_end_io; 134 bio->bi_end_io = h->bi_end_io;
137 bio->bi_private = h->bi_private;
138} 135}
139 136
140/*----------------------------------------------------------------*/ 137/*----------------------------------------------------------------*/