[LTP] [PATCH] syscall/fcntl33.c: fix test on FUSE fs
Cyril Hrubis
chrubis@suse.cz
Tue Apr 19 20:01:52 CEST 2016
Hi!
> Even though a child process is waiting for a parent to be in 'S'
> state before triggering SIGIO, the signal might come earlier than
> sigtimedwait() being invoked in the parent process. As a result the
> parent waited for the event that had already happened.
>
> I can only think about that the parent process may be in a sleep state
> somehow while executing open() syscall on which it might sleep while
> running it on FUSE FS:
> vfs -> fuse kernel driver -> userspace implementation.
That sounds plausible to me. Depending on the actuall FUSE filesystem it
may do basically anything.
> It can be fixed if we move open() before fork.
>
> Signed-off-by: Alexey Kodanev <alexey.kodanev@oracle.com>
> ---
> testcases/kernel/syscalls/fcntl/fcntl33.c | 11 ++++++-----
> 1 files changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/fcntl/fcntl33.c b/testcases/kernel/syscalls/fcntl/fcntl33.c
> index 2d69866..13616c6 100644
> --- a/testcases/kernel/syscalls/fcntl/fcntl33.c
> +++ b/testcases/kernel/syscalls/fcntl/fcntl33.c
> @@ -146,16 +146,17 @@ static void setup(void)
>
> static void do_test(int i)
> {
> - pid_t cpid;
> + fd = SAFE_OPEN(cleanup, "file", O_RDONLY);
> +
> + pid_t cpid = tst_fork();
>
> - cpid = tst_fork();
> if (cpid < 0)
> tst_brkm(TBROK | TERRNO, cleanup, "fork() failed");
>
> - if (cpid == 0)
> + if (cpid == 0) {
> + SAFE_CLOSE(NULL, fd);
> do_child(i);
> -
> - fd = SAFE_OPEN(cleanup, "file", O_RDONLY);
> + }
Looks good.
Another possible solution would be to use checkpoints and wait in the
child before we call tst_process_state_wait() and wake it up from parent
just before we call the fcntl(). But that would be more complicated than
this.
--
Cyril Hrubis
chrubis@suse.cz
More information about the ltp
mailing list