Skip to content

Commit

Permalink
Fix compilation problem related to SPLIT_64
Browse files Browse the repository at this point in the history
Resolves #66
  • Loading branch information
johnousterhout committed Dec 18, 2024
1 parent f96725d commit 0923c0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion homa_offload.c
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,8 @@ struct sk_buff *homa_gro_receive(struct list_head *held_list,
protocol = ip_hdr(held_skb)->protocol;
if (protocol != IPPROTO_HOMA) {
tt_record3("homa_gro_receive held_skb 0x%0x%0x isn't Homa: protocol %d",
SPLIT_64(held_skb), protocol);
tt_hi(held_skb), tt_lo(held_skb),
protocol);
continue;
}

Expand Down

0 comments on commit 0923c0e

Please sign in to comment.