* [LTP] [PATCH v1] ext4_subdir_limit_test.sh: fix "No Space" issue
@ 2019-04-04 12:41 XiaoLi Feng
0 siblings, 0 replies; 4+ messages in thread
From: XiaoLi Feng @ 2019-04-04 12:41 UTC (permalink / raw)
To: ltp
From: Xiaoli Feng <fengxiaoli0714@gmail.com>
1G ext4 filesystem default has 65536 inode. And some inodes
will be used after format. So it will be failed when try to
create 65536 sub-directorys in this ext4 mountpoint. Change
it to create 65536 - used inodes directorys.
---
.../ext4-subdir-limit/ext4_subdir_limit_test.sh | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh b/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh
index 5cc0523a8..05581d5c6 100755
--- a/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh
+++ b/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh
@@ -46,6 +46,8 @@ prev_result=$FAIL
ext4_run_case()
{
local dir_name_len=
+ local free_inode=
+ local max_directorys=$1
if [ $2 -eq $SHORT_DIR ]; then
dir_name_len="short name"
@@ -53,9 +55,6 @@ ext4_run_case()
dir_name_len="long name"
fi
- tst_resm TINFO "Num of dirs to create: $1, Dir name len: $dir_name_len, " \
- "Parent dir: $3, Block size: $4"
-
# only mkfs if block size has been changed,
# or previous case failed
if [ $prev_result -ne $PASS -o $4 -ne $prev_block_size ]; then
@@ -80,11 +79,18 @@ ext4_run_case()
# create directories
mkdir -p $3 2> /dev/null
+ free_inode=`df -i $EXT4_DEV | awk '{print $4}' | tr -cd "[0-9]"`
+ if [ "$free_inode" -lt "$1" ]; then
+ max_directorys=$free_inode
+ fi
+
+ tst_resm TINFO "Num of dirs to create: $max_directorys, Dir name len: $dir_name_len, " \
+ "Parent dir: $3, Block size: $4"
if [ $2 -eq $SHORT_DIR ]; then
- create_short_dirs $1 $3
+ create_short_dirs $max_directorys $3
else
- create_long_dirs $1 $3
+ create_long_dirs $max_directorys $3
fi
if [ $? -ne 0 ]; then
--
2.18.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [LTP] [PATCH v1] ext4_subdir_limit_test.sh: fix "No Space" issue
@ 2019-04-08 5:40 XiaoLi Feng
2019-04-11 21:35 ` Petr Vorel
0 siblings, 1 reply; 4+ messages in thread
From: XiaoLi Feng @ 2019-04-08 5:40 UTC (permalink / raw)
To: ltp
From: Xiaoli Feng <fengxiaoli0714@gmail.com>
1G ext4 filesystem default has 65536 inode. And some inodes
will be used after format. So it will be failed when try to
create 65536 sub-directorys in this ext4 mountpoint. Change
it to create 65536 - used inodes directorys.
---
Re-send this mail again. Because I subscripted the ltp mail list failed last
time.
Thanks.
.../ext4-subdir-limit/ext4_subdir_limit_test.sh | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh b/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh
index 5cc0523a8..05581d5c6 100755
--- a/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh
+++ b/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh
@@ -46,6 +46,8 @@ prev_result=$FAIL
ext4_run_case()
{
local dir_name_len=
+ local free_inode=
+ local max_directorys=$1
if [ $2 -eq $SHORT_DIR ]; then
dir_name_len="short name"
@@ -53,9 +55,6 @@ ext4_run_case()
dir_name_len="long name"
fi
- tst_resm TINFO "Num of dirs to create: $1, Dir name len: $dir_name_len, " \
- "Parent dir: $3, Block size: $4"
-
# only mkfs if block size has been changed,
# or previous case failed
if [ $prev_result -ne $PASS -o $4 -ne $prev_block_size ]; then
@@ -80,11 +79,18 @@ ext4_run_case()
# create directories
mkdir -p $3 2> /dev/null
+ free_inode=`df -i $EXT4_DEV | awk '{print $4}' | tr -cd "[0-9]"`
+ if [ "$free_inode" -lt "$1" ]; then
+ max_directorys=$free_inode
+ fi
+
+ tst_resm TINFO "Num of dirs to create: $max_directorys, Dir name len: $dir_name_len, " \
+ "Parent dir: $3, Block size: $4"
if [ $2 -eq $SHORT_DIR ]; then
- create_short_dirs $1 $3
+ create_short_dirs $max_directorys $3
else
- create_long_dirs $1 $3
+ create_long_dirs $max_directorys $3
fi
if [ $? -ne 0 ]; then
--
2.18.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [LTP] [PATCH v1] ext4_subdir_limit_test.sh: fix "No Space" issue
2019-04-08 5:40 [LTP] [PATCH v1] ext4_subdir_limit_test.sh: fix "No Space" issue XiaoLi Feng
@ 2019-04-11 21:35 ` Petr Vorel
2019-04-17 5:58 ` Xiaoli Feng
0 siblings, 1 reply; 4+ messages in thread
From: Petr Vorel @ 2019-04-11 21:35 UTC (permalink / raw)
To: ltp
Hi Xiaoli,
> From: Xiaoli Feng <fengxiaoli0714@gmail.com>
> 1G ext4 filesystem default has 65536 inode. And some inodes
> will be used after format. So it will be failed when try to
> create 65536 sub-directorys in this ext4 mountpoint. Change
> it to create 65536 - used inodes directorys.
> ---
> Re-send this mail again. Because I subscripted the ltp mail list failed last
> time.
We got your patch twice, even into patchwork ([1]). I disabled the first patch
in patchwork.
...
> +++ b/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh
> @@ -46,6 +46,8 @@ prev_result=$FAIL
> ext4_run_case()
> {
> local dir_name_len=
> + local free_inode=
> + local max_directorys=$1
max_directories, please (or better max_dirs) :).
> if [ $2 -eq $SHORT_DIR ]; then
> dir_name_len="short name"
> @@ -53,9 +55,6 @@ ext4_run_case()
> dir_name_len="long name"
> fi
> - tst_resm TINFO "Num of dirs to create: $1, Dir name len: $dir_name_len, " \
> - "Parent dir: $3, Block size: $4"
> -
> # only mkfs if block size has been changed,
> # or previous case failed
> if [ $prev_result -ne $PASS -o $4 -ne $prev_block_size ]; then
> @@ -80,11 +79,18 @@ ext4_run_case()
> # create directories
> mkdir -p $3 2> /dev/null
> + free_inode=`df -i $EXT4_DEV | awk '{print $4}' | tr -cd "[0-9]"`
How about using tail instead of tr?
df -i $EXT4_DEV | tail -1 | awk '{print $4}'
Maybe tail is more reliable and readable (and available [*]) than tr.
Not, sure if this is a correct usage:
# dd if=/dev/zero of=test_file bs=5000MB count=1
# /opt/ltp/runltp -f fs_ext4 -z /root/test_file
but in this case is zero Inodes:
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/vda2 0 0 0 - /
[*]: In new API it's needed to specify required commands in TST_NEEDS_CMDS
variable (i.e. TST_NEEDS_CMDS="tr"), but this is legacy API, which does not have
it.
> + if [ "$free_inode" -lt "$1" ]; then
I guess here you should use $max_directorys instead of $1
> + max_directorys=$free_inode
> + fi
> +
> + tst_resm TINFO "Num of dirs to create: $max_directorys, Dir name len: $dir_name_len, " \
> + "Parent dir: $3, Block size: $4"
> if [ $2 -eq $SHORT_DIR ]; then
> - create_short_dirs $1 $3
> + create_short_dirs $max_directorys $3
Ad $3: I hate using direct positional variables, but that's not related to the
fix. Whole ext4-new-features tests would deserve rewrite into new API and
cleanup (big work due they all depend on ext4_funcs.sh).
Kind regards,
Petr
[1] https://patchwork.ozlabs.org/patch/1080619/
^ permalink raw reply [flat|nested] 4+ messages in thread
* [LTP] [PATCH v1] ext4_subdir_limit_test.sh: fix "No Space" issue
2019-04-11 21:35 ` Petr Vorel
@ 2019-04-17 5:58 ` Xiaoli Feng
0 siblings, 0 replies; 4+ messages in thread
From: Xiaoli Feng @ 2019-04-17 5:58 UTC (permalink / raw)
To: ltp
Hi,
----- Original Message -----
> From: "Petr Vorel" <pvorel@suse.cz>
> To: "XiaoLi Feng" <xifeng@redhat.com>
> Cc: ltp@lists.linux.it, "Xiaoli Feng" <fengxiaoli0714@gmail.com>
> Sent: Friday, April 12, 2019 5:35:09 AM
> Subject: Re: [LTP] [PATCH v1] ext4_subdir_limit_test.sh: fix "No Space" issue
>
> Hi Xiaoli,
>
> > From: Xiaoli Feng <fengxiaoli0714@gmail.com>
>
> > 1G ext4 filesystem default has 65536 inode. And some inodes
> > will be used after format. So it will be failed when try to
> > create 65536 sub-directorys in this ext4 mountpoint. Change
> > it to create 65536 - used inodes directorys.
> > ---
>
> > Re-send this mail again. Because I subscripted the ltp mail list failed
> > last
> > time.
> We got your patch twice, even into patchwork ([1]). I disabled the first
> patch
> in patchwork.
>
> ...
> > +++
> > b/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/ext4_subdir_limit_test.sh
> > @@ -46,6 +46,8 @@ prev_result=$FAIL
> > ext4_run_case()
> > {
> > local dir_name_len=
> > + local free_inode=
> > + local max_directorys=$1
> max_directories, please (or better max_dirs) :).
Thanks Petr for the review. Yes, max_dirs is better.
>
> > if [ $2 -eq $SHORT_DIR ]; then
> > dir_name_len="short name"
> > @@ -53,9 +55,6 @@ ext4_run_case()
> > dir_name_len="long name"
> > fi
>
> > - tst_resm TINFO "Num of dirs to create: $1, Dir name len: $dir_name_len, "
> > \
> > - "Parent dir: $3, Block size: $4"
> > -
> > # only mkfs if block size has been changed,
> > # or previous case failed
> > if [ $prev_result -ne $PASS -o $4 -ne $prev_block_size ]; then
> > @@ -80,11 +79,18 @@ ext4_run_case()
>
> > # create directories
> > mkdir -p $3 2> /dev/null
> > + free_inode=`df -i $EXT4_DEV | awk '{print $4}' | tr -cd "[0-9]"`
> How about using tail instead of tr?
> df -i $EXT4_DEV | tail -1 | awk '{print $4}'
>
> Maybe tail is more reliable and readable (and available [*]) than tr.
Ok. "tail" is more reliable.
>
> Not, sure if this is a correct usage:
> # dd if=/dev/zero of=test_file bs=5000MB count=1
> # /opt/ltp/runltp -f fs_ext4 -z /root/test_file
> but in this case is zero Inodes:
>
> Filesystem Inodes IUsed IFree IUse% Mounted on
> /dev/vda2 0 0 0 - /
>
I can't reproduce it when I execute "/opt/ltp/runltp -f fs_ext4 -z /root/test_file".
Do you format the device /dev/vda2?
> [*]: In new API it's needed to specify required commands in TST_NEEDS_CMDS
> variable (i.e. TST_NEEDS_CMDS="tr"), but this is legacy API, which does not
> have
> it.
>
> > + if [ "$free_inode" -lt "$1" ]; then
> I guess here you should use $max_directorys instead of $1
> > + max_directorys=$free_inode
> > + fi
> > +
> > + tst_resm TINFO "Num of dirs to create: $max_directorys, Dir name len:
> > $dir_name_len, " \
> > + "Parent dir: $3, Block size: $4"
>
> > if [ $2 -eq $SHORT_DIR ]; then
> > - create_short_dirs $1 $3
> > + create_short_dirs $max_directorys $3
> Ad $3: I hate using direct positional variables, but that's not related to
> the
I also hate it. :)
> fix. Whole ext4-new-features tests would deserve rewrite into new API and
> cleanup (big work due they all depend on ext4_funcs.sh).
Yes, they would deserve rewrite. I will have a try.
>
>
> Kind regards,
> Petr
>
> [1] https://patchwork.ozlabs.org/patch/1080619/
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-04-17 5:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-08 5:40 [LTP] [PATCH v1] ext4_subdir_limit_test.sh: fix "No Space" issue XiaoLi Feng
2019-04-11 21:35 ` Petr Vorel
2019-04-17 5:58 ` Xiaoli Feng
-- strict thread matches above, loose matches on Subject: below --
2019-04-04 12:41 XiaoLi Feng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox