diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-06-25 10:15:15 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-07-10 23:40:35 -0400 |
commit | fc432dd90760a629c57026e57f65ff80a1a31d2f (patch) | |
tree | 1df060f199effb8cfd52772e618c0bac7b8d0e9f /include/linux/sunrpc/auth.h | |
parent | 696e38df9d1b256e97b077ecde7afb8dd60364fd (diff) |
SUNRPC: Enforce atomic updates of rpc_cred->cr_flags
Convert to the use of atomic bitops...
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc/auth.h')
-rw-r--r-- | include/linux/sunrpc/auth.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/sunrpc/auth.h b/include/linux/sunrpc/auth.h index d5bfc67461fc..8586503d5ebd 100644 --- a/include/linux/sunrpc/auth.h +++ b/include/linux/sunrpc/auth.h | |||
@@ -36,19 +36,19 @@ struct rpc_cred { | |||
36 | struct hlist_node cr_hash; /* hash chain */ | 36 | struct hlist_node cr_hash; /* hash chain */ |
37 | struct rpc_auth * cr_auth; | 37 | struct rpc_auth * cr_auth; |
38 | const struct rpc_credops *cr_ops; | 38 | const struct rpc_credops *cr_ops; |
39 | unsigned long cr_expire; /* when to gc */ | ||
40 | atomic_t cr_count; /* ref count */ | ||
41 | unsigned short cr_flags; /* various flags */ | ||
42 | #ifdef RPC_DEBUG | 39 | #ifdef RPC_DEBUG |
43 | unsigned long cr_magic; /* 0x0f4aa4f0 */ | 40 | unsigned long cr_magic; /* 0x0f4aa4f0 */ |
44 | #endif | 41 | #endif |
42 | unsigned long cr_expire; /* when to gc */ | ||
43 | unsigned long cr_flags; /* various flags */ | ||
44 | atomic_t cr_count; /* ref count */ | ||
45 | 45 | ||
46 | uid_t cr_uid; | 46 | uid_t cr_uid; |
47 | 47 | ||
48 | /* per-flavor data */ | 48 | /* per-flavor data */ |
49 | }; | 49 | }; |
50 | #define RPCAUTH_CRED_NEW 0x0001 | 50 | #define RPCAUTH_CRED_NEW 0 |
51 | #define RPCAUTH_CRED_UPTODATE 0x0002 | 51 | #define RPCAUTH_CRED_UPTODATE 1 |
52 | 52 | ||
53 | #define RPCAUTH_CRED_MAGIC 0x0f4aa4f0 | 53 | #define RPCAUTH_CRED_MAGIC 0x0f4aa4f0 |
54 | 54 | ||