diff options
author | Brian Behlendorf <[email protected]> | 2017-09-13 16:04:16 -0700 |
---|---|---|
committer | Tony Hutter <[email protected]> | 2017-09-13 16:04:16 -0700 |
commit | a2a04409185efc3e90aa9b8f16ace49190f01f4b (patch) | |
tree | 6ebc6a2d9152bb8b5392037f5b52ca57631b0709 /scripts | |
parent | 45d1abc74d6bd4b09c573dd8db0d2571eb82220d (diff) |
Fix volume WR_INDIRECT log replay (#6620)
The portion of the zvol_replay_write() handler responsible for
replaying indirect log records for some reason never existed.
As a result indirect log records were not being correctly replayed.
This went largely unnoticed since the majority of zvol log records
were of the type WR_COPIED or WR_NEED_COPY prior to OpenZFS 7578.
This patch updates zvol_replay_write() to correctly handle these
log records and adds a new test case which verifies volume replay
to prevent any regression. The existing test case which verified
replay on filesystem was renamed slog_replay_fs.ksh for clarity.
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: loli10K <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #6603
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/zfs-tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/zfs-tests.sh b/scripts/zfs-tests.sh index eb2ce3828..1d959ae33 100755 --- a/scripts/zfs-tests.sh +++ b/scripts/zfs-tests.sh @@ -224,8 +224,8 @@ constrain_path() { # Exceptions ln -fs "$STF_PATH/awk" "$STF_PATH/nawk" - ln -fs /sbin/fsck.ext2 "$STF_PATH/fsck" - ln -fs /sbin/mkfs.ext2 "$STF_PATH/newfs" + ln -fs /sbin/fsck.ext4 "$STF_PATH/fsck" + ln -fs /sbin/mkfs.ext4 "$STF_PATH/newfs" ln -fs "$STF_PATH/gzip" "$STF_PATH/compress" ln -fs "$STF_PATH/gunzip" "$STF_PATH/uncompress" ln -fs "$STF_PATH/exportfs" "$STF_PATH/share" |