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

Commit 178398dc authored by Wu, Bryan's avatar Wu, Bryan Committed by Greg Kroah-Hartman
Browse files

USB gadget rndis: fix struct rndis_packet_msg_type unaligned bug



skb_push function may return a pointer which is not aligned as required
by struct rndis_packet_msg_type. Using attribute trick to fix this bug.

Signed-off-by: default avatarRoy Huang <roy.huang@analog.com>
Signed-off-by: default avatarJie Zhang <jie.zhang@analog.com>
Signed-off-by: default avatarBryan Wu <bryan.wu@analog.com>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 893a342a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -195,7 +195,7 @@ struct rndis_packet_msg_type
	__le32	PerPacketInfoLength;
	__le32	VcHandle;
	__le32	Reserved;
};
} __attribute__ ((packed));

struct rndis_config_parameter
{