diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-07-24 13:44:14 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-07-24 13:44:14 -0700 |
commit | a38a19efcd9b7b536e2820df91e9f0be806f9a42 (patch) | |
tree | f583c6b37cbcf8d6e589ff5f60494ff195a46d00 /include | |
parent | c615035b29c3628a35ece192046e0e6658d96ab3 (diff) | |
parent | 5df96f2b9f58a5d2dc1f30fe7de75e197f2c25f2 (diff) | |
download | linux-stable-a38a19efcd9b7b536e2820df91e9f0be806f9a42.tar.gz linux-stable-a38a19efcd9b7b536e2820df91e9f0be806f9a42.tar.bz2 linux-stable-a38a19efcd9b7b536e2820df91e9f0be806f9a42.zip |
Merge tag 'for-5.8/dm-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm into master
Pull device mapper fix from Mike Snitzer:
"A stable fix for DM integrity target's integrity recalculation that
gets skipped when resuming a device. This is a fix for a previous
stable@ fix"
* tag 'for-5.8/dm-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
dm integrity: fix integrity recalculation that is improperly skipped
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/device-mapper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index 8750f2dc5613..73dec4b5d5be 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h @@ -426,6 +426,7 @@ const char *dm_device_name(struct mapped_device *md); int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid); struct gendisk *dm_disk(struct mapped_device *md); int dm_suspended(struct dm_target *ti); +int dm_post_suspending(struct dm_target *ti); int dm_noflush_suspending(struct dm_target *ti); void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors); union map_info *dm_get_rq_mapinfo(struct request *rq); |