From owner-freebsd-isdn Sun Jan 13 15:24:15 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from arg1.demon.co.uk (arg1.demon.co.uk [62.49.12.213]) by hub.freebsd.org (Postfix) with ESMTP id 628E437B41D for ; Sun, 13 Jan 2002 15:24:00 -0800 (PST) Received: by arg1.demon.co.uk (Postfix, from userid 300) id 6B9149B04; Sun, 13 Jan 2002 23:23:59 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by arg1.demon.co.uk (Postfix) with ESMTP id 620CD5D25; Mon, 14 Jan 2002 09:23:59 +1000 (EST) Date: Mon, 14 Jan 2002 09:23:59 +1000 (EST) From: Andrew Gordon X-X-Sender: To: Gary Jennejohn Cc: Subject: ifpi2 problems - partially fixed! In-Reply-To: <200112250810.fBP8Adh52432@peedub.jennejohn.org> Message-ID: <20020114090708.I29792-100000@server.arg.sj.co.uk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I've fixed my main problem with ifpi2 (the one where everything would grind to a halt after short amount of heavy traffic). My guess is that the interrupts are level-triggered internally but then become edge-triggered on leaving the chip - so that if you exit the interrupt handler without ever getting all the interrupt sources cleared at once, you never get interrupted again. With this patch, I see the printf() at about the same point where it used to lock up previously (and it now keeps going!). @@ -974,6 +972,8 @@ /* was there an interrupt from this card ? */ if ((stat & ASL_IRQ_Pending) == 0) return; /* no */ + +again: /* interrupts are high active */ if (stat & ASL_IRQ_TIMER) NDBGL1(L1_H_IRQ, "timer interrupt ???"); @@ -987,6 +987,14 @@ NDBGL1(L1_H_IRQ, "ISAC"); ifpi2_isacsx_intr(sc); } + stat = bus_space_read_1(btag, bhandle, STAT0_OFFSET); + NDBGL1(L1_H_IRQ, "stat %x", stat); + /* Have we cleared all pending interrupts ? */ + if ((stat & ASL_IRQ_Pending) != 0) + { + printf("Repeat IRQ!\n"); + goto again; + } } However, there is one remaining problem - which may be a general I4B bug rather than ifpi2 specific. If I have full debugging turned on as it tries to make a connection (isdndebug -l1 -m), then I usually see this: Jan 13 19:56:27 router /kernel: i4b: unit 0, assigned TEI = 116 = 0x74 i4b-L2 i4b_T200_timeout: unit 0, RC = 0 i4b-L2 i4b_rxd_ack: ((N(R)-1)=127) != (UA=0) !!! i4b-L2 i4b_invoke_retransmission: nr = 0 i4b-L2 i4b_invoke_retransmission: nr(0) != vs(1) i4b-L2 i4b_invoke_retransmission: ERROR, l2sc->vs = 0, l2sc->ua_num = -1 i4b-L2 i4b_i_frame_queued_up: ERROR, mbuf NULL after IF_DEQUEUE i4b-L3 T303_timeout: SETUP not answered, cr = 98 Now, this is a slow machine (486/133), and it has a serial console at 9600bps, so maybe you don't expect it to work with full debugging on, but I think I've seen it once without debugging. The serious issue is that after this has happened the machine won't recover unless isdnd is restarted: isdnd[55]: DBG msg_dialoutnumber: dial req from rbch, unit 0 isdnd[55]: DBG setup_dialout: entry PPPout ok! isdnd[55]: DBG find_by_device_for_dialoutnumber: found entry 1! isdnd[55]: DBG FSM event [msg-dialout]: [idle => dialing] isdnd[55]: DBG F_DIAL: local dial out request isdnd[55]: DBG select_first_dialno: only one no, no = 08456609287 isdnd[55]: CHD 00002 PPPout rate 60 sec/unit (unitlen unknown) isdnd[55]: DBG sendm_connect_req: ctrl = 0, chan = -1 isdnd[55]: DBG decr_free_channels: ctrl 0, now 1 chan free isdnd[55]: CHD 00002 PPPout dialing out from 454560 to 08456609287 isdnd[55]: DBG msg_dialoutnumber: dial req from rbch, unit 0 ... pause while things go wrong but nothing more logged by isdnd.... isdnd[55]: DBG find_by_device_for_dialoutnumber: entry 1, cdid in use isdnd[55]: DBG msg_dialoutnumber: config entry reserved or no match isdnd[55]: DBG msg_dialoutnumber: dial req from rbch, unit 0 Those last three lines then repeat each time ppp retries, until I restart isdnd. I haven't yet dug into this to see what is going on. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sun Jan 13 22:47:52 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from bluenetone.bluenetdesign.de (bluenetone.bluenetdesign.de [62.132.109.154]) by hub.freebsd.org (Postfix) with ESMTP id 1043137B419 for ; Sun, 13 Jan 2002 22:47:51 -0800 (PST) Received: (from wwwrun@localhost) by bluenetone.bluenetdesign.de (8.11.2/8.11.2/8.11.1-0.5) id g0E6nB407624; Mon, 14 Jan 2002 07:49:11 +0100 Date: Mon, 14 Jan 2002 07:49:11 +0100 Message-Id: <200201140649.g0E6nB407624@bluenetone.bluenetdesign.de> To: freebsd-isdn@freebsd.org From: verkauf@sphone.de Reply-To: verkauf@sphone.de Subject: Newsletter: Ihre E-Mailadresse wurde ausgetragen. Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hallo, Ihre E-Mailadresse "freebsd-isdn@freebsd.org" wurde aus dem Verteiler entfernt. URL: http://www.bluenetdesign.de/cgi-bin/nls/newsletter.cgi?id=Nitro Mit freundlichen Grüssen Ihr Newsletter-Team To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jan 14 1:53:11 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mailout10.sul.t-online.com (mailout10.sul.t-online.com [194.25.134.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B8CB37B41C for ; Mon, 14 Jan 2002 01:53:08 -0800 (PST) Received: from fwd11.sul.t-online.de by mailout10.sul.t-online.com with smtp id 16Q3nf-0004XY-00; Mon, 14 Jan 2002 10:53:07 +0100 Received: from peedub.jennejohn.org (520017439985-0001@[217.80.228.12]) by fmrl11.sul.t-online.com with esmtp id 16Q3nV-22HqaWC; Mon, 14 Jan 2002 10:52:57 +0100 Received: by peedub.jennejohn.org (8.11.6/8.11.6) id g0E9r1Y15890; Mon, 14 Jan 2002 10:53:01 +0100 (CET) (envelope-from garyj) Message-Id: <200201140953.g0E9r1Y15890@peedub.jennejohn.org> Content-Type: text/plain; charset="iso-8859-1" From: Gary Jennejohn Reply-To: garyj@jennejohn.org To: Andrew Gordon Subject: Re: ifpi2 problems - partially fixed! Date: Mon, 14 Jan 2002 10:53:01 +0100 X-Mailer: KMail [version 1.3.2] Cc: References: <20020114090708.I29792-100000@server.arg.sj.co.uk> In-Reply-To: <20020114090708.I29792-100000@server.arg.sj.co.uk> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Sender: 520017439985-0001@t-dialin.net Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Monday 14 January 2002 00:23, Andrew Gordon wrote: > With this patch, I see the printf() at about the same point > where it used to lock up previously (and it now keeps going!). > > @@ -974,6 +972,8 @@ > /* was there an interrupt from this card ? */ > if ((stat & ASL_IRQ_Pending) == 0) > return; /* no */ > + > +again: > /* interrupts are high active */ > if (stat & ASL_IRQ_TIMER) > NDBGL1(L1_H_IRQ, "timer interrupt ???"); > @@ -987,6 +987,14 @@ > NDBGL1(L1_H_IRQ, "ISAC"); > ifpi2_isacsx_intr(sc); > } > + stat = bus_space_read_1(btag, bhandle, STAT0_OFFSET); > + NDBGL1(L1_H_IRQ, "stat %x", stat); > + /* Have we cleared all pending interrupts ? */ > + if ((stat & ASL_IRQ_Pending) != 0) > + { > + printf("Repeat IRQ!\n"); > + goto again; > + } > } > OK, this looks like a reasonable patch, I'll apply it. I think you're right about the slow HW. I did all my testing with a 1.2 GHz Athlon. I also recently installed the driver on a friend's machine with a 166 MHz P2 and never saw any problems under high load. > > > However, there is one remaining problem - which may be a > general I4B bug rather than ifpi2 specific. If I have full > debugging turned on as it tries to make a connection > (isdndebug -l1 -m), then I usually see this: > > Jan 13 19:56:27 router /kernel: i4b: unit 0, assigned TEI = > 116 = 0x74 i4b-L2 i4b_T200_timeout: unit 0, RC = 0 > i4b-L2 i4b_rxd_ack: ((N(R)-1)=127) != (UA=0) !!! > i4b-L2 i4b_invoke_retransmission: nr = 0 > i4b-L2 i4b_invoke_retransmission: nr(0) != vs(1) > i4b-L2 i4b_invoke_retransmission: ERROR, l2sc->vs = 0, > l2sc->ua_num = -1 i4b-L2 i4b_i_frame_queued_up: ERROR, mbuf > NULL after IF_DEQUEUE i4b-L3 T303_timeout: SETUP not answered, > cr = 98 > Hmm, I'll look into it. I also noticed a problem with my friend's machine. If I did a reboot the kernel hung due to an apparent problem with the ifpi2 being in a strange state (not completely reset by the software reset). I had to do a hard reset in order to avoid the hang. On my system here I never observed the problem. -- Gary Jennejohn garyj@jennejohn.org gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jan 14 10:52:46 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by hub.freebsd.org (Postfix) with ESMTP id C683937B419 for ; Mon, 14 Jan 2002 10:52:39 -0800 (PST) Received: from fwd08.sul.t-online.de by mailout03.sul.t-online.com with smtp id 16QCDn-0002XJ-02; Mon, 14 Jan 2002 19:52:39 +0100 Received: from kungfoo.putzei (520049982112-0001@[80.128.155.215]) by fmrl08.sul.t-online.com with esmtp id 16QCDg-0Nqr1UC; Mon, 14 Jan 2002 19:52:32 +0100 Received: from xenium (xenium.putzei [192.168.0.2]) by kungfoo.putzei (8.11.6/8.11.6) with SMTP id g0EJst314421 for ; Mon, 14 Jan 2002 19:55:02 GMT (envelope-from simon.putz@t-online.de) Message-ID: <006401c19d2d$01417240$0200a8c0@putzei> From: "Simon Putz" To: Subject: spam Date: Mon, 14 Jan 2002 19:55:08 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Sender: 520049982112-0001@t-dialin.net Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hello, i was just wondering if that is just e-mails with faked addresses or is there really that much spam on this ML ? i never saw that on any other list before. bye simon putz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Jan 15 8: 7:14 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from nixpbe.pdb.sbs.de (nixpbe.pdb.sbs.de [192.109.2.33]) by hub.freebsd.org (Postfix) with ESMTP id 4C2A937B429 for ; Tue, 15 Jan 2002 08:06:58 -0800 (PST) Received: from trulli.pdb.fsc.net (ThisAddressDoesNotExist [172.25.96.20] (may be forged)) by nixpbe.pdb.sbs.de (8.11.2/8.11.2) with ESMTP id g0FG6m913624 for ; Tue, 15 Jan 2002 17:06:55 +0100 Received: from deejai2.mch.fsc.net (deejai2.mch.fsc.net [172.25.124.236]) by trulli.pdb.fsc.net (8.9.3/8.9.3) with ESMTP id RAA08761 for ; Tue, 15 Jan 2002 17:06:46 +0100 Received: (from martin@localhost) by deejai2.mch.fsc.net (8.11.6/8.11.6) id g0FG6lk02126 for freebsd-isdn@freebsd.org; Tue, 15 Jan 2002 17:06:47 +0100 (CET) (envelope-from martin) Date: Tue, 15 Jan 2002 17:00:39 +0100 From: Martin Kraemer To: freebsd-isdn@freebsd.org Subject: FW: ISDN4BSD not ready for prime time in 4.5-RC ? Message-ID: <20020115170039.A1324@deejai2.mch.fsc.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="SLDf9lqlvOQaIe6s" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Operating-System: FreeBSD 4.5-RC FreeBSD 4.5-RC X-Organization: Fujitsu Siemens Computers (Muenchen, Germany) X-Disclaimer: THE COMMENTS CONTAINED IN THIS MESSAGE REFLECT THE VIEWS OF THE WRITER AND ARE NOT NECESSARILY THE VIEWS OF FUJITSU-SIEMENS COMPUTERS X-No-Junk-Mail: I do not want to get *any* junk mail. Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --SLDf9lqlvOQaIe6s Content-Type: text/plain; charset=us-ascii Content-Disposition: inline After I sent this mail I still tried the following: * reduced the "raw b" channels from 8 to 4 * cvsup'ed * talked with another freebsd-isdn user who has the same card as I have Still I am unsure what actually goes wrong here. Will isdntrace help me to pinpoint the trouble? I cannot make much sense from its output (attached). These come together with repeated syslog messages like... Jan 15 15:55:20 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 15 15:55:20 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Jan 15 15:55:24 deejai2 /kernel: i4b-L2 i4b_mph_status_ind: unit 0, persistent deactivation! Jan 15 15:55:24 deejai2 /kernel: i4b-L3 i4b_mdl_status_ind: STI_PDEACT: unit 0 TEI = 0 = 0x00 Jan 15 15:56:41 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 15 15:56:41 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Jan 15 16:23:53 deejai2 /kernel: i4b: unit 0, assigned TEI = 81 = 0x51 Jan 15 16:24:37 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error see <>. What else can I check (short of putting a second card into my PC -- problematic because of lack of irq's...)? Can it still be that the NTBA is broken? Martin -- | Fujitsu Siemens Fon: +49-89-636-46021, FAX: +49-89-636-47655 | 81730 Munich, Germany --SLDf9lqlvOQaIe6s Content-Type: message/rfc822 Content-Disposition: inline Date: Fri, 11 Jan 2002 16:48:10 +0100 From: Martin Kraemer To: freebsd-stable@freebsd.org Subject: ISDN4BSD not ready for prime time in 4.5-RC ? Message-ID: <20020111164810.A568@deejai2.mch.fsc.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.5-RC FreeBSD 4.5-RC X-Organization: Fujitsu Siemens Computers (Muenchen, Germany) X-Disclaimer: THE COMMENTS CONTAINED IN THIS MESSAGE REFLECT THE VIEWS OF THE WRITER AND ARE NOT NECESSARILY THE VIEWS OF FUJITSU-SIEMENS COMPUTERS X-No-Junk-Mail: I do not want to get *any* junk mail. Hello, In 4.5-RC (more exact, since ~October), I cannot succeed in using ISDN any more. Yes I changed the cable, and I asked a friend to use ISDN on the same NTBA (from Win2k), to the same provider I use; he had no problems. Only my machine, which used to be ISDN'ing rock-solidly, is unusable, and each connection is broken and torn down after a few packets' exchange between my machine and my provider. In 4.2, 4.3 and 4.4-RELEASE, I used a Teles Teles S0/16.3 ISA (non-PnP) card. Because I noticed the ISDN problems, I brought a Fritz!Card PCI 1.0 and tested that, but to no avail: both experience the same symptoms. OTOH I don't want to go back to FreeBSD-4.3 only for ISDN..... I have the following ISDN configuration in my kernel: --snip-- options TEL_S0_16_3 device isic0 at isa? port 0xd80 irq 5 flags 3 device ifpi pseudo-device "i4bq921" pseudo-device "i4bq931" pseudo-device "i4b" pseudo-device "i4btrc" 8 pseudo-device "i4bctl" pseudo-device "i4brbch" 8 pseudo-device "i4btel" 2 pseudo-device "i4bipr" 8 options IPR_VJ pseudo-device "i4bisppp" 8 --snip-- (Is there a problem with using 8 instead of 4?) I cvsup'ed to 4.5-RC today -- using a modem :-( I noticed there was a patch in the i4bisppp code, but the problems haven't changed. For TELES 16.3: Jan 11 15:44:41 deejai2 /kernel: isic0 at port 0xd80-0xd9f,0x980-0x99f,0x180-0x19f,0x580-0x59f irq 5 flags 0x3 on isa0 Jan 11 15:44:41 deejai2 /kernel: isic0: passive stack unit 0 Jan 11 15:44:41 deejai2 /kernel: isic0: Teles S0/16.3 Jan 11 15:44:41 deejai2 /kernel: i4bctl: ISDN system control port attached Jan 11 15:44:41 deejai2 /kernel: i4btrc: 8 ISDN trace device(s) attached Jan 11 15:44:41 deejai2 /kernel: i4bisppp: 8 ISDN SyncPPP device(s) attached (VJ header compression) Jan 11 15:44:42 deejai2 /kernel: i4b: ISDN call control device attached Jan 11 15:44:42 deejai2 /kernel: i4btel: 2 ISDN telephony interface device(s) attached Jan 11 15:44:42 deejai2 /kernel: i4brbch: 8 raw B channel access device(s) attached Jan 11 15:44:42 deejai2 /kernel: i4bipr: 8 IP over raw HDLC ISDN device(s) attached (VJ header compression) ... Jan 11 15:44:42 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 11 15:44:42 deejai2 /kernel: i4b-L2 i4b_T202_timeout: unit 0, N202 = 3 Jan 11 15:44:42 deejai2 /kernel: i4b-L3 T303_timeout: SETUP not answered, cr = 68 Jan 11 15:44:42 deejai2 /kernel: i4b-L3 next_l3state: FSM illegal state, state = ST_OW - Out Wait EST, event = EV_T303EXP - T303 timeout! Jan 11 15:44:42 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 11 15:44:42 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Jan 11 15:45:47 deejai2 /kernel: i4b-L2 F_ILL: FSM function F_ILL executing Jan 11 15:45:47 deejai2 /kernel: i4b-L2 i4b_next_l2state: FSM illegal state, state = ST_EST_AW_TEI, event = EV_DLESTRQ! Jan 11 15:45:52 deejai2 /kernel: i4b-L3 T303_timeout: SETUP not answered, cr = 24 Jan 11 15:45:52 deejai2 /kernel: i4b-L3 next_l3state: FSM illegal state, state = ST_OW - Out Wait EST, event = EV_T303EXP - T303 timeout! ... Jan 11 16:25:31 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 11 16:25:31 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Jan 11 16:25:43 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 11 16:25:43 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Jan 11 16:26:04 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 11 16:26:04 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Jan 11 16:26:14 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 11 16:26:14 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Jan 11 16:26:14 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error Jan 11 16:26:14 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Jan 11 16:26:17 deejai2 /kernel: i4b-L2 i4b_mph_status_ind: unit 0, persistent deactivation! Jan 11 16:26:17 deejai2 /kernel: i4b-L3 i4b_mdl_status_ind: STI_PDEACT: unit 0 TEI = 0 = 0x00 and with the Fritz!Card: Jan 11 16:12:43 deejai2 /kernel: ifpi0: port 0xe800-0xe81f mem 0xfedfac00-0xfedfac1f irq 9 at device 16.0 on pci0 Jan 11 16:12:43 deejai2 /kernel: ifpi0: ISAC 2085 Version A1/A2 or 2086/2186 Version 1.1 (IOM-2) Jan 11 16:12:43 deejai2 /kernel: ifpi0: passive stack unit 0 ... Jan 11 16:15:55 deejai2 isdnd[476]: DMN init_controller_state: controller 0 is AVM Fritz!Card PCI Jan 11 16:15:55 deejai2 isdnd[476]: DMN i4b isdn daemon started (pid = 476) Jan 11 16:16:01 deejai2 /kernel: i4b-L1 ifpi_ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Jan 11 16:16:01 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: CRC error Jan 11 16:16:03 deejai2 /kernel: i4b-L2 i4b_T202_timeout: unit 0, N202 = 3 Jan 11 16:16:03 deejai2 /kernel: i4b: unit 0, assigned TEI = 73 = 0x49 Jan 11 16:16:03 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: CRC error Jan 11 16:18:54 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: CRC error Jan 11 16:19:59 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: CRC error Jan 11 16:19:59 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: Receive Aborted error Jan 11 16:20:02 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: CRC error Jan 11 16:20:02 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: Receive Aborted error Jan 11 16:20:02 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: CRC error Jan 11 16:20:02 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: Receive Aborted error Jan 11 16:20:02 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: CRC error ...etc... Jan 11 16:20:40 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: CRC error Jan 11 16:20:40 deejai2 /kernel: i4b-L1 ifpi_isac_irq: unit 0: Receive Aborted error Jan 11 16:20:40 deejai2 /kernel: i4b-L1 ifpi_isac_irq: RPF, input buffer overflow! Jan 11 16:20:41 deejai2 /kernel: i4b-L2 i4b_mph_status_ind: unit 0, persistent deactivation! Jan 11 16:20:41 deejai2 /kernel: i4b-L3 i4b_mdl_status_ind: STI_PDEACT: unit 0 TEI = 0 = 0x00 Anybody seeing a light? Helpless, Martin -- | Fujitsu Siemens Fon: +49-89-636-46021, FAX: +49-89-636-47655 | 81730 Munich, Germany --SLDf9lqlvOQaIe6s Content-Type: application/x-gunzip Content-Disposition: attachment; filename="isdntrace0-20020115-162329.gz" Content-Transfer-Encoding: base64 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 --SLDf9lqlvOQaIe6s Content-Type: application/x-gunzip Content-Disposition: attachment; filename="messages.gz" Content-Transfer-Encoding: base64 H4sICDVLRDwCA21lc3NhZ2VzAO2WXW/aMBSG7/crzu6plk+CLPUiY1Rrt7aoydZK0xS5yYF5 Cw61DW3//Rzot6AN4GprawkIguTJ856c42SPcnBD/SJhSNw2FIi/KfPgwx8UHEsCLDjd+uoC kyzPmKT6Q5wRmHCmwCHQPeoCClGJd3ubgY4wRzZFiE8robBYBPUcQ3arg5rYBUugXr3JRuNf mVRUTWTGeHFNbsEYhWRSIVf6cJorNqWKVfx9Q7g/hxflPXiS7mb9T724m16fCNLeLmzrrX5f OM5depsErpHCrgN6vLBt4vkk9BdCb0tIpWRDrg+eZ+y4s5ChexcTED/aPOSaoCdDBiTwnqd7 Hodv2j0P6UwWvPjhOp2fBI6PDmAkhxnN82rCFeNDAryCvOIDNgRtLC5hoP8pHsp2lpZXsREK P8OLMROoRWtp1E47AcTnlNXngES3Ai0bI2dXTGBeTVEQ+Jx0T+Ajgd0kjedZ1wSBRsRdA6Ab o/04+TIjDQaboOJ7qM6m8W5QHm2Imvdz6jleVl/OaqJuu/lA/6pp/mpWejQKqqi2O6tbgpUl MH7VGzv+g+4KnaWjkPqOf+uU9NJvfd2wCiiX56j7rQW50HZR1JjI8UJlpT9TIbCT7IOWwyEt 53atmwZO0uzwGLbgcKLgWDcy9JK0BTit53obet+z2q130te71N/gyrJptvUnJ3QMTU5j0FOT s7rR0slZDfXo5Kweb8nkhCQIjdyn1gE9eZ/S0LYpu/brsnvpMUsqFYxQSjpEEDhGWp/cm60c 8nVfOmtn7azdOnaRKbvI2lk7a/dC7RY/O0QLnx1sxZ+v4t5bqPgbGWW7Ylk7a2fHy8a0Me3K 8cLsOqbsOtbu1dut8iz/HJlCx1Cm0LF21q65nWvK7t+BmsT0TNl51u7/svNN2fnG7SLibDD8 fwHhmYiFFSgAAA== --SLDf9lqlvOQaIe6s-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Jan 15 8:33:36 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with ESMTP id 6F94237B41F for ; Tue, 15 Jan 2002 08:33:31 -0800 (PST) Received: from localhost (localhost.hcs.de [127.0.0.1]) by hcshh.hcs.de (Postfix) with ESMTP id 3699015214; Tue, 15 Jan 2002 17:32:17 +0100 (CET) Received: from hcswork.hcs.de (hcswork.hcs.de [172.24.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id D1B1115212; Tue, 15 Jan 2002 17:32:14 +0100 (CET) Received: by hcswork.hcs.de (Postfix, from userid 200) id 27899552; Tue, 15 Jan 2002 17:33:27 +0100 (MET) Subject: Re: FW: ISDN4BSD not ready for prime time in 4.5-RC ? In-Reply-To: <20020115170039.A1324@deejai2.mch.fsc.net> "from Martin Kraemer at Jan 15, 2002 05:00:39 pm" To: Martin Kraemer Date: Tue, 15 Jan 2002 17:33:27 +0100 (MET) Cc: freebsd-isdn@freebsd.org Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL84 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20020115163327.27899552@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) X-Virus-Scanned-HCS: by AMaViS perl-11 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org From the keyboard of Martin Kraemer: > Still I am unsure what actually goes wrong here. > Will isdntrace help me to pinpoint the trouble? I cannot make much sense > from its output (attached). These come together with repeated syslog > messages like... > Jan 15 15:55:20 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error An HDLC frame had a CRC error and was thrown away. > Jan 15 15:55:20 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error The receive of a frame was aborted due to some error. > Jan 15 15:55:24 deejai2 /kernel: i4b-L2 i4b_mph_status_ind: unit 0, persistent deactivation! Link is dead. > Jan 15 15:55:24 deejai2 /kernel: i4b-L3 i4b_mdl_status_ind: STI_PDEACT: unit 0 TEI = 0 = 0x00 > Jan 15 15:56:41 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error > Jan 15 15:56:41 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: Receive Aborted error Same again, see above. > Jan 15 16:23:53 deejai2 /kernel: i4b: unit 0, assigned TEI = 81 = 0x51 A TEI could be assigned. This means that it is possible to use Layer 1 and 2 (at least for negotiating on a TEI. > Jan 15 16:24:37 deejai2 /kernel: i4b-L1 isic_isac_irq: unit 0: CRC error See above. > What else can I check (short of putting a second card into my PC -- problematic > because of lack of irq's...)? Check your hardware - and _ESPECIALLY_ the BIOS settings of your hardware. Nothing serious with respect to ISDN line handling was changed recently, the same setup as yours (same card, same rbch/isp use) runs fine here in several places. The only thing i can imagine is broken hardware (NTBA, cable, jacks, plugs, card, etc) and/or timing problems on your hardware due to changes in the (PCI/ISA) bus handling in FreeBSD - perhaps you have some sort of settings in your BIOS which were close to some maxes or mins and a slightly changed way of FreeBSD handling bus transfers and/or setups might trigger your problems: check BIOS timing settings. > Can it still be that the NTBA is broken? Maybe. hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Jan 15 13:26:59 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from sep.oldach.net (sep.oldach.net [194.180.25.6]) by hub.freebsd.org (Postfix) with ESMTP id 5929737B41D for ; Tue, 15 Jan 2002 13:26:53 -0800 (PST) Received: (from hmo@localhost) by sep.oldach.net (8.11.6/8.11.6/hmo27jul01) id g0FLQgT52090; Tue, 15 Jan 2002 22:26:42 +0100 (CET) (envelope-from hmo) Message-Id: <200201152126.g0FLQgT52090@sep.oldach.net> Subject: Re: ISDN4BSD not ready for prime time in 4.5-RC ? In-Reply-To: <20020115170039.A1324@deejai2.mch.fsc.net> from Martin Kraemer at "Jan 15, 2002 5: 0:39 pm" To: Martin.Kraemer@Fujitsu-Siemens.com (Martin Kraemer) Date: Tue, 15 Jan 2002 22:26:42 +0100 (CET) Cc: freebsd-isdn@FreeBSD.ORG From: freebsd-isdn@oldach.net (Helge Oldach) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Martin Kraemer: > Jan 15 15:55:24 deejai2 /kernel: i4b-L2 i4b_mph_status_ind: unit 0, persistent deactivation! This is likely the major point of trouble. Layer 1 is dead on the link and cannot be activated by your terminal device. Most likely this is a wiring problem, or your ISDN provider has deactivated your circuit due to excessive testing and playing-aroung. (Yes, I am serious with the second alternative. Seen that before several times.) Might also be that your ISDN card is broken. Helge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Jan 17 3:40:52 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from nixpbe.pdb.sbs.de (nixpbe.pdb.sbs.de [192.109.2.33]) by hub.freebsd.org (Postfix) with ESMTP id 2D30437B400 for ; Thu, 17 Jan 2002 03:40:42 -0800 (PST) Received: from trulli.pdb.fsc.net (ThisAddressDoesNotExist [172.25.96.20] (may be forged)) by nixpbe.pdb.sbs.de (8.11.2/8.11.2) with ESMTP id g0HBed812776 for ; Thu, 17 Jan 2002 12:40:39 +0100 Received: from deejai2.mch.fsc.net (deejai2.mch.fsc.net [172.25.124.236]) by trulli.pdb.fsc.net (8.9.3/8.9.3) with ESMTP id MAA02360 for ; Thu, 17 Jan 2002 12:40:37 +0100 Received: (from martin@localhost) by deejai2.mch.fsc.net (8.11.6/8.11.6) id g0HBebg70838 for freebsd-isdn@freebsd.org; Thu, 17 Jan 2002 12:40:37 +0100 (CET) (envelope-from martin) Date: Thu, 17 Jan 2002 12:40:37 +0100 From: Martin Kraemer To: freebsd-isdn@freebsd.org Subject: [Solved] ISDN4BSD not ready for prime time in 4.5-RC ? Message-ID: <20020117124037.A63494@deejai2.mch.fsc.net> References: <20020115170039.A1324@deejai2.mch.fsc.net> <20020115163327.27899552@hcswork.hcs.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020115163327.27899552@hcswork.hcs.de>; from hm@hcs.de on Tue, Jan 15, 2002 at 05:33:27PM +0100 X-Operating-System: FreeBSD 4.5-RC FreeBSD 4.5-RC X-Organization: Fujitsu Siemens Computers (Muenchen, Germany) X-Disclaimer: THE COMMENTS CONTAINED IN THIS MESSAGE REFLECT THE VIEWS OF THE WRITER AND ARE NOT NECESSARILY THE VIEWS OF FUJITSU-SIEMENS COMPUTERS X-No-Junk-Mail: I do not want to get *any* junk mail. Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Jan 15, 2002 at 05:33:27PM +0100, hm@hcs.de wrote: > The only thing i can imagine is broken hardware (NTBA, cable, jacks, plugs, > card, etc) Thanks again to everyone who helped and pointed to possible causes for my problems. Mea culpa, mea maxima culpa: I changed the cable again (this time to a cable which was delivered with an USB isdn modem), and now IT WORKS! I should have listened to Hellmuth in his reply in 2000 (which I DID read before mailing the list): http://docs.freebsd.org/cgi/getmsg.cgi?fetch=5696+0+archive/2000/freebsd-isdn/20001015.freebsd-isdn I simply hadn't believed that _both_ cables I had tried before caused the CRC errors. Sorry for the noise, Martin -- | Fujitsu Siemens Fon: +49-89-636-46021, FAX: +49-89-636-47655 | 81730 Munich, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Jan 17 3:53:24 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mail5.svr.pol.co.uk (mail5.svr.pol.co.uk [195.92.193.20]) by hub.freebsd.org (Postfix) with ESMTP id E551237B416 for ; Thu, 17 Jan 2002 03:53:21 -0800 (PST) Received: from modem-96.awesome.dialup.pol.co.uk ([62.25.128.96] helo=server01.bundy.co.uk) by mail5.svr.pol.co.uk with esmtp (Exim 3.13 #0) id 16RB6e-00028i-00 for freebsd-isdn@FreeBSD.ORG; Thu, 17 Jan 2002 11:53:20 +0000 Received: from chris-ee99scj0l ([10.10.10.2]) by server01.bundy.co.uk (8.11.1/8.9.3) with ESMTP id g0HBrLd06395 for ; Thu, 17 Jan 2002 11:53:22 GMT (envelope-from Chris@bundy.co.uk) From: CHRISTOPHER BUNDY To: freebsd-isdn@FreeBSD.ORG Subject: Unsubscribe Date: Thu, 17 Jan 2002 11:49:51 +0000 Reply-To: Chris@bundy.co.uk Message-ID: <1ied4uotovu0mkccr9enfm1a92a102qmv6@4ax.com> References: <20020115170039.A1324@deejai2.mch.fsc.net> <20020115163327.27899552@hcswork.hcs.de> <20020117124037.A63494@deejai2.mch.fsc.net> In-Reply-To: <20020117124037.A63494@deejai2.mch.fsc.net> X-Mailer: Forte Agent 1.8/32.548 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 17 Jan 2002 12:40:37 +0100, you wrote: >freebsd-isdn@FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Jan 17 6: 8: 4 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mail.dei.uc.pt (mail.dei.uc.pt [193.137.203.228]) by hub.freebsd.org (Postfix) with ESMTP id A1A9537B400; Thu, 17 Jan 2002 06:07:48 -0800 (PST) Received: (from root@localhost) by mail.dei.uc.pt (8.11.6/8.11.6) id g0HE7fr31244; Thu, 17 Jan 2002 14:07:41 GMT Received: from student.dei.uc.pt (IDENT:root@student.dei.uc.pt [10.1.0.1]) by mail.dei.uc.pt (8.11.6/8.11.6) with ESMTP id g0HE7eI31237; Thu, 17 Jan 2002 14:07:40 GMT Received: from student.dei.uc.pt (IDENT:duque@student.dei.uc.pt [10.1.0.1]) by student.dei.uc.pt (8.11.6/8.11.6) with ESMTP id g0HE7dx24983; Thu, 17 Jan 2002 14:07:40 GMT Date: Thu, 17 Jan 2002 14:07:39 +0000 (WET) From: "Rui M. Santos" To: Cc: Subject: unsubscribe freebsd-isdn In-Reply-To: <1ied4uotovu0mkccr9enfm1a92a102qmv6@4ax.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org unsubscribe freebsd-isdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Jan 17 18:43:58 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from freehotcoeds.com (port9gt.tube.com [216.18.85.19]) by hub.freebsd.org (Postfix) with SMTP id 5B84D37B400 for ; Thu, 17 Jan 2002 18:43:48 -0800 (PST) Received: (qmail 19652 invoked by uid 0); 18 Jan 2002 02:43:24 -0000 Date: 18 Jan 2002 02:43:24 -0000 From: freeteens@freehotcoeds.com To: freebsd-isdn@freebsd.org Subject: You forgot to write Message-ID: <89ad5c6c8745$c6e07639$435537cc@freehotcoeds.com> Organization: freehotcoeds.com MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Accept-Language: en Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org http://www.freehotcoeds.com/g2/ Right now you could be looking at FREE HARDCORE TEEN PORN, but instead you are reading your email and surfing around for low quality softcore pics of ugly skanks. WHAT'S YOUR PROBLEM? Here, have a FREE password to: http://www.freehotcoeds.com/g2/ Instant access costs nothing. If you want us to stop sending you email then click here: http://www.freehotcoeds.com/db/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message