From owner-freebsd-hackers Mon Dec 20 7:13: 8 1999 Delivered-To: freebsd-hackers@freebsd.org Received: from webweaving.org (dialfwn05.fwn.rug.nl [129.125.32.155]) by hub.freebsd.org (Postfix) with ESMTP id 5276414EF3 for ; Mon, 20 Dec 1999 07:13:05 -0800 (PST) (envelope-from n_hibma@webweaving.org) Received: from localhost (localhost [127.0.0.1]) by webweaving.org (8.9.3/8.9.3) with ESMTP id OAA00517; Mon, 20 Dec 1999 14:50:23 +0100 (CET) (envelope-from n_hibma@webweaving.org) Date: Mon, 20 Dec 1999 14:50:23 +0100 (CET) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Bill Paul Cc: hackers@FreeBSD.ORG Subject: Re: USB ethernet hacking In-Reply-To: <199912192103.QAA03584@skynet.ctr.columbia.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > P.S.: Please don't write me asking for help getting your USB ethernet > adapter work with FreeBSD. Don't ask me when/if the driver will > be done. Don't ask me if your favorite adapter will be supported. > Don't ask me how to make the code work with FreeBSD 3.x. :-))) What's wrong? Delete button ain't working? The problem of usbd_abort_pipe is caused by the following code: if (status == USBD_CANCELLED) { usbd_setup_xfer(xfer, sc->aue_ep[AUE_ENDPT_RX], sc, sc->aue_rx_buf, 1536, USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, aue_rxeof); usbd_transfer(xfer); splx(s); return; } USBD_CANCELLED is the error code returned when the transfer was cancelled by abort_pipe. It might mean 'your dead, go away'. Nick -- n_hibma@webweaving.org n_hibma@freebsd.org USB project http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message