From 1e58119032ef47e81e3c4348c624eaf0c28d15e6 Mon Sep 17 00:00:00 2001 From: Janne Peltonen Date: Wed, 20 Nov 2024 17:45:20 +0200 Subject: [PATCH] example: sysinfo: print odp_lso_capability_t::mod_op.write_bits Print the newly added mod_op.write_bits LSO capability. Signed-off-by: Janne Peltonen --- example/sysinfo/odp_sysinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/example/sysinfo/odp_sysinfo.c b/example/sysinfo/odp_sysinfo.c index 6ddbf0ad95..d95ad8efbe 100644 --- a/example/sysinfo/odp_sysinfo.c +++ b/example/sysinfo/odp_sysinfo.c @@ -588,6 +588,7 @@ static void print_pktio_capa(appl_args_t *appl_args) printf(" lso.mod_op.add_payload_len: %u\n", capa->lso.mod_op.add_payload_len); printf(" lso.mod_op.add_payload_offset: %u\n", capa->lso.mod_op.add_payload_offset); + printf(" lso.mod_op.write_bits: %u\n", capa->lso.mod_op.write_bits); printf(" lso.max_num_custom: %u\n", capa->lso.max_num_custom); printf(" lso.proto.custom: %u\n", capa->lso.proto.custom); printf(" lso.proto.ipv4: %u\n", capa->lso.proto.ipv4);