From 0923c0ece0993e726643581a38acbdc194e9e75f Mon Sep 17 00:00:00 2001 From: John Ousterhout Date: Wed, 18 Dec 2024 08:59:54 -0800 Subject: [PATCH] Fix compilation problem related to SPLIT_64 Resolves #66 --- homa_offload.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homa_offload.c b/homa_offload.c index d80fabd..fad07bc 100644 --- a/homa_offload.c +++ b/homa_offload.c @@ -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; }