diff options
author | Tom Caputi <[email protected]> | 2017-11-30 12:40:13 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-11-30 09:40:13 -0800 |
commit | d4677269f286005768ae1a0fcd3389aa6015c4c7 (patch) | |
tree | da3859982e48be50d983c8510220c6ae1487ef02 /include/sys/fs/zfs.h | |
parent | ed15d544812eb720d2fbec55d27e749d7a805bf6 (diff) |
Unbreak the scan status ABI
When d4a72f23 was merged, pss_pass_issued was incorrectly
added to the middle of the pool_scan_stat_t structure
instead of the end. This patch simply corrects this issue.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Tom Caputi <[email protected]>
Closes #6909
Diffstat (limited to 'include/sys/fs/zfs.h')
-rw-r--r-- | include/sys/fs/zfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/fs/zfs.h b/include/sys/fs/zfs.h index 88e8671db..473e50082 100644 --- a/include/sys/fs/zfs.h +++ b/include/sys/fs/zfs.h @@ -866,11 +866,11 @@ typedef struct pool_scan_stat { /* values not stored on disk */ uint64_t pss_pass_exam; /* examined bytes per scan pass */ - uint64_t pss_pass_issued; /* issued bytes per scan pass */ uint64_t pss_pass_start; /* start time of a scan pass */ uint64_t pss_pass_scrub_pause; /* pause time of a scurb pass */ /* cumulative time scrub spent paused, needed for rate calculation */ uint64_t pss_pass_scrub_spent_paused; + uint64_t pss_pass_issued; /* issued bytes per scan pass */ uint64_t pss_issued; /* total bytes checked by scanner */ } pool_scan_stat_t; |