diff options
author | andrew hendry <andrew.hendry@gmail.com> | 2010-05-17 03:00:02 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-18 04:39:27 +0400 |
commit | b7792e34cba641c49cd436d42fbfd2a632ff39d3 (patch) | |
tree | f880770915e06678b287f1c6c7d16702677c6aef /include/net/x25.h | |
parent | cb863ffd4a04f9f8619f52c01d472a64ccc716bd (diff) | |
download | linux-b7792e34cba641c49cd436d42fbfd2a632ff39d3.tar.xz |
X25: Move interrupt flag to bitfield
Moves the x25 interrupt flag from char into bitfield.
Signed-off-by: Andrew Hendry <andrew.hendry@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/x25.h')
-rw-r--r-- | include/net/x25.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/x25.h b/include/net/x25.h index 7b5795e1ceb2..1576e92c6cec 100644 --- a/include/net/x25.h +++ b/include/net/x25.h @@ -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 @@ -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; |