Merge commit '570e11b2da6ee55bc755f5211cf80c4f942b4644'

This commit is contained in:
Joe Thornber 2018-06-13 16:58:07 +01:00
commit cfe421ab8b
1 changed files with 13 additions and 0 deletions

View File

@ -668,5 +668,18 @@
(assert-pool-used-data pool (kilo 64) (meg 128))
(delete-thin pool 0)
(assert-pool-used-data pool (kilo 64) (sectors 0))))
(define-dm-scenario (thin discard recover-space)
"Discarding blocks frees up space"
(let ((data-size (meg 128)))
(with-pool (pool (default-md-table)
(default-data-table data-size)
(kilo 64)
(thin-pool-options error-if-no-space skip-block-zeroing))
(with-new-thin (thin pool 0 data-size)
(zero-dev thin)
(discard (dm-device-path thin) 0 (to-sectors data-size))
(assert-pool-used-data pool (kilo 64) (sectors 0))))))
)