From: Eric Sandeen <sandeen@sandeen.net>
To: xfs mailing list <xfs@oss.sgi.com>
Subject: [PATCH] xfstests: filter out imaxpct value in test 096
Date: Tue, 21 Apr 2009 15:02:44 -0500 [thread overview]
Message-ID: <49EE2664.7030701@sandeen.net> (raw)
xfstests: filter out imaxpct value in test 096
On large filesystems, imaxpc drops from 25 to 5
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
---
iff --git a/096 b/096
index 369d95d..a0560b1 100755
--- a/096
+++ b/096
@@ -55,6 +55,7 @@ _mkfs_filter()
sed \
-e 's/extsz=[0-9][0-9]*[ ]*/extsz=N, /' \
-e 's/blocks=[0-9][0-9]*/blocks=N/' \
+ -e 's/imaxpct=[0-9][0-9]*/imaxpct=N/' \
-e 's/agsize=[0-9][0-9]*/agsize=N/' \
-e 's/agcount=[0-9][0-9]*/agcount=N/' \
-e 's/swidth=[0-9][0-9]* blks$/&, unwritten=1/' \
diff --git a/096.external b/096.external
index 7d68373..989a7bd 100644
--- a/096.external
+++ b/096.external
@@ -10,7 +10,7 @@ log stripe unit (262656) must be a multiple of the block size (4096)
log stripe unit (266240 bytes) is too large (maximum is 256KiB)
log stripe unit adjusted to 32KiB
meta-data=DEV isize=256 agcount=N, agsize=N blks
-data = bsize=4096 blocks=N, imaxpct=25
+data = bsize=4096 blocks=N, imaxpct=N
= sunit=0 swidth=0 blks, unwritten=1
naming =version 2 bsize=4096
log =LOG bsize=4096 blocks=N, version=2
@@ -21,7 +21,7 @@ realtime =REALTIME extsz=N, blocks=N, rtextents=N
# same test but get log stripe from data stripe
--- mkfs=-l version=2 -d su=266240,sw=1 ---
meta-data=DEV isize=256 agcount=N, agsize=N blks
-data = bsize=4096 blocks=N, imaxpct=25
+data = bsize=4096 blocks=N, imaxpct=N
= sunit=65 swidth=65 blks, unwritten=1
naming =version 2 bsize=4096
log =LOG bsize=4096 blocks=N, version=2
@@ -32,7 +32,7 @@ realtime =REALTIME extsz=N, blocks=N, rtextents=N
# test out data stripe
--- mkfs=-d su=266240,sw=1 ---
meta-data=DEV isize=256 agcount=N, agsize=N blks
-data = bsize=4096 blocks=N, imaxpct=25
+data = bsize=4096 blocks=N, imaxpct=N
= sunit=65 swidth=65 blks, unwritten=1
naming =version 2 bsize=4096
log =LOG bsize=4096 blocks=N, version=1
@@ -43,7 +43,7 @@ realtime =REALTIME extsz=N, blocks=N, rtextents=N
# test out data stripe the same but using sunit & swidth
--- mkfs=-d sunit=520,swidth=520 ---
meta-data=DEV isize=256 agcount=N, agsize=N blks
-data = bsize=4096 blocks=N, imaxpct=25
+data = bsize=4096 blocks=N, imaxpct=N
= sunit=65 swidth=65 blks, unwritten=1
naming =version 2 bsize=4096
log =LOG bsize=4096 blocks=N, version=1
diff --git a/096.internal b/096.internal
index e0e1ee4..cf75037 100644
--- a/096.internal
+++ b/096.internal
@@ -10,7 +10,7 @@ log stripe unit (262656) must be a multiple of the block size (4096)
log stripe unit (266240 bytes) is too large (maximum is 256KiB)
log stripe unit adjusted to 32KiB
meta-data=DEV isize=256 agcount=N, agsize=N blks
-data = bsize=4096 blocks=N, imaxpct=25
+data = bsize=4096 blocks=N, imaxpct=N
= sunit=0 swidth=0 blks, unwritten=1
naming =version 2 bsize=4096
log =LOG bsize=4096 blocks=N, version=2
@@ -23,7 +23,7 @@ realtime =REALTIME extsz=N, blocks=N, rtextents=N
log stripe unit (266240 bytes) is too large (maximum is 256KiB)
log stripe unit adjusted to 32KiB
meta-data=DEV isize=256 agcount=N, agsize=N blks
-data = bsize=4096 blocks=N, imaxpct=25
+data = bsize=4096 blocks=N, imaxpct=N
= sunit=65 swidth=65 blks, unwritten=1
naming =version 2 bsize=4096
log =LOG bsize=4096 blocks=N, version=2
@@ -34,7 +34,7 @@ realtime =REALTIME extsz=N, blocks=N, rtextents=N
# test out data stripe
--- mkfs=-l version=1 -d su=266240,sw=1 ---
meta-data=DEV isize=256 agcount=N, agsize=N blks
-data = bsize=4096 blocks=N, imaxpct=25
+data = bsize=4096 blocks=N, imaxpct=N
= sunit=65 swidth=65 blks, unwritten=1
naming =version 2 bsize=4096
log =LOG bsize=4096 blocks=N, version=1
@@ -45,7 +45,7 @@ realtime =REALTIME extsz=N, blocks=N, rtextents=N
# test out data stripe the same but using sunit & swidth
--- mkfs=-l version=1 -d sunit=520,swidth=520 ---
meta-data=DEV isize=256 agcount=N, agsize=N blks
-data = bsize=4096 blocks=N, imaxpct=25
+data = bsize=4096 blocks=N, imaxpct=N
= sunit=65 swidth=65 blks, unwritten=1
naming =version 2 bsize=4096
log =LOG bsize=4096 blocks=N, version=1
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next reply other threads:[~2009-04-21 20:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-21 20:02 Eric Sandeen [this message]
2009-04-22 19:10 ` [PATCH] xfstests: filter out imaxpct value in test 096 Josef 'Jeff' Sipek
2009-04-23 17:11 ` Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=49EE2664.7030701@sandeen.net \
--to=sandeen@sandeen.net \
--cc=xfs@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.