Re: [PATCH] ethtool: mark mask values as ULL values

2016-11-30 Thread David Miller
From: Jacob Keller Date: Tue, 29 Nov 2016 15:08:47 -0800 > If compiling with signed checks enabled, there will be warnings > generated by the ETHTOOL_RX_FLOW_SPEC_RING(_VF) masks. These are > currently marked as signed constants, which will generate warnings when > masking with unsigned values. A

[PATCH] ethtool: mark mask values as ULL values

2016-11-29 Thread Jacob Keller
If compiling with signed checks enabled, there will be warnings generated by the ETHTOOL_RX_FLOW_SPEC_RING(_VF) masks. These are currently marked as signed constants, which will generate warnings when masking with unsigned values. Avoid this by marking them explicitly as unsigned values. Signed-of