From owner-cvs-all@FreeBSD.ORG Wed Aug 13 17:15:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD1F037B401; Wed, 13 Aug 2003 17:15:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A9943FDD; Wed, 13 Aug 2003 17:15:24 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7E0FO0U084572; Wed, 13 Aug 2003 17:15:24 -0700 (PDT) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7E0FORi084571; Wed, 13 Aug 2003 17:15:24 -0700 (PDT) Message-Id: <200308140015.h7E0FORi084571@repoman.freebsd.org> From: Josef Karthauser Date: Wed, 13 Aug 2003 17:15:24 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb uvisor.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 00:15:25 -0000 joe 2003/08/13 17:15:23 PDT FreeBSD src repository Modified files: sys/dev/usb uvisor.c Log: Crank down UVISORBUFSIZE from 1024 to 64 to avoid a problem where the Palm device and the USB host controller deadlock. The USB host controller is expecting an early-end-of-transmission packet with 0 data, and the Palm doesn't send one because it's already communicated the amount of data it's going to send in a header (which ucom/uvisor are oblivious to). This is the problem that has been known on the pilot-link lists as the "[Free]BSD USB problem", but not understood. Submitted by: Nathan J. Williams Revision Changes Path 1.15 +11 -1 src/sys/dev/usb/uvisor.c