Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homa_timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void homa_timer_check_rpc(struct homa_rpc *rpc)
} else {
/* >= comparison that handles tick wrap-around. */
if ((rpc->done_timer_ticks + homa->request_ack_ticks
- 1 - homa->timer_ticks) & 1 << 31) {
- 1 - homa->timer_ticks) & 1U << 31) {
struct homa_need_ack_hdr h;

homa_rpc_unlock(rpc);
Expand Down