mirror of https://gitee.com/openkylin/linux.git
hyperv: Fix the missing return value in rndis_filter_set_packet_filter()
Return ETIMEDOUT when the reply message is not received in time. Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Reviewed-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fb1d074edb
commit
ea4963745f
|
@ -647,6 +647,7 @@ int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter)
|
|||
if (t == 0) {
|
||||
netdev_err(ndev,
|
||||
"timeout before we got a set response...\n");
|
||||
ret = -ETIMEDOUT;
|
||||
/*
|
||||
* We can't deallocate the request since we may still receive a
|
||||
* send completion for it.
|
||||
|
|
Loading…
Reference in New Issue