commit | e9ffa5c2b77edf2689f876b640318b16fc3ea2a7 | [log] [tgz] |
---|---|---|
author | Jackie Liu <liuyun01@kylinos.cn> | Tue Oct 29 11:16:42 2019 +0800 |
committer | Jens Axboe <axboe@kernel.dk> | Fri Nov 01 08:36:36 2019 -0600 |
tree | 0c09ee2658611352f73990090afcc6ef8528b92b | |
parent | 62755e35dfb2b113c52b81cd96d01c20971c8e02 [diff] |
io_uring: set -EINTR directly when a signal wakes up in io_cqring_wait We didn't use -ERESTARTSYS to tell the application layer to restart the system call, but instead return -EINTR. we can set -EINTR directly when wakeup by the signal, which can help us save an assignment operation and comparison operation. Reviewed-by: Bob Liu <bob.liu@oracle.com> Signed-off-by: Jackie Liu <liuyun01@kylinos.cn> Signed-off-by: Jens Axboe <axboe@kernel.dk>