Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 288ccb75 authored by Thomas Falcon's avatar Thomas Falcon Committed by David S. Miller
Browse files

ibmvnic: Fix incorrectly defined ibmvnic_request_map_rsp structure



This reserved area should be eight bytes in length instead of four.
As a result, the return codes in the REQUEST_MAP_RSP descriptors
were not being properly handled.

Signed-off-by: default avatarThomas Falcon <tlfalcon@linux.vnet.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8fac365f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -595,7 +595,7 @@ struct ibmvnic_request_map_rsp {
	u8 cmd;
	u8 reserved1;
	u8 map_id;
	u8 reserved2[4];
	u8 reserved2[8];
	struct ibmvnic_rc rc;
} __packed __aligned(8);