[dpdk-dev] [PATCH 1/2] ixgbe: fix VF statistic wraparound handling macro

Thomas Monjalon thomas.monjalon at 6wind.com
Wed Oct 28 14:37:16 CET 2015


2015-10-12 17:45, Harry van Haaren:
> -	cur += latest - last;                                   \
> +	cur += (latest-last) & UINT_MAX;                        \

CHECK:SPACING: spaces preferred around that '-' (ctx:VxV)

Please use checkpatch before submitting.
Thanks


More information about the dev mailing list