]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
hv_netvsc: Fix the variable sizes in ipsecv2 and rsc offload
authorHaiyang Zhang <haiyangz@microsoft.com>
Fri, 15 Jun 2018 01:29:09 +0000 (18:29 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 15 Jun 2018 03:15:44 +0000 (20:15 -0700)
These fields in struct ndis_ipsecv2_offload and struct ndis_rsc_offload
are one byte according to the specs. This patch defines them with the
right size. These structs are not in use right now, but will be used soon.

Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/hyperv/hyperv_net.h

index d31c0cd329a1cbe5fd5dff129f7dee751ec87d1e..1a924b867b0742b0aa3e5a15f4da3e6885173e74 100644 (file)
@@ -1277,17 +1277,17 @@ struct ndis_lsov2_offload {
 
 struct ndis_ipsecv2_offload {
        u32     encap;
-       u16     ip6;
-       u16     ip4opt;
-       u16     ip6ext;
-       u16     ah;
-       u16     esp;
-       u16     ah_esp;
-       u16     xport;
-       u16     tun;
-       u16     xport_tun;
-       u16     lso;
-       u16     extseq;
+       u     ip6;
+       u     ip4opt;
+       u     ip6ext;
+       u     ah;
+       u     esp;
+       u     ah_esp;
+       u     xport;
+       u     tun;
+       u     xport_tun;
+       u     lso;
+       u     extseq;
        u32     udp_esp;
        u32     auth;
        u32     crypto;
@@ -1295,8 +1295,8 @@ struct ndis_ipsecv2_offload {
 };
 
 struct ndis_rsc_offload {
-       u16     ip4;
-       u16     ip6;
+       u     ip4;
+       u     ip6;
 };
 
 struct ndis_encap_offload {