diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2012-04-15 01:58:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-15 12:44:40 -0400 |
commit | 95c961747284a6b83a5e2d81240e214b0fa3464d (patch) | |
tree | c7be86a00db3605a48a03109fafcbe31039ca2e0 /net/ceph/auth_x.h | |
parent | 5e73ea1a31c3612aa6dfe44f864ca5b7b6a4cff9 (diff) |
net: cleanup unsigned to unsigned int
Use of "unsigned int" is preferred to bare "unsigned" in net tree.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ceph/auth_x.h')
-rw-r--r-- | net/ceph/auth_x.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ceph/auth_x.h b/net/ceph/auth_x.h index e02da7a5c5a1..f459e93b774f 100644 --- a/net/ceph/auth_x.h +++ b/net/ceph/auth_x.h | |||
@@ -13,7 +13,7 @@ | |||
13 | */ | 13 | */ |
14 | struct ceph_x_ticket_handler { | 14 | struct ceph_x_ticket_handler { |
15 | struct rb_node node; | 15 | struct rb_node node; |
16 | unsigned service; | 16 | unsigned int service; |
17 | 17 | ||
18 | struct ceph_crypto_key session_key; | 18 | struct ceph_crypto_key session_key; |
19 | struct ceph_timespec validity; | 19 | struct ceph_timespec validity; |
@@ -27,7 +27,7 @@ struct ceph_x_ticket_handler { | |||
27 | 27 | ||
28 | struct ceph_x_authorizer { | 28 | struct ceph_x_authorizer { |
29 | struct ceph_buffer *buf; | 29 | struct ceph_buffer *buf; |
30 | unsigned service; | 30 | unsigned int service; |
31 | u64 nonce; | 31 | u64 nonce; |
32 | char reply_buf[128]; /* big enough for encrypted blob */ | 32 | char reply_buf[128]; /* big enough for encrypted blob */ |
33 | }; | 33 | }; |
@@ -38,7 +38,7 @@ struct ceph_x_info { | |||
38 | bool starting; | 38 | bool starting; |
39 | u64 server_challenge; | 39 | u64 server_challenge; |
40 | 40 | ||
41 | unsigned have_keys; | 41 | unsigned int have_keys; |
42 | struct rb_root ticket_handlers; | 42 | struct rb_root ticket_handlers; |
43 | 43 | ||
44 | struct ceph_x_authorizer auth_authorizer; | 44 | struct ceph_x_authorizer auth_authorizer; |