]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
hyperv: Fix the missing return value in rndis_filter_set_packet_filter()
authorHaiyang Zhang <haiyangz@microsoft.com>
Tue, 2 Oct 2012 05:30:20 +0000 (05:30 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 2 Oct 2012 18:39:30 +0000 (14:39 -0400)
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>
drivers/net/hyperv/rndis_filter.c

index 1337b64b36a4299a98272555e7125420e7a7abd8..617eb2e4b06ef19688b2db169a6825c684f16ceb 100644 (file)
@@ -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.