Skip to content

Commit

Permalink
X25: Move interrupt flag to bitfield
Browse files Browse the repository at this point in the history
Moves the x25 interrupt flag from char into bitfield.

Signed-off-by: Andrew Hendry <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
AndrewHendry authored and davem330 committed May 18, 2010
1 parent cb863ff commit b7792e3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion include/net/x25.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ enum {

/* Bitset in x25_sock->flags for misc flags */
#define X25_Q_BIT_FLAG 0
#define X25_INTERRUPT_FLAG 1

/**
* struct x25_route - x25 routing entry
Expand Down Expand Up @@ -149,7 +150,7 @@ struct x25_sock {
struct x25_address source_addr, dest_addr;
struct x25_neigh *neighbour;
unsigned int lci, cudmatchlength;
unsigned char state, condition, intflag, accptapprv;
unsigned char state, condition, accptapprv;
unsigned short vs, vr, va, vl;
unsigned long t2, t21, t22, t23;
unsigned short fraglen;
Expand Down
1 change: 1 addition & 0 deletions net/x25/af_x25.c
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,7 @@ static struct sock *x25_make_new(struct sock *osk)
x25->cudmatchlength = ox25->cudmatchlength;
x25->accptapprv = ox25->accptapprv;

clear_bit(X25_INTERRUPT_FLAG, &x25->flags);
x25_init_timers(sk);
out:
return sk;
Expand Down
2 changes: 1 addition & 1 deletion net/x25/x25_in.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ static int x25_state3_machine(struct sock *sk, struct sk_buff *skb, int frametyp
break;

case X25_INTERRUPT_CONFIRMATION:
x25->intflag = 0;
clear_bit(X25_INTERRUPT_FLAG, &x25->flags);
break;

case X25_INTERRUPT:
Expand Down
5 changes: 3 additions & 2 deletions net/x25/x25_out.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,9 @@ void x25_kick(struct sock *sk)
/*
* Transmit interrupt data.
*/
if (!x25->intflag && skb_peek(&x25->interrupt_out_queue) != NULL) {
x25->intflag = 1;
if (skb_peek(&x25->interrupt_out_queue) != NULL &&
!test_and_set_bit(X25_INTERRUPT_FLAG, &x25->flags)) {

skb = skb_dequeue(&x25->interrupt_out_queue);
x25_transmit_link(skb, x25->neighbour);
}
Expand Down

0 comments on commit b7792e3

Please sign in to comment.