public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
From: Wanlong Gao <gaowanlong@cn.fujitsu.com>
To: Kang Kai <kai.kang@windriver.com>
Cc: ltp-list@lists.sourceforge.net, Zhenfeng.Zhao@windriver.com
Subject: Re: [LTP] [PATCH] aio_suspend/3-1: cancel the aio_write operations
Date: Fri, 03 Aug 2012 10:35:49 +0800	[thread overview]
Message-ID: <501B3905.1030501@cn.fujitsu.com> (raw)
In-Reply-To: <1343269349-24981-1-git-send-email-kai.kang@windriver.com>

On 07/26/2012 10:22 AM, Kang Kai wrote:
> After aio_suspend, call aio_cancel to cancel other aio_write operations
> then wait them to canceld or complete.
> 
> If don't do that, it fails with "Segmentation fault" on routerstation(mips)
> board randomly about in 1000 continuous test. The reason may be some
> aio_writes don't complete before close the file, that cause some resouse
> don't be released and finally cause segment fault.
> 
> Signed-off-by: Kang Kai <kai.kang@windriver.com>
> ---
>  .../conformance/interfaces/aio_suspend/3-1.c       |   15 +++++++++++++++
>  1 files changed, 15 insertions(+), 0 deletions(-)
> 
> diff --git a/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/3-1.c b/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/3-1.c
> index 15120e1..49d204a 100644
> --- a/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/3-1.c
> +++ b/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/3-1.c
> @@ -87,6 +87,21 @@ int main()
>  		exit(PTS_FAIL);
>  	}
>  
> +	if (aio_cancel(fd, NULL) == -1) {
> +		printf(TNAME " Error at aio_cancel(): %s\n", strerror(errno));
> +		exit(PTS_FAIL);
> +	}

Try to cancel the pending aio seems useless, how about waiting aios until completed?
Can you test like below?
	
	for (i = 0; i < NAIOCB; i++) {
		do {
			usleep(10000);
			ret = aio_error(&aiocb[i]);
		} while (ret == EINPROGRESS);
		if (ret < 0) {
			printf(TNAME " Error at aio_error() : %s\n", strerror(ret));
			exit(PTS_FAIL);
		}
	}

Thanks,
Wanlong Gao

> +
> +
> +	while (1) {
> +		for (i = 0; i < NAIOCB; ++i) {
> +			if (aio_error(&aiocb[i]) == EINPROGRESS)
> +				break;
> +		}
> +		if (i == NAIOCB)
> +			break;
> +	}
> +
>  	close(fd);
>  	printf("Test PASSED\n");
>  	return PTS_PASS;
> 


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

      parent reply	other threads:[~2012-08-03  2:37 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-26  2:22 [LTP] [PATCH] aio_suspend/3-1: cancel the aio_write operations Kang Kai
2012-08-03  1:43 ` Kang Kai
2012-08-03  2:35 ` Wanlong Gao [this message]

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=501B3905.1030501@cn.fujitsu.com \
    --to=gaowanlong@cn.fujitsu.com \
    --cc=Zhenfeng.Zhao@windriver.com \
    --cc=kai.kang@windriver.com \
    --cc=ltp-list@lists.sourceforge.net \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox