From owner-freebsd-usb@FreeBSD.ORG Fri Jan 29 17:02:01 2010 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12E991065670 for ; Fri, 29 Jan 2010 17:02:01 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe02.swip.net [212.247.154.33]) by mx1.freebsd.org (Postfix) with ESMTP id 989368FC16 for ; Fri, 29 Jan 2010 17:02:00 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=wOKxqH1epL8A:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=6I5d2MoRAAAA:8 a=R2j-ctylBCjfCuJzlU4A:9 a=nTxb6L_nP14wer2XAR9DhhqM5lAA:4 a=SV7veod9ZcQA:10 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe02.swip.net (CommuniGate Pro SMTP 5.2.16) with ESMTPA id 1349622537; Fri, 29 Jan 2010 18:01:58 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org, Crazy Alex Date: Fri, 29 Jan 2010 18:00:34 +0100 User-Agent: KMail/1.12.4 (FreeBSD/8.0-STABLE; KDE/4.3.4; amd64; ; ) References: <201001291650.o0TGo6CT077268@freefall.freebsd.org> In-Reply-To: <201001291650.o0TGo6CT077268@freefall.freebsd.org> X-Face: +~\`s("[*|O,="7?X@L.elg*F"OA\I/3%^p8g?ab%RN'(; _IjlA: hGE..Ew, XAQ*o#\/M~SC=S1-f9{EzRfT'|Hhll5Q]ha5Bt-s|oTlKMusi:1e[wJl}kd}GR Z0adGx-x_0zGbZj'e(Y[(UNle~)8CQWXW@:DX+9)_YlB[tIccCPN$7/L' MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201001291800.34182.hselasky@c2i.net> 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 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jan 2010 17:02:01 -0000 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 > To: bug-followup@FreeBSD.org, crazyalexnt@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