mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
dm delay: Use DM_MAPIO macros instead of open-coded equivalents
.map function of dm-delay returns return value of delay_bio(), hence it's supposed to return using a defined DM_MAPIO macro. Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com> Acked-By: Mikulas Patocka <mpatocka@redhat.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
This commit is contained in:
parent
00272c854e
commit
340c9ec09b
@ -237,7 +237,7 @@ static int delay_bio(struct delay_c *dc, int delay, struct bio *bio)
|
||||
unsigned long expires = 0;
|
||||
|
||||
if (!delay || !atomic_read(&dc->may_delay))
|
||||
return 1;
|
||||
return DM_MAPIO_REMAPPED;
|
||||
|
||||
delayed = dm_per_bio_data(bio, sizeof(struct dm_delay_info));
|
||||
|
||||
@ -257,7 +257,7 @@ static int delay_bio(struct delay_c *dc, int delay, struct bio *bio)
|
||||
|
||||
queue_timeout(dc, expires);
|
||||
|
||||
return 0;
|
||||
return DM_MAPIO_SUBMITTED;
|
||||
}
|
||||
|
||||
static void delay_presuspend(struct dm_target *ti)
|
||||
|
Loading…
Reference in New Issue
Block a user