* [PATCH] ltp/fsstress: check mkdir(2) return value
@ 2017-10-14 7:07 Xiong Zhou
2017-10-22 11:26 ` Eryu Guan
0 siblings, 1 reply; 3+ messages in thread
From: Xiong Zhou @ 2017-10-14 7:07 UTC (permalink / raw)
To: fstests; +Cc: Xiong Zhou
If mkdir(2) fails, the following chdir(2) would fail either.
Although dirname and error message are printed, we don't know
which operation has failed.
Like this:
+/test2/fsstress.1582: No such file or directory
This trivial fix will check the return value and print detail
error info if fail.
Signed-off-by: Xiong Zhou <xzhou@redhat.com>
---
ltp/fsstress.c | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/ltp/fsstress.c b/ltp/fsstress.c
index 96f48b1..1962d14 100644
--- a/ltp/fsstress.c
+++ b/ltp/fsstress.c
@@ -493,7 +493,11 @@ int main(int argc, char **argv)
exit(1);
}
- (void)mkdir(dirname, 0777);
+ if (mkdir((const char *)dirname, 0777) < 0) {
+ fprintf(stderr, "mkdir %s failed: %s\n", dirname,
+ strerror(errno));
+ exit(1);
+ }
if (logname && logname[0] != '/') {
if (getcwd(rpath, sizeof(rpath)) < 0){
perror("getcwd failed");
@@ -503,7 +507,8 @@ int main(int argc, char **argv)
rpath[0] = '\0';
}
if (chdir(dirname) < 0) {
- perror(dirname);
+ fprintf(stderr, "chdir %s failed: %s\n", dirname,
+ strerror(errno));
exit(1);
}
if (logname) {
@@ -959,7 +964,11 @@ doproc(void)
dividend = (operations + execute_freq) / (execute_freq + 1);
sprintf(buf, "p%x", procid);
- (void)mkdir(buf, 0777);
+ if (mkdir((const char *)buf, 0777) < 0) {
+ fprintf(stderr, "mkdir %s failed: %s\n", buf,
+ strerror(errno));
+ exit(1);
+ }
if (chdir(buf) < 0 || stat64(".", &statbuf) < 0) {
perror(buf);
_exit(1);
--
1.8.3.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ltp/fsstress: check mkdir(2) return value
2017-10-14 7:07 [PATCH] ltp/fsstress: check mkdir(2) return value Xiong Zhou
@ 2017-10-22 11:26 ` Eryu Guan
2017-10-24 3:23 ` Xiong Zhou
0 siblings, 1 reply; 3+ messages in thread
From: Eryu Guan @ 2017-10-22 11:26 UTC (permalink / raw)
To: Xiong Zhou; +Cc: fstests
On Sat, Oct 14, 2017 at 03:07:17PM +0800, Xiong Zhou wrote:
> If mkdir(2) fails, the following chdir(2) would fail either.
> Although dirname and error message are printed, we don't know
> which operation has failed.
>
> Like this:
> +/test2/fsstress.1582: No such file or directory
>
> This trivial fix will check the return value and print detail
> error info if fail.
>
> Signed-off-by: Xiong Zhou <xzhou@redhat.com>
> ---
> ltp/fsstress.c | 15 ++++++++++++---
> 1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/ltp/fsstress.c b/ltp/fsstress.c
> index 96f48b1..1962d14 100644
> --- a/ltp/fsstress.c
> +++ b/ltp/fsstress.c
> @@ -493,7 +493,11 @@ int main(int argc, char **argv)
> exit(1);
> }
>
> - (void)mkdir(dirname, 0777);
> + if (mkdir((const char *)dirname, 0777) < 0) {
> + fprintf(stderr, "mkdir %s failed: %s\n", dirname,
> + strerror(errno));
> + exit(1);
> + }
This changed current fsstress behavior and made some tests fail, e.g.
generic/013, because fsstress exited with EEXIST if there was a
pre-created test dir. e.g.
mkdir /mnt/test/fsstress
./ltp/fsstress -d /mnt/test/fsstress -n 10 -p 10 -v
mkdir /mnt/test/fsstress failed: File exists
> if (logname && logname[0] != '/') {
> if (getcwd(rpath, sizeof(rpath)) < 0){
> perror("getcwd failed");
> @@ -503,7 +507,8 @@ int main(int argc, char **argv)
> rpath[0] = '\0';
> }
> if (chdir(dirname) < 0) {
> - perror(dirname);
> + fprintf(stderr, "chdir %s failed: %s\n", dirname,
> + strerror(errno));
> exit(1);
> }
> if (logname) {
> @@ -959,7 +964,11 @@ doproc(void)
>
> dividend = (operations + execute_freq) / (execute_freq + 1);
> sprintf(buf, "p%x", procid);
> - (void)mkdir(buf, 0777);
> + if (mkdir((const char *)buf, 0777) < 0) {
> + fprintf(stderr, "mkdir %s failed: %s\n", buf,
> + strerror(errno));
> + exit(1);
> + }
Same here.
Thanks,
Eryu
> if (chdir(buf) < 0 || stat64(".", &statbuf) < 0) {
> perror(buf);
> _exit(1);
> --
> 1.8.3.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ltp/fsstress: check mkdir(2) return value
2017-10-22 11:26 ` Eryu Guan
@ 2017-10-24 3:23 ` Xiong Zhou
0 siblings, 0 replies; 3+ messages in thread
From: Xiong Zhou @ 2017-10-24 3:23 UTC (permalink / raw)
To: Eryu Guan; +Cc: Xiong Zhou, fstests
On Sun, Oct 22, 2017 at 07:26:06PM +0800, Eryu Guan wrote:
> On Sat, Oct 14, 2017 at 03:07:17PM +0800, Xiong Zhou wrote:
> > If mkdir(2) fails, the following chdir(2) would fail either.
> > Although dirname and error message are printed, we don't know
> > which operation has failed.
> >
> > Like this:
> > +/test2/fsstress.1582: No such file or directory
> >
> > This trivial fix will check the return value and print detail
> > error info if fail.
> >
> > Signed-off-by: Xiong Zhou <xzhou@redhat.com>
> > ---
> > ltp/fsstress.c | 15 ++++++++++++---
> > 1 file changed, 12 insertions(+), 3 deletions(-)
> >
> > diff --git a/ltp/fsstress.c b/ltp/fsstress.c
> > index 96f48b1..1962d14 100644
> > --- a/ltp/fsstress.c
> > +++ b/ltp/fsstress.c
> > @@ -493,7 +493,11 @@ int main(int argc, char **argv)
> > exit(1);
> > }
> >
> > - (void)mkdir(dirname, 0777);
> > + if (mkdir((const char *)dirname, 0777) < 0) {
> > + fprintf(stderr, "mkdir %s failed: %s\n", dirname,
> > + strerror(errno));
> > + exit(1);
> > + }
>
> This changed current fsstress behavior and made some tests fail, e.g.
> generic/013, because fsstress exited with EEXIST if there was a
> pre-created test dir. e.g.
>
> mkdir /mnt/test/fsstress
> ./ltp/fsstress -d /mnt/test/fsstress -n 10 -p 10 -v
> mkdir /mnt/test/fsstress failed: File exists
hmm.. Please forget this thread.
Thanks,
Xiong
>
> > if (logname && logname[0] != '/') {
> > if (getcwd(rpath, sizeof(rpath)) < 0){
> > perror("getcwd failed");
> > @@ -503,7 +507,8 @@ int main(int argc, char **argv)
> > rpath[0] = '\0';
> > }
> > if (chdir(dirname) < 0) {
> > - perror(dirname);
> > + fprintf(stderr, "chdir %s failed: %s\n", dirname,
> > + strerror(errno));
> > exit(1);
> > }
> > if (logname) {
> > @@ -959,7 +964,11 @@ doproc(void)
> >
> > dividend = (operations + execute_freq) / (execute_freq + 1);
> > sprintf(buf, "p%x", procid);
> > - (void)mkdir(buf, 0777);
> > + if (mkdir((const char *)buf, 0777) < 0) {
> > + fprintf(stderr, "mkdir %s failed: %s\n", buf,
> > + strerror(errno));
> > + exit(1);
> > + }
>
> Same here.
>
> Thanks,
> Eryu
>
> > if (chdir(buf) < 0 || stat64(".", &statbuf) < 0) {
> > perror(buf);
> > _exit(1);
> > --
> > 1.8.3.1
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe fstests" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-10-24 3:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-14 7:07 [PATCH] ltp/fsstress: check mkdir(2) return value Xiong Zhou
2017-10-22 11:26 ` Eryu Guan
2017-10-24 3:23 ` Xiong Zhou
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox