On Mon, Apr 28, 2014 at 10:25:21PM -0700, Arun Sharma wrote:
> For each field, if the mask is all zeros, don't print it at all,
> if it is all ones, print it without the mask trailer.
> If it is neither of those two, print the value and mask in the current
> form.
>
> Removed inconsistency in format 0x% and %#, kept %# for mask as hex
> format.
>
> Bug# 1191729
>
> Reported-by: Justin Pettit <[email protected]>
> Signed-off-by: Arun Sharma <[email protected]>
This patch has a lot of statements of the form:
if ((a ^ b) != 0)
Please rewrite all of them as:
if (a != b)
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev