usb/143294: copying process stops at some time (10 - 50 seconds) from usb disk only nForce motherboards in 8.0-RELEASE/STABLE

Hans Petter Selasky hselasky at c2i.net
Fri Jan 29 17:02:01 UTC 2010


On Friday 29 January 2010 17:50:06 Crazy Alex wrote:
> The following reply was made to PR usb/143294; it has been noted by GNATS.
> 
> From: Crazy Alex <crazyalexnt at inbox.ru>
> To: bug-followup at FreeBSD.org, crazyalexnt at inbox.ru
> Cc:
> Subject: Re: usb/143294: copying process stops at some time (10 - 50
>  seconds) from usb disk only nForce motherboards in 8.0-RELEASE/STABLE
> Date: Fri, 29 Jan 2010 21:54:15 +0500
> 
>  Hi,
> 
>  This patch only adds the output message?
>  Please advice, what do I do next?

Edit: src/sys/dev/usb/storage/umass.c and make the modification shown below

        [UMASS_T_BBB_COMMAND] = {
                .type = UE_BULK,
                .endpoint = UE_ADDR_ANY,
                .direction = UE_DIR_OUT,
                .bufsize = sizeof(umass_bbb_cbw_t),
                .callback = &umass_t_bbb_command_callback,
                .timeout = 5000,        /* 5 seconds */
+                               .interval = 1,                  /* ms */
        },

1) Apply the patch above by hand and rebuild the kernel. 
2) Test your USB device.

--HPS


More information about the freebsd-usb mailing list