mirror of https://gitee.com/openkylin/linux.git
Staging: hv: Fix a bug affecting IPv6
Fix a bug affecting IPv6 Added the multicast flag for proper IPv6 function. Reported-by: Toshikazu Sakai <toshikas@microsoft.com> Signed-off-by: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Cc: stable <stable@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
4845187b39
commit
95beae90aa
|
@ -751,6 +751,7 @@ static int RndisFilterOpenDevice(struct rndis_device *Device)
|
|||
|
||||
ret = RndisFilterSetPacketFilter(Device,
|
||||
NDIS_PACKET_TYPE_BROADCAST |
|
||||
NDIS_PACKET_TYPE_ALL_MULTICAST |
|
||||
NDIS_PACKET_TYPE_DIRECTED);
|
||||
if (ret == 0)
|
||||
Device->State = RNDIS_DEV_DATAINITIALIZED;
|
||||
|
|
Loading…
Reference in New Issue