Re: [PATCH] aio: add timeout validity check for io_[p]getevents

2019-07-29 Thread zhangyi (F)
On 2019/7/29 23:59, Jeff Moyer Wrote: > Al Viro writes: > >> On Mon, Jul 29, 2019 at 10:57:41AM -0400, Jeff Moyer wrote: >>> Al, can you take this through your tree? >> >> Umm... Can do, but I had an impression that Arnd and Deepa >> had a tree for timespec-related work. OTOH, it had been >>

Re: [PATCH] aio: add timeout validity check for io_[p]getevents

2019-07-29 Thread Jeff Moyer
Al Viro writes: > On Mon, Jul 29, 2019 at 10:57:41AM -0400, Jeff Moyer wrote: >> Al, can you take this through your tree? > > Umm... Can do, but I had an impression that Arnd and Deepa > had a tree for timespec-related work. OTOH, it had been > relatively quiet last cycle, so... If they have

Re: [PATCH] aio: add timeout validity check for io_[p]getevents

2019-07-29 Thread Al Viro
On Mon, Jul 29, 2019 at 10:57:41AM -0400, Jeff Moyer wrote: > Al, can you take this through your tree? Umm... Can do, but I had an impression that Arnd and Deepa had a tree for timespec-related work. OTOH, it had been relatively quiet last cycle, so... If they have nothing in the area, I can

Re: [PATCH] aio: add timeout validity check for io_[p]getevents

2019-07-29 Thread Jeff Moyer
Al, can you take this through your tree? Thanks, Jeff Jeff Moyer writes: > "zhangyi (F)" writes: > >> io_[p]getevents syscall should return -EINVAL if if timeout is out of >> range, add this validity check. >> >> Signed-off-by: zhangyi (F) >> --- >> fs/aio.c | 11 +-- >> 1 file

Re: [PATCH] aio: add timeout validity check for io_[p]getevents

2019-07-25 Thread Jeff Moyer
"zhangyi (F)" writes: > io_[p]getevents syscall should return -EINVAL if if timeout is out of > range, add this validity check. > > Signed-off-by: zhangyi (F) > --- > fs/aio.c | 11 +-- > 1 file changed, 9 insertions(+), 2 deletions(-) > > diff --git a/fs/aio.c b/fs/aio.c > index

[PATCH] aio: add timeout validity check for io_[p]getevents

2019-07-25 Thread zhangyi (F)
io_[p]getevents syscall should return -EINVAL if if timeout is out of range, add this validity check. Signed-off-by: zhangyi (F) --- fs/aio.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/fs/aio.c b/fs/aio.c index 01e0fb9..dd967a0 100644 --- a/fs/aio.c +++