Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78789
b: refs/heads/master
c: 6bf1574
h: refs/heads/master
i:
  78787: e5cc69e
v: v3
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Jan 28, 2008
1 parent 5d9af83 commit a8319c6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 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: 4dde4610c4ab54e9d36a4afaa98c23b017f7f9e3
refs/heads/master: 6bf1574ee33270e7c0b9d43103e8cedffd9f74db
4 changes: 2 additions & 2 deletions trunk/net/x25/af_x25.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ struct compat_x25_subscrip_struct {
int x25_addr_ntoa(unsigned char *p, struct x25_address *called_addr,
struct x25_address *calling_addr)
{
int called_len, calling_len;
unsigned int called_len, calling_len;
char *called, *calling;
int i;
unsigned int i;

called_len = (*p >> 0) & 0x0F;
calling_len = (*p >> 4) & 0x0F;
Expand Down
4 changes: 1 addition & 3 deletions trunk/net/x25/x25_facilities.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,7 @@ int x25_create_facilities(unsigned char *buffer,
}

if (dte_facs->calling_len && (facil_mask & X25_MASK_CALLING_AE)) {
unsigned bytecount = (dte_facs->calling_len % 2) ?
dte_facs->calling_len / 2 + 1 :
dte_facs->calling_len / 2;
unsigned bytecount = (dte_facs->calling_len + 1) >> 1;
*p++ = X25_FAC_CALLING_AE;
*p++ = 1 + bytecount;
*p++ = dte_facs->calling_len;
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/x25/x25_in.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ static int x25_state3_machine(struct sock *sk, struct sk_buff *skb, int frametyp
break;
}
if (atomic_read(&sk->sk_rmem_alloc) >
(sk->sk_rcvbuf / 2))
(sk->sk_rcvbuf >> 1))
x25->condition |= X25_COND_OWN_RX_BUSY;
}
/*
Expand Down
6 changes: 6 additions & 0 deletions trunk/net/x25/x25_proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ static __inline__ struct x25_route *x25_get_route_idx(loff_t pos)
}

static void *x25_seq_route_start(struct seq_file *seq, loff_t *pos)
__acquires(x25_route_list_lock)
{
loff_t l = *pos;

Expand Down Expand Up @@ -70,6 +71,7 @@ static void *x25_seq_route_next(struct seq_file *seq, void *v, loff_t *pos)
}

static void x25_seq_route_stop(struct seq_file *seq, void *v)
__releases(x25_route_list_lock)
{
read_unlock_bh(&x25_route_list_lock);
}
Expand Down Expand Up @@ -105,6 +107,7 @@ static __inline__ struct sock *x25_get_socket_idx(loff_t pos)
}

static void *x25_seq_socket_start(struct seq_file *seq, loff_t *pos)
__acquires(x25_list_lock)
{
loff_t l = *pos;

Expand All @@ -127,6 +130,7 @@ static void *x25_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos)
}

static void x25_seq_socket_stop(struct seq_file *seq, void *v)
__releases(x25_list_lock)
{
read_unlock_bh(&x25_list_lock);
}
Expand Down Expand Up @@ -183,6 +187,7 @@ static __inline__ struct x25_forward *x25_get_forward_idx(loff_t pos)
}

static void *x25_seq_forward_start(struct seq_file *seq, loff_t *pos)
__acquires(x25_forward_list_lock)
{
loff_t l = *pos;

Expand Down Expand Up @@ -213,6 +218,7 @@ static void *x25_seq_forward_next(struct seq_file *seq, void *v, loff_t *pos)
}

static void x25_seq_forward_stop(struct seq_file *seq, void *v)
__releases(x25_forward_list_lock)
{
read_unlock_bh(&x25_forward_list_lock);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/x25/x25_subr.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ void x25_check_rbuf(struct sock *sk)
{
struct x25_sock *x25 = x25_sk(sk);

if (atomic_read(&sk->sk_rmem_alloc) < (sk->sk_rcvbuf / 2) &&
if (atomic_read(&sk->sk_rmem_alloc) < (sk->sk_rcvbuf >> 1) &&
(x25->condition & X25_COND_OWN_RX_BUSY)) {
x25->condition &= ~X25_COND_OWN_RX_BUSY;
x25->condition &= ~X25_COND_ACK_PENDING;
Expand Down

0 comments on commit a8319c6

Please sign in to comment.