Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9341
b: refs/heads/master
c: afdbe35
h: refs/heads/master
i:
  9339: ba9f786
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo committed Sep 22, 2005
1 parent f5d6b51 commit bb1d97f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 249ff1c6d35fd32ca945967c3f0b948210a96baa
refs/heads/master: afdbe35787ea3390af0f1dd38b3dd9d8a8d313e7
42 changes: 23 additions & 19 deletions trunk/net/llc/af_llc.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ static struct proto_ops llc_ui_ops;

static int llc_ui_wait_for_conn(struct sock *sk, long timeout);
static int llc_ui_wait_for_disc(struct sock *sk, long timeout);
static int llc_ui_wait_for_data(struct sock *sk, long timeout);
static int llc_ui_wait_for_busy_core(struct sock *sk, long timeout);

#if 0
Expand Down Expand Up @@ -524,51 +523,56 @@ static int llc_ui_wait_for_conn(struct sock *sk, long timeout)
return timeout;
}

static int llc_ui_wait_for_data(struct sock *sk, long timeout)
static int llc_ui_wait_for_busy_core(struct sock *sk, long timeout)
{
DEFINE_WAIT(wait);
int rc = 0;
struct llc_sock *llc = llc_sk(sk);
int rc;

while (1) {
prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
rc = 0;
if (sk_wait_event(sk, &timeout,
(sk->sk_shutdown & RCV_SHUTDOWN) ||
(!skb_queue_empty(&sk->sk_receive_queue))))
(!llc_data_accept_state(llc->state) &&
!llc->p_flag)))
break;
rc = -ERESTARTSYS;
if (signal_pending(current))
break;
rc = -EAGAIN;
if (!timeout)
break;
rc = 0;
}
finish_wait(sk->sk_sleep, &wait);
return rc;
}

static int llc_ui_wait_for_busy_core(struct sock *sk, long timeout)
int llc_wait_data(struct sock *sk, long timeo)
{
DEFINE_WAIT(wait);
struct llc_sock *llc = llc_sk(sk);
int rc;

while (1) {
prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
/*
* POSIX 1003.1g mandates this order.
*/
if (sk->sk_err) {
rc = sock_error(sk);
break;
}
rc = 0;
if (sk_wait_event(sk, &timeout,
(sk->sk_shutdown & RCV_SHUTDOWN) ||
(!llc_data_accept_state(llc->state) &&
!llc->p_flag)))
if (sk->sk_shutdown & RCV_SHUTDOWN)
break;
rc = -ERESTARTSYS;
rc = -EAGAIN;
if (!timeo)
break;
rc = sock_intr_errno(timeo);
if (signal_pending(current))
break;
rc = -EAGAIN;
if (!timeout)
rc = 0;
if (sk_wait_data(sk, &timeo))
break;
}
finish_wait(sk->sk_sleep, &wait);
return rc;
}

Expand Down Expand Up @@ -599,7 +603,7 @@ static int llc_ui_accept(struct socket *sock, struct socket *newsock, int flags)
goto out;
/* wait for a connection to arrive. */
if (skb_queue_empty(&sk->sk_receive_queue)) {
rc = llc_ui_wait_for_data(sk, sk->sk_rcvtimeo);
rc = llc_wait_data(sk, sk->sk_rcvtimeo);
if (rc)
goto out;
}
Expand Down Expand Up @@ -658,7 +662,7 @@ static int llc_ui_recvmsg(struct kiocb *iocb, struct socket *sock,
llc_sk(sk)->laddr.lsap, llc_sk(sk)->daddr.lsap);
lock_sock(sk);
if (skb_queue_empty(&sk->sk_receive_queue)) {
rc = llc_ui_wait_for_data(sk, sock_rcvtimeo(sk, noblock));
rc = llc_wait_data(sk, sock_rcvtimeo(sk, noblock));
if (rc)
goto out;
}
Expand Down

0 comments on commit bb1d97f

Please sign in to comment.