tap: add virtio 1.1 API flag
[vpp.git] / src / vpp / api / custom_dump.c
index 1928e42..8f2975d 100644 (file)
@@ -591,6 +591,10 @@ static void *vl_api_tap_create_v2_t_print
     s = format (s, "tun ");
   if ((mp->tap_flags) & TAP_API_FLAG_GRO_COALESCE)
     s = format (s, "gro-coalesce-enabled ");
+  if ((mp->tap_flags) & TAP_API_FLAG_PACKED)
+    s = format (s, "packed ");
+  if ((mp->tap_flags) & TAP_API_FLAG_IN_ORDER)
+    s = format (s, "in-order ");
   FINISH;
 }