odp-util: Print bad action numbers in hexadecimal in format_odp_action().
authorBen Pfaff <blp@nicira.com>
Tue, 13 Apr 2010 23:50:31 +0000 (16:50 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 13 Apr 2010 23:51:13 +0000 (16:51 -0700)
Given that dpif.c clears action numbers to 0xcccc it can be much less
mystifying to see that instead of 52428.

lib/odp-util.c

index 87ac92b82a4c1fa5e32ef41b02c50161f058ab21..67ce413244503d6b3ecf987a3e258d8bf7e3d5af 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009 Nicira Networks.
+ * Copyright (c) 2009, 2010 Nicira Networks.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -90,7 +90,7 @@ format_odp_action(struct ds *ds, const union odp_action *a)
         ds_put_format(ds, "set_tp_dst(%"PRIu16")", ntohs(a->tp_port.tp_port));
         break;
     default:
-        ds_put_format(ds, "***bad action %"PRIu16"***", a->type);
+        ds_put_format(ds, "***bad action 0x%"PRIx16"***", a->type);
         break;
     }
 }