Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2820fd39 authored by Philipp Reisner's avatar Philipp Reisner
Browse files

drbd: Move the call to listen() out of drbd_accept()

parent c5b005ab
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -468,11 +468,6 @@ static int drbd_accept(const char **what, struct socket *sock, struct socket **n
	struct sock *sk = sock->sk;
	int err = 0;

	*what = "listen";
	err = sock->ops->listen(sock, 5);
	if (err < 0)
		goto out;

	*what = "sock_create_lite";
	err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
			       newsock);
@@ -742,6 +737,11 @@ static struct socket *drbd_wait_for_connect(struct drbd_tconn *tconn)
	if (err < 0)
		goto out;

	what = "listen";
	err = s_listen->ops->listen(s_listen, 5);
	if (err < 0)
		goto out;

	err = drbd_accept(&what, s_listen, &s_estab);

out: