diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2002-03-15 01:44:42 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-03-15 01:44:42 -0800 |
| commit | fdd0f98f174f28387441f43a198396895369558f (patch) | |
| tree | 82996a3933ea1f983e56667119362ea78b57a603 /include/linux | |
| parent | 1c4eba7fa3a31d389c0e3ea121b6e152e28fe44e (diff) | |
Make sk_flags unsigned long, since we do bit operations on it
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/sunrpc/svcsock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sunrpc/svcsock.h b/include/linux/sunrpc/svcsock.h index 95f52982b49e..eb118134b0c0 100644 --- a/include/linux/sunrpc/svcsock.h +++ b/include/linux/sunrpc/svcsock.h @@ -22,7 +22,7 @@ struct svc_sock { struct svc_serv * sk_server; /* service for this socket */ unsigned char sk_inuse; /* use count */ - unsigned int sk_flags; + unsigned long sk_flags; #define SK_BUSY 0 /* enqueued/receiving */ #define SK_CONN 1 /* conn pending */ #define SK_CLOSE 2 /* dead or dying */ |
