| To: | Allison Henderson <achender@xxxxxxxxxxxxxxxxxx> |
|---|---|
| Subject: | Re: [PATCH 4/4 v3] XFS TESTS: Fix 252 Failure: Add Generic FS Punch Hole Test 255 |
| From: | Alex Elder <aelder@xxxxxxx> |
| Date: | Wed, 13 Jul 2011 11:31:56 -0500 |
| Cc: | <linux-ext4@xxxxxxxxxxxxxxx>, <linux-fsdevel@xxxxxxxxxxxxxxx>, <xfs@xxxxxxxxxxx> |
| In-reply-to: | <1309411441-2491-5-git-send-email-achender@xxxxxxxxxxxxxxxxxx> |
| References: | <1309411441-2491-1-git-send-email-achender@xxxxxxxxxxxxxxxxxx> <1309411441-2491-5-git-send-email-achender@xxxxxxxxxxxxxxxxxx> |
| Reply-to: | <aelder@xxxxxxx> |
On Wed, 2011-06-29 at 22:24 -0700, Allison Henderson wrote:
> This patch adds a new test 255 that tests fallocate punch hole,
> but is for use by generic filesystems. It is similar to 252,
> but uses a weaker fiemap filter that only displays the location
> of the hole, and not the extent types.
>
> Signed-off-by: Allison Henderson <achender@xxxxxxxxxxxxxxxxxx>
I realize Christoph already committed this but I
spotted something so I thought I might as well
mention it. I haven't tested any of this, so
it may be OK after all, but if it's not then
the filter_hole_fiemap() function ought to be
updated.
-Alex
. . .
> diff --git a/common.punch b/common.punch
> index c18f88a..a48b7ae 100644
> --- a/common.punch
> +++ b/common.punch
> @@ -218,6 +218,23 @@ _filter_fiemap()
> _coalesce_extents
> }
>
> +# Filters fiemap output to only print the
> +# file offset column and whether or not
> +# it is an extent or a hole
> +_filter_hole_fiemap()
> +{
> + awk --posix '
> + $3 ~ /hole/ {
> + print $1, $2, $3;
> + next;
> + }
> + $5 ~ /0x[[:digit:]]+/ {
I believe this should be:
$5 ~ /0x[[:xdigit:]]+/ {
(I.e., hex digits, not just decimals.)
> + print $1, $2, "extent";
> + }' |
> + _coalesce_extents
> +}
> +
> +
> # Prints the md5 checksum of a given file
> _md5_checksum()
> {
. . .
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] xfs [stable only]: restart busy extent search after node removal, Eric Sandeen |
|---|---|
| Next by Date: | Re: [PATCH 4/5] mm: vmscan: Immediately reclaim end-of-LRU dirty pages when writeback completes, Johannes Weiner |
| Previous by Thread: | [PATCH] xfs [stable only]: restart busy extent search after node removal, Eric Sandeen |
| Next by Thread: | Re: [PATCH 4/4 v3] XFS TESTS: Fix 252 Failure: Add Generic FS Punch Hole Test 255, Allison Henderson |
| Indexes: | [Date] [Thread] [Top] [All Lists] |