Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Dec 1999 14:50:23 +0100 (CET)
From:      Nick Hibma <n_hibma@webweaving.org>
To:        Bill Paul <wpaul@skynet.ctr.columbia.edu>
Cc:        hackers@FreeBSD.ORG
Subject:   Re: USB ethernet hacking
Message-ID:  <Pine.BSF.4.20.9912201445120.398-100000@localhost>
In-Reply-To: <199912192103.QAA03584@skynet.ctr.columbia.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
> 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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.20.9912201445120.398-100000>