Commit fdd0f98f authored by Linus Torvalds's avatar Linus Torvalds

Make sk_flags unsigned long, since we do bit operations on it

parent 1c4eba7f
...@@ -22,7 +22,7 @@ struct svc_sock { ...@@ -22,7 +22,7 @@ struct svc_sock {
struct svc_serv * sk_server; /* service for this socket */ struct svc_serv * sk_server; /* service for this socket */
unsigned char sk_inuse; /* use count */ unsigned char sk_inuse; /* use count */
unsigned int sk_flags; unsigned long sk_flags;
#define SK_BUSY 0 /* enqueued/receiving */ #define SK_BUSY 0 /* enqueued/receiving */
#define SK_CONN 1 /* conn pending */ #define SK_CONN 1 /* conn pending */
#define SK_CLOSE 2 /* dead or dying */ #define SK_CLOSE 2 /* dead or dying */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment