mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
fs: dlm: retry accept() until -EAGAIN or error returns
commitf0f4bb431b
upstream. This patch fixes a race if we get two times an socket data ready event while the listen connection worker is queued. Currently it will be served only once but we need to do it (in this case twice) until we hit -EAGAIN which tells us there is no pending accept going on. This patch wraps an do while loop until we receive a return value which is different than 0 as it was done before commitd11ccd451b
("fs: dlm: listen socket out of connection hash"). Cc: stable@vger.kernel.org Fixes:d11ccd451b
("fs: dlm: listen socket out of connection hash") Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5b4478615f
commit
b2120ed7fd
@ -1520,7 +1520,11 @@ static void process_recv_sockets(struct work_struct *work)
|
||||
|
||||
static void process_listen_recv_socket(struct work_struct *work)
|
||||
{
|
||||
accept_from_sock(&listen_con);
|
||||
int ret;
|
||||
|
||||
do {
|
||||
ret = accept_from_sock(&listen_con);
|
||||
} while (!ret);
|
||||
}
|
||||
|
||||
static void dlm_connect(struct connection *con)
|
||||
|
Loading…
Reference in New Issue
Block a user