Date: Sun, 04 May 2003 13:19:51 -0500 From: Larry Rosenman <ler@lerctr.org> To: Nate Lawson <nate@root.org>, Warner Losh <imp@freebsd.org> Cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/pccbb pccbb.c pccbbdevid.h Message-ID: <272510000.1052072391@lerlaptop.lerctr.org> In-Reply-To: <Pine.BSF.4.21.0305041112530.2798-100000@root.org> References: <Pine.BSF.4.21.0305041112530.2798-100000@root.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Warner is trying(!) to figure out what's bad with my CBB stuff on 5.0. He sent me a patch with these in it. :-( Warner: Any news based on my feedback? LER --On Sunday, May 04, 2003 11:14:26 -0700 Nate Lawson <nate@root.org> wrote: > On Sun, 4 May 2003, Warner Losh wrote: >> FreeBSD src repository >> >> Modified files: >> sys/dev/pccbb pccbb.c pccbbdevid.h >> Log: >> fix typo in TI1515 ID. >> >> Revision Changes Path >> 1.70 +8 -0 src/sys/dev/pccbb/pccbb.c >> 1.12 +1 -1 src/sys/dev/pccbb/pccbbdevid.h > > That part (the .h) seems correct but it looks like a bunch of debugging > printfs leaked in via pccbb.c (below). I usually avoid wildcard commits > to keep this from happening. > > -Nate > >> --- src/sys/dev/pccbb/pccbb.c:1.69 Mon Apr 28 22:59:04 2003 >> +++ src/sys/dev/pccbb/pccbb.c Sun May 4 05:49:37 2003 >> @@ -26,7 +26,7 @@ >> * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY >> OF * SUCH DAMAGE. >> * >> - * $FreeBSD: /repoman/r/ncvs/src/sys/dev/pccbb/pccbb.c,v 1.69 >> 2003/04/29 05:59:04 imp Exp $ + * $FreeBSD: >> /repoman/r/ncvs/src/sys/dev/pccbb/pccbb.c,v 1.70 2003/05/04 12:49:37 imp >> Exp $ */ >> >> /* >> @@ -976,10 +976,14 @@ >> /* >> * This ISR needs work XXX >> */ >> +printf("Cbb 1\n"); >> sockevent = cbb_get(sc, CBB_SOCKET_EVENT); >> +printf("Cbb 2\n"); >> if (sockevent) { >> +printf("Cbb 3\n"); >> /* ack the interrupt */ >> cbb_setb(sc, CBB_SOCKET_EVENT, sockevent); >> +printf("Cbb 4\n"); >> >> /* >> * If anything has happened to the socket, we assume that >> @@ -995,11 +999,13 @@ >> * excellent results. >> */ >> if (sockevent & CBB_SOCKET_EVENT_CD) { >> +printf("Cbb 5\n"); >> mtx_lock(&sc->mtx); >> sc->flags &= ~CBB_CARD_OK; >> cv_signal(&sc->cv); >> mtx_unlock(&sc->mtx); >> } >> +printf("Cbb 6\n"); >> if (sockevent & CBB_SOCKET_EVENT_CSTS) { >> DPRINTF((" cstsevent occured: 0x%08x\n", >> cbb_get(sc, CBB_SOCKET_STATE))); >> @@ -1011,7 +1017,9 @@ >> /* Other bits? */ >> } >> if (sc->flags & CBB_CARD_OK) { >> +printf("Cbb 7\n"); >> STAILQ_FOREACH(ih, &sc->intr_handlers, entries) { >> +printf("Cbb 8\n"); >> (*ih->intr)(ih->arg); >> } >> } > > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" > -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?272510000.1052072391>