public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
From: Jan Stancek <jstancek@redhat.com>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH 1/2] syscalls: new test writev07
Date: Wed, 5 Oct 2016 12:21:03 -0400 (EDT)	[thread overview]
Message-ID: <1642663993.652860.1475684463479.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20161005152331.GC23476@rei.lan>





----- Original Message -----
> From: "Cyril Hrubis" <chrubis@suse.cz>
> To: "Jan Stancek" <jstancek@redhat.com>
> Cc: ltp@lists.linux.it
> Sent: Wednesday, 5 October, 2016 5:23:31 PM
> Subject: Re: [LTP] [PATCH 1/2] syscalls: new test writev07
> 
> Hi!
> > +#define TESTFILE "testfile"
> > +#define CHUNK 64
> > +#define BUFSIZE (CHUNK * 8)
> > +
> > +static void *bad_addr;
> > +
> > +static void dump_buf(unsigned char *buf, int len)
> > +{
> > +	int i;
> > +
> > +	for (i = 0; i < len; i++) {
> > +		printf("0x%02x ", *(buf + i));
> > +		if (i % 16 == 15)
> > +			printf("\n");
> > +	}
> > +	printf("\n");
> > +}
> 
> Hmm, we have tst_resm_hexd() in the old library exactly for this purpose
> but it's not exported to the new library at this point. We should fix
> that and make use of it here.
> 
> > +static void test_partially_valid_iovec(int initial_file_offset)
> > +{
> > +	int i, fd;
> > +	unsigned char buffer[BUFSIZE], fpattern[BUFSIZE], tmp[BUFSIZE];
> > +	long off_after;
> > +	struct iovec wr_iovec[] = {
> > +		{ buffer + CHUNK, CHUNK * 2 },
> > +		{ bad_addr, CHUNK },
> > +		{ buffer + CHUNK * 3, CHUNK },
> > +		{ buffer + CHUNK * 2, CHUNK * 2 },
> > +	};
> 
> Hmm, I fail to see the logic after the buffer and CHUNK here. Why don't
> we start from the start of the buffer for the first iovec record?

We can, I picked random offset and lengths.

> 
> Why is the BUFSIZE defined as CHUNK * 8 while the only CHUNK * 4 could
> be reached here?

BUFSIZE should also be large enough to accomodate all writes combined,
so in worst case (if bad_addr somehow worked) you need CHUNK * 6.
I picked 8 to have some reserve. I can rework it just to CHUNK * 4 size.

Regards,
Jan



  reply	other threads:[~2016-10-05 16:21 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-05 12:36 [LTP] [PATCH 1/2] syscalls: new test writev07 Jan Stancek
2016-10-05 12:36 ` [LTP] [PATCH 2/2] writev: remove old tests for partially invalid iovec Jan Stancek
2016-10-05 15:38   ` Cyril Hrubis
2016-10-05 15:23 ` [LTP] [PATCH 1/2] syscalls: new test writev07 Cyril Hrubis
2016-10-05 16:21   ` Jan Stancek [this message]
2016-10-06  7:16     ` Cyril Hrubis

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=1642663993.652860.1475684463479.JavaMail.zimbra@redhat.com \
    --to=jstancek@redhat.com \
    --cc=ltp@lists.linux.it \
    /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