diff options
-rw-r--r-- | include/keys/rxrpc-type.h | 20 | ||||
-rw-r--r-- | net/rxrpc/ar-ack.c | 6 | ||||
-rw-r--r-- | net/rxrpc/ar-internal.h | 16 | ||||
-rw-r--r-- | net/rxrpc/ar-key.c | 2 |
4 files changed, 22 insertions, 22 deletions
diff --git a/include/keys/rxrpc-type.h b/include/keys/rxrpc-type.h index 5eb23571b425..5cb86c307f5d 100644 --- a/include/keys/rxrpc-type.h +++ b/include/keys/rxrpc-type.h | |||
@@ -53,8 +53,8 @@ struct krb5_tagged_data { | |||
53 | * - KRB5_AUTHDATA_* for auth data | 53 | * - KRB5_AUTHDATA_* for auth data |
54 | * - | 54 | * - |
55 | */ | 55 | */ |
56 | int32_t tag; | 56 | s32 tag; |
57 | uint32_t data_len; | 57 | u32 data_len; |
58 | u8 *data; | 58 | u8 *data; |
59 | }; | 59 | }; |
60 | 60 | ||
@@ -62,17 +62,17 @@ struct krb5_tagged_data { | |||
62 | * RxRPC key for Kerberos V (type-5 security) | 62 | * RxRPC key for Kerberos V (type-5 security) |
63 | */ | 63 | */ |
64 | struct rxk5_key { | 64 | struct rxk5_key { |
65 | uint64_t authtime; /* time at which auth token generated */ | 65 | u64 authtime; /* time at which auth token generated */ |
66 | uint64_t starttime; /* time at which auth token starts */ | 66 | u64 starttime; /* time at which auth token starts */ |
67 | uint64_t endtime; /* time at which auth token expired */ | 67 | u64 endtime; /* time at which auth token expired */ |
68 | uint64_t renew_till; /* time to which auth token can be renewed */ | 68 | u64 renew_till; /* time to which auth token can be renewed */ |
69 | int32_t is_skey; /* T if ticket is encrypted in another ticket's | 69 | s32 is_skey; /* T if ticket is encrypted in another ticket's |
70 | * skey */ | 70 | * skey */ |
71 | int32_t flags; /* mask of TKT_FLG_* bits (krb5/krb5.h) */ | 71 | s32 flags; /* mask of TKT_FLG_* bits (krb5/krb5.h) */ |
72 | struct krb5_principal client; /* client principal name */ | 72 | struct krb5_principal client; /* client principal name */ |
73 | struct krb5_principal server; /* server principal name */ | 73 | struct krb5_principal server; /* server principal name */ |
74 | uint16_t ticket_len; /* length of ticket */ | 74 | u16 ticket_len; /* length of ticket */ |
75 | uint16_t ticket2_len; /* length of second ticket */ | 75 | u16 ticket2_len; /* length of second ticket */ |
76 | u8 n_authdata; /* number of authorisation data elements */ | 76 | u8 n_authdata; /* number of authorisation data elements */ |
77 | u8 n_addresses; /* number of addresses */ | 77 | u8 n_addresses; /* number of addresses */ |
78 | struct krb5_tagged_data session; /* session data; tag is enctype */ | 78 | struct krb5_tagged_data session; /* session data; tag is enctype */ |
diff --git a/net/rxrpc/ar-ack.c b/net/rxrpc/ar-ack.c index c9f1f0a3a2ff..b4a220977031 100644 --- a/net/rxrpc/ar-ack.c +++ b/net/rxrpc/ar-ack.c | |||
@@ -40,7 +40,7 @@ static const s8 rxrpc_ack_priority[] = { | |||
40 | /* | 40 | /* |
41 | * propose an ACK be sent | 41 | * propose an ACK be sent |
42 | */ | 42 | */ |
43 | void __rxrpc_propose_ACK(struct rxrpc_call *call, uint8_t ack_reason, | 43 | void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason, |
44 | __be32 serial, bool immediate) | 44 | __be32 serial, bool immediate) |
45 | { | 45 | { |
46 | unsigned long expiry; | 46 | unsigned long expiry; |
@@ -120,7 +120,7 @@ cancel_timer: | |||
120 | /* | 120 | /* |
121 | * propose an ACK be sent, locking the call structure | 121 | * propose an ACK be sent, locking the call structure |
122 | */ | 122 | */ |
123 | void rxrpc_propose_ACK(struct rxrpc_call *call, uint8_t ack_reason, | 123 | void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason, |
124 | __be32 serial, bool immediate) | 124 | __be32 serial, bool immediate) |
125 | { | 125 | { |
126 | s8 prior = rxrpc_ack_priority[ack_reason]; | 126 | s8 prior = rxrpc_ack_priority[ack_reason]; |
@@ -520,7 +520,7 @@ static void rxrpc_zap_tx_window(struct rxrpc_call *call) | |||
520 | struct rxrpc_skb_priv *sp; | 520 | struct rxrpc_skb_priv *sp; |
521 | struct sk_buff *skb; | 521 | struct sk_buff *skb; |
522 | unsigned long _skb, *acks_window; | 522 | unsigned long _skb, *acks_window; |
523 | uint8_t winsz = call->acks_winsz; | 523 | u8 winsz = call->acks_winsz; |
524 | int tail; | 524 | int tail; |
525 | 525 | ||
526 | acks_window = call->acks_window; | 526 | acks_window = call->acks_window; |
diff --git a/net/rxrpc/ar-internal.h b/net/rxrpc/ar-internal.h index 46c6d8888493..7043b294bb67 100644 --- a/net/rxrpc/ar-internal.h +++ b/net/rxrpc/ar-internal.h | |||
@@ -229,7 +229,7 @@ struct rxrpc_conn_bundle { | |||
229 | int debug_id; /* debug ID for printks */ | 229 | int debug_id; /* debug ID for printks */ |
230 | unsigned short num_conns; /* number of connections in this bundle */ | 230 | unsigned short num_conns; /* number of connections in this bundle */ |
231 | __be16 service_id; /* service ID */ | 231 | __be16 service_id; /* service ID */ |
232 | uint8_t security_ix; /* security type */ | 232 | u8 security_ix; /* security type */ |
233 | }; | 233 | }; |
234 | 234 | ||
235 | /* | 235 | /* |
@@ -370,10 +370,10 @@ struct rxrpc_call { | |||
370 | u8 channel; /* connection channel occupied by this call */ | 370 | u8 channel; /* connection channel occupied by this call */ |
371 | 371 | ||
372 | /* transmission-phase ACK management */ | 372 | /* transmission-phase ACK management */ |
373 | uint8_t acks_head; /* offset into window of first entry */ | 373 | u8 acks_head; /* offset into window of first entry */ |
374 | uint8_t acks_tail; /* offset into window of last entry */ | 374 | u8 acks_tail; /* offset into window of last entry */ |
375 | uint8_t acks_winsz; /* size of un-ACK'd window */ | 375 | u8 acks_winsz; /* size of un-ACK'd window */ |
376 | uint8_t acks_unacked; /* lowest unacked packet in last ACK received */ | 376 | u8 acks_unacked; /* lowest unacked packet in last ACK received */ |
377 | int acks_latest; /* serial number of latest ACK received */ | 377 | int acks_latest; /* serial number of latest ACK received */ |
378 | rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */ | 378 | rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */ |
379 | unsigned long *acks_window; /* sent packet window | 379 | unsigned long *acks_window; /* sent packet window |
@@ -388,7 +388,7 @@ struct rxrpc_call { | |||
388 | rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */ | 388 | rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */ |
389 | rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */ | 389 | rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */ |
390 | rxrpc_seq_net_t ackr_prev_seq; /* previous sequence number received */ | 390 | rxrpc_seq_net_t ackr_prev_seq; /* previous sequence number received */ |
391 | uint8_t ackr_reason; /* reason to ACK */ | 391 | u8 ackr_reason; /* reason to ACK */ |
392 | __be32 ackr_serial; /* serial of packet being ACK'd */ | 392 | __be32 ackr_serial; /* serial of packet being ACK'd */ |
393 | atomic_t ackr_not_idle; /* number of packets in Rx queue */ | 393 | atomic_t ackr_not_idle; /* number of packets in Rx queue */ |
394 | 394 | ||
@@ -434,8 +434,8 @@ extern int rxrpc_reject_call(struct rxrpc_sock *); | |||
434 | /* | 434 | /* |
435 | * ar-ack.c | 435 | * ar-ack.c |
436 | */ | 436 | */ |
437 | extern void __rxrpc_propose_ACK(struct rxrpc_call *, uint8_t, __be32, bool); | 437 | extern void __rxrpc_propose_ACK(struct rxrpc_call *, u8, __be32, bool); |
438 | extern void rxrpc_propose_ACK(struct rxrpc_call *, uint8_t, __be32, bool); | 438 | extern void rxrpc_propose_ACK(struct rxrpc_call *, u8, __be32, bool); |
439 | extern void rxrpc_process_call(struct work_struct *); | 439 | extern void rxrpc_process_call(struct work_struct *); |
440 | 440 | ||
441 | /* | 441 | /* |
diff --git a/net/rxrpc/ar-key.c b/net/rxrpc/ar-key.c index 44836f6c9643..74697b200496 100644 --- a/net/rxrpc/ar-key.c +++ b/net/rxrpc/ar-key.c | |||
@@ -360,7 +360,7 @@ static int rxrpc_krb5_decode_tagged_array(struct krb5_tagged_data **_td, | |||
360 | /* | 360 | /* |
361 | * extract a krb5 ticket | 361 | * extract a krb5 ticket |
362 | */ | 362 | */ |
363 | static int rxrpc_krb5_decode_ticket(u8 **_ticket, uint16_t *_tktlen, | 363 | static int rxrpc_krb5_decode_ticket(u8 **_ticket, u16 *_tktlen, |
364 | const __be32 **_xdr, unsigned *_toklen) | 364 | const __be32 **_xdr, unsigned *_toklen) |
365 | { | 365 | { |
366 | const __be32 *xdr = *_xdr; | 366 | const __be32 *xdr = *_xdr; |