mirror of
https://github.com/torvalds/linux.git
synced 2026-03-13 22:36:17 +01:00
net/rds: Update struct rds_statistics to use u64 instead of uint64_t
Quick clean up to avoid checkpatch errors when adding members to this struct (Prefer kernel type 'u64' over 'uint64_t'). No functional changes added. Signed-off-by: Allison Henderson <allison.henderson@oracle.com> Link: https://patch.msgid.link/20260203055723.1085751-7-achender@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
b89fc7c252
commit
9d30ad8a8b
1 changed files with 36 additions and 36 deletions
|
|
@ -713,42 +713,42 @@ static inline int rds_sk_rcvbuf(struct rds_sock *rs)
|
|||
}
|
||||
|
||||
struct rds_statistics {
|
||||
uint64_t s_conn_reset;
|
||||
uint64_t s_recv_drop_bad_checksum;
|
||||
uint64_t s_recv_drop_old_seq;
|
||||
uint64_t s_recv_drop_no_sock;
|
||||
uint64_t s_recv_drop_dead_sock;
|
||||
uint64_t s_recv_deliver_raced;
|
||||
uint64_t s_recv_delivered;
|
||||
uint64_t s_recv_queued;
|
||||
uint64_t s_recv_immediate_retry;
|
||||
uint64_t s_recv_delayed_retry;
|
||||
uint64_t s_recv_ack_required;
|
||||
uint64_t s_recv_rdma_bytes;
|
||||
uint64_t s_recv_ping;
|
||||
uint64_t s_send_queue_empty;
|
||||
uint64_t s_send_queue_full;
|
||||
uint64_t s_send_lock_contention;
|
||||
uint64_t s_send_lock_queue_raced;
|
||||
uint64_t s_send_immediate_retry;
|
||||
uint64_t s_send_delayed_retry;
|
||||
uint64_t s_send_drop_acked;
|
||||
uint64_t s_send_ack_required;
|
||||
uint64_t s_send_queued;
|
||||
uint64_t s_send_rdma;
|
||||
uint64_t s_send_rdma_bytes;
|
||||
uint64_t s_send_pong;
|
||||
uint64_t s_page_remainder_hit;
|
||||
uint64_t s_page_remainder_miss;
|
||||
uint64_t s_copy_to_user;
|
||||
uint64_t s_copy_from_user;
|
||||
uint64_t s_cong_update_queued;
|
||||
uint64_t s_cong_update_received;
|
||||
uint64_t s_cong_send_error;
|
||||
uint64_t s_cong_send_blocked;
|
||||
uint64_t s_recv_bytes_added_to_socket;
|
||||
uint64_t s_recv_bytes_removed_from_socket;
|
||||
uint64_t s_send_stuck_rm;
|
||||
u64 s_conn_reset;
|
||||
u64 s_recv_drop_bad_checksum;
|
||||
u64 s_recv_drop_old_seq;
|
||||
u64 s_recv_drop_no_sock;
|
||||
u64 s_recv_drop_dead_sock;
|
||||
u64 s_recv_deliver_raced;
|
||||
u64 s_recv_delivered;
|
||||
u64 s_recv_queued;
|
||||
u64 s_recv_immediate_retry;
|
||||
u64 s_recv_delayed_retry;
|
||||
u64 s_recv_ack_required;
|
||||
u64 s_recv_rdma_bytes;
|
||||
u64 s_recv_ping;
|
||||
u64 s_send_queue_empty;
|
||||
u64 s_send_queue_full;
|
||||
u64 s_send_lock_contention;
|
||||
u64 s_send_lock_queue_raced;
|
||||
u64 s_send_immediate_retry;
|
||||
u64 s_send_delayed_retry;
|
||||
u64 s_send_drop_acked;
|
||||
u64 s_send_ack_required;
|
||||
u64 s_send_queued;
|
||||
u64 s_send_rdma;
|
||||
u64 s_send_rdma_bytes;
|
||||
u64 s_send_pong;
|
||||
u64 s_page_remainder_hit;
|
||||
u64 s_page_remainder_miss;
|
||||
u64 s_copy_to_user;
|
||||
u64 s_copy_from_user;
|
||||
u64 s_cong_update_queued;
|
||||
u64 s_cong_update_received;
|
||||
u64 s_cong_send_error;
|
||||
u64 s_cong_send_blocked;
|
||||
u64 s_recv_bytes_added_to_socket;
|
||||
u64 s_recv_bytes_removed_from_socket;
|
||||
u64 s_send_stuck_rm;
|
||||
};
|
||||
|
||||
/* af_rds.c */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue