Re: [PATCH 7/7] aio: use iovec array rather than the single one

2014-08-15 Thread Benjamin LaHaise
On Fri, Aug 15, 2014 at 06:35:25PM -0600, Linus Torvalds wrote: > Ben, > > *please* stop doing this kind of crap. > > You're creating fake emails with invalid senders. That's simply not > acceptable. ... I'll admit this was my mistake and I should have caught it while reviewing the emails. At

Re: [PATCH 7/7] aio: use iovec array rather than the single one

2014-08-15 Thread Linus Torvalds
Ben, *please* stop doing this kind of crap. You're creating fake emails with invalid senders. That's simply not acceptable. The way to specify the author of a commit is *not* to fake the email sender information, it's to have From: Real A U Thor at the top of the message body. NOT by sendi

[PATCH 7/7] aio: use iovec array rather than the single one

2014-08-15 Thread Gu Zheng
Previously, we only offer a single iovec to handle all the read/write cases, so the PREADV/PWRITEV request always need to alloc more iovec buffer when copying user vectors. If we use a tmp iovec array rather than the single one, some small PREADV/PWRITEV workloads(vector size small than the tmp bu