| From | Sent On | Attachments |
|---|---|---|
| Andreas Klemm | Jan 2, 1999 5:12 am | |
| Martin Husemann | Jan 2, 1999 7:42 am | |
| Ignatios Souvatzis | Jan 2, 1999 9:15 am | |
| Martin Husemann | Jan 2, 1999 1:42 pm | |
| Ignatios Souvatzis | Jan 2, 1999 2:06 pm |
| Subject: | patch for layer1/i4b_isic.c (silence noisy debug message) | |
|---|---|---|
| From: | Andreas Klemm (andr...@klemm.gtn.com) | |
| Date: | Jan 2, 1999 5:12:06 am | |
| List: | org.freebsd.freebsd-isdn | |
Hi !
I get tons of
WARNING: unit %d, No IRQ from HSCX/ISAC!
messages from layer1/i4b_isic.c (FreeBSD-current, SMP).
If I remember right Hellmuth told me, that this is a not needed debug message. I commented it out and now my console window calms down ;-)
Please tell me if I can remove this debug message or if I should put a wrapper around it like below just for the case it might be needed again in the future.
cvs diff: Diffing .
Index: i4b_isic.c
===================================================================
RCS file: /home/ncvs/src/sys/i4b/layer1/i4b_isic.c,v
retrieving revision 1.1
diff -u -r1.1 i4b_isic.c
--- i4b_isic.c 1998/12/27 21:46:45 1.1
+++ i4b_isic.c 1999/01/02 13:08:39
@@ -171,7 +171,9 @@
{
#endif
if((was_hscx_irq == 0) && (was_isac_irq == 0))
+#if 0
DBGL1(L1_ERROR, "isicintr", ("WARNING: unit %d,
No IRQ from HSCX/ISAC!\n", sc->sc_unit));
+#endif
#ifdef ELSA_QS1ISA
}
#endif
-- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example, in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP''
To Unsubscribe: send mail to majo...@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message





