Skip to content

Commit 33701f0

Browse files
doga22gregkh
authored andcommitted
rndis_host: increase sleep time in the query-response loop
[ Upstream commit 4202c9f ] Some WinCE devices face connectivity issues via the NDIS interface. They fail to register, resulting in -110 timeout errors and failures during the probe procedure. In this kind of WinCE devices, the Windows-side ndis driver needs quite more time to be loaded and configured, so that the linux rndis host queries to them fail to be responded correctly on time. More specifically, when INIT is called on the WinCE side - no other requests can be served by the Client and this results in a failed QUERY afterwards. The increase of the waiting time on the side of the linux rndis host in the command-response loop leaves the INIT process to complete and respond to a QUERY, which comes afterwards. The WinCE devices with this special "feature" in their ndis driver are satisfied by this fix. Signed-off-by: Olympia Giannou <[email protected]> Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 21f41dd commit 33701f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/usb/rndis_host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ int rndis_command(struct usbnet *dev, struct rndis_msg_hdr *buf, int buflen)
201201
dev_dbg(&info->control->dev,
202202
"rndis response error, code %d\n", retval);
203203
}
204-
msleep(20);
204+
msleep(40);
205205
}
206206
dev_dbg(&info->control->dev, "rndis response timeout\n");
207207
return -ETIMEDOUT;

0 commit comments

Comments
 (0)