-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix some assign arc buf with brt clone and O_TRUNC
#15139
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
tests/zfs-tests/tests/functional/block_cloning/block_cloning_ficlone_and_write.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/ksh -p | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or https://opensource.org/licenses/CDDL-1.0. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# | ||
# Copyright (c) 2023, Kay Pedersen <mail@mkwg.de> | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
. $STF_SUITE/tests/functional/block_cloning/block_cloning.kshlib | ||
|
||
verify_runnable "global" | ||
|
||
if [[ $(linux_version) -lt $(linux_version "4.5") ]]; then | ||
log_unsupported "copy_file_range not available before Linux 4.5" | ||
fi | ||
|
||
claim="O_TRUNC, writing and FICLONE to a large (>4G) file shouldn't fail" | ||
|
||
log_assert $claim | ||
|
||
NO_LOOP_BREAK=true | ||
|
||
function cleanup | ||
{ | ||
datasetexists $TESTPOOL && destroy_pool $TESTPOOL | ||
} | ||
|
||
function loop | ||
{ | ||
while $NO_LOOP_BREAK; do clonefile -c -t -q /$TESTPOOL/file /$TESTPOOL/clone; done | ||
} | ||
|
||
log_onexit cleanup | ||
|
||
log_must zpool create -o feature@block_cloning=enabled $TESTPOOL $DISKS | ||
|
||
log_must dd if=/dev/urandom of=/$TESTPOOL/file bs=1M count=4000 | ||
log_must sync_pool $TESTPOOL | ||
|
||
|
||
log_note "Copying entire file with FICLONE" | ||
|
||
log_must clonefile -c /$TESTPOOL/file /$TESTPOOL/clone | ||
log_must sync_pool $TESTPOOL | ||
|
||
log_must have_same_content /$TESTPOOL/file /$TESTPOOL/clone | ||
|
||
log_note "looping a clone" | ||
loop & | ||
|
||
log_must dd if=/dev/urandom of=/$TESTPOOL/clone bs=1M count=4000 | ||
log_must dd if=/dev/urandom of=/$TESTPOOL/clone bs=1M count=4000 | ||
|
||
NO_LOOP_BREAK=false | ||
|
||
# just to be sure all background jobs are killed. | ||
log_must kill $(jobs -p) | ||
|
||
log_must sync_pool $TESTPOOL | ||
|
||
log_pass $claim |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the CI environment it appears this loop can completely starve out the
dd
's below. Can we both reduce the size of this file and cap the number of iterations here and still have this test be useful?