Re: [PATCH net] ibmvnic: Fix endian error when requesting device capabilities

2017-02-15 Thread David Miller
From: Thomas Falcon Date: Wed, 15 Feb 2017 10:32:11 -0600 > When a vNIC client driver requests a faulty device setting, the > server returns an acceptable value for the client to request. > This 64 bit value was incorrectly being swapped as a 32 bit value, > resulting in loss of data. This patch

[PATCH net] ibmvnic: Fix endian error when requesting device capabilities

2017-02-15 Thread Thomas Falcon
When a vNIC client driver requests a faulty device setting, the server returns an acceptable value for the client to request. This 64 bit value was incorrectly being swapped as a 32 bit value, resulting in loss of data. This patch corrects that by using the 64 bit swap function. Signed-off-by: Tho