ISDN/HiSax bug -> 2.2.16 hangs

From: Rok Papez (rok.papez@kiss.uni-lj.si)
Date: Thu Aug 10 2000 - 02:44:33 EST


Please CC: response to rok.papez@kiss.uni-lj.si,
I'm not subscribed to the kernel m.l.
---------------------------------------------------

Hi!

The appended programme causes linux 2.2.16 hang.
software: Redhat 6.0
kernel: 2.2.16
isdn4k: isdn4k-utils-3.0-5

hardware: Elsa Mikrolink ISDN PCI aka.
        Elsa Quickstep 1000PCI

PC: An IBM workstation that has been
working flawlesly for months (non-stop
and under load).

As this happend on a production machine
I'm unable to conduct further exact
testing.

Can someone with similar HW please
verify/confirm this problem ?

best regards,
Rok Papez.

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <fcntl.h>
#include <error.h>
#include <errno.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <linux/isdn.h>

isdn_net_ioctl_cfg cfg;
isdn_net_ioctl_phone phone0;

void print_cfg(isdn_net_ioctl_cfg *temp) {
        printf("name: %s\n", temp->name);
        printf("master: %s\n", temp->master);
        printf("slave: %s\n", temp->slave);
        printf("eaz: %s\n", temp->eaz);
        printf("drvid: %s\n", temp->drvid);
        printf("onhtime: %d\n", temp->onhtime);
        printf("charge: %d\n", temp->charge);
        printf("l2_proto: %d\n", temp->l2_proto);
        printf("l3_proto: %d\n", temp->l3_proto);
        printf("p_encap: %d\n", temp->p_encap);
        printf("exclusive: %d\n", temp->exclusive);
        printf("dialmax: %d\n", temp->dialmax);
        printf("slavedelay: %d\n", temp->slavedelay);
        printf("cbdelay: %d\n", temp->cbdelay);
        printf("chargehup: %d\n", temp->chargehup);
        printf("ihup: %d\n", temp->ihup);
        printf("secure: %d\n", temp->secure);
        printf("callback: %d\n", temp->callback);
        printf("cbhup: %d\n", temp->cbhup);
        printf("pppbind: %d\n", temp->pppbind);
        printf("chargeint: %d\n", temp->chargeint);
        printf("triggercps: %d\n", temp->triggercps);
        printf("dialtimeout: %d\n", temp->dialtimeout);
        printf("dialwait: %d\n", temp->dialwait);
        printf("dialmode: %d\n", temp->dialmode);
}

/*Vrstni red parametrov: MSN, kartica, zakasnitev*/
int main(int argc, char *argv[]) {

        int rc; // return code
        int fd; // file descriptor
        char ime[10];
        strncpy(ime, "KLIC0", 10);
        
        if(argc != 4) {
                printf("Bljuz!\n");
                return 1;
        }
                
        fd = open("/dev/isdnctrl0", O_RDWR);
        if (fd == -1){
                printf("Napaka pri odpiranju! %d\n", errno);
                return 2;
        }

        rc = ioctl(fd, IIOCNETAIF, ime);
        if (rc == -1) {
                if (errno == ENODEV) {
                        ioctl(fd, IIOCNETDIF, ime);
                        rc = ioctl(fd, IIOCNETAIF, ime);
                }
                if (rc == -1) {
                               printf("Dodajanje vmesnika ni uspelo! %d\n", errno);
                               return 3;
                       }
        }
        
        memset(&cfg, 0x00, sizeof(cfg));
        strncpy(cfg.name, ime, sizeof(cfg.name));
        rc = ioctl(fd, IIOCNETGCF, &cfg);
        if(rc == -1) {
                printf("Branje parametrov vmesnika ni uspelo! %d\n", errno);
                return 5;
        }
        print_cfg(&cfg);
        
        strncpy(cfg.eaz, argv[1], sizeof(cfg.eaz));
        //strncpy(cfg.drvid, argv[2], sizeof(cfg.drvid));
        //cfg.onhtime = atoi(argv[3]);
        //cfg.dialmax = 1;
        rc = ioctl(fd, IIOCNETSCF, &cfg);
        if(rc == -1) {
                printf("Nastavljanje parametrov vmesnika ni uspelo! %d\n", errno);
                return 4;
        }
        
        
        strncpy(phone0.name, ime, sizeof(phone0.name));
        strncpy(phone0.phone, argv[1], sizeof(phone0.phone));
        phone0.outgoing = 1;
        rc = ioctl(fd, IIOCNETANM, &phone0);
        if(rc == -1) {
                printf("Dodajanje telefonske stevilke vmesniku ni uspelo! %d\n", errno);
                return 6;
        }
        
        rc = ioctl(fd, IIOCNETDIL, ime);
        if(rc == -1) {
                printf("Prozenje klica ni bilo uspesno! %d\n", errno);
                return 7;
        }
        
        ioctl(fd, IIOCNETDNM, &phone0);
        
        ioctl(fd, IIOCNETDIF, ime);
        
        close(fd);
                
        return 0;
}

Aug 10 08:47:09 bosnjak2 syslogd 1.3-3: restart.
Aug 10 08:47:09 bosnjak2 syslog: syslogd startup succeeded
Aug 10 08:47:09 bosnjak2 syslog: klogd startup succeeded
Aug 10 08:47:09 bosnjak2 kernel: klogd 1.3-3, log source = /proc/kmsg started.
Aug 10 08:47:09 bosnjak2 kernel: Inspecting /boot/System.map-2.2.16
Aug 10 08:47:10 bosnjak2 kernel: Loaded 5033 symbols from /boot/System.map-2.2.16.
Aug 10 08:47:10 bosnjak2 kernel: Symbols match kernel version 2.2.16.
Aug 10 08:47:10 bosnjak2 kernel: Loaded 17 symbols from 5 modules.
Aug 10 08:47:10 bosnjak2 kernel: Linux version 2.2.16 (root@bosnjak2.iskratel.si) (gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)) #2 Tue Aug 1 08:51:48 CEST 2000
Aug 10 08:47:10 bosnjak2 kernel: Detected 165789 kHz processor.
Aug 10 08:47:10 bosnjak2 kernel: Console: colour VGA+ 80x25
Aug 10 08:47:10 bosnjak2 kernel: Calibrating delay loop... 330.14 BogoMIPS
Aug 10 08:47:10 bosnjak2 kernel: Memory: 63560k/65536k available (676k kernel code, 416k reserved, 844k data, 40k init)
Aug 10 08:47:10 bosnjak2 kernel: Dentry hash table entries: 8192 (order 4, 64k)
Aug 10 08:47:10 bosnjak2 kernel: Buffer cache hash table entries: 65536 (order 6, 256k)
Aug 10 08:47:10 bosnjak2 kernel: Page cache hash table entries: 16384 (order 4, 64k)
Aug 10 08:47:10 bosnjak2 kernel: VFS: Diskquotas version dquot_6.4.0 initialized
Aug 10 08:47:10 bosnjak2 kernel: CPU: Intel Pentium 75 - 200 stepping 0c
Aug 10 08:47:10 bosnjak2 kernel: Checking 386/387 coupling... OK, FPU using exception 16 error reporting.
Aug 10 08:47:10 bosnjak2 kernel: Checking 'hlt' instruction... OK.
Aug 10 08:47:10 bosnjak2 kernel: Intel Pentium with F0 0F bug - workaround enabled.
Aug 10 08:47:10 bosnjak2 kernel: POSIX conformance testing by UNIFIX
Aug 10 08:47:10 bosnjak2 kernel: PCI: PCI BIOS revision 2.10 entry at 0xfda4c
Aug 10 08:47:10 bosnjak2 kernel: PCI: Using configuration type 1
Aug 10 08:47:10 bosnjak2 kernel: PCI: Probing PCI hardware
Aug 10 08:47:10 bosnjak2 kernel: Linux NET4.0 for Linux 2.2
Aug 10 08:47:10 bosnjak2 kernel: Based upon Swansea University Computer Society NET3.039
Aug 10 08:47:10 bosnjak2 kernel: NET4: Unix domain sockets 1.0 for Linux NET4.0.
Aug 10 08:47:10 bosnjak2 kernel: NET4: Linux TCP/IP 1.0 for NET4.0
Aug 10 08:47:10 bosnjak2 kernel: IP Protocols: ICMP, UDP, TCP
Aug 10 08:47:10 bosnjak2 kernel: TCP: Hash tables configured (ehash 65536 bhash 65536)
Aug 10 08:47:10 bosnjak2 kernel: Starting kswapd v 1.5
Aug 10 08:47:10 bosnjak2 kernel: Detected PS/2 Mouse Port.
Aug 10 08:47:10 bosnjak2 kernel: Serial driver version 4.27 with MANY_PORTS MULTIPORT SHARE_IRQ enabled
Aug 10 08:47:10 bosnjak2 kernel: ttyS00 at 0x03f8 (irq = 4) is a 16550A
Aug 10 08:47:10 bosnjak2 kernel: ttyS01 at 0x02f8 (irq = 3) is a 16550A
Aug 10 08:47:10 bosnjak2 kernel: pty: 256 Unix98 ptys configured
Aug 10 08:47:10 bosnjak2 kernel: RAM disk driver initialized: 16 RAM disks of 4096K size
Aug 10 08:47:10 bosnjak2 kernel: SIS5513: IDE controller on PCI bus 00 dev 09
Aug 10 08:47:10 bosnjak2 kernel: SIS5513: not 100% native mode: will probe irqs later
Aug 10 08:47:10 bosnjak2 kernel: SIS5513: simplex device: DMA disabled
Aug 10 08:47:10 bosnjak2 kernel: ide0: SIS5513 Bus-Master DMA disabled (BIOS)
Aug 10 08:47:10 bosnjak2 kernel: hda: WDC AC32500H, ATA DISK drive
Aug 10 08:47:10 bosnjak2 kernel: hdb: FX810T4, ATAPI CDROM drive
Aug 10 08:47:10 bosnjak2 kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Aug 10 08:47:10 bosnjak2 kernel: hda: WDC AC32500H, 2441MB w/128kB Cache, CHS=4960/16/63
Aug 10 08:47:10 bosnjak2 kernel: Partition check:
Aug 10 08:47:10 bosnjak2 kernel: hda: [PTBL] [620/128/63] hda1 hda2 < hda5 hda6 >
Aug 10 08:47:10 bosnjak2 kernel: VFS: Mounted root (ext2 filesystem) readonly.
Aug 10 08:47:10 bosnjak2 kernel: Freeing unused kernel memory: 40k freed
Aug 10 08:47:10 bosnjak2 kernel: Adding Swap: 104796k swap-space (priority -1)
Aug 10 08:47:10 bosnjak2 kernel: hdb: ATAPI 8X CD-ROM drive, 256kB Cache
Aug 10 08:47:10 bosnjak2 kernel: Uniform CD-ROM driver Revision: 3.09
Aug 10 08:47:10 bosnjak2 kernel: 3c59x.c:v0.99H 27May00 Donald Becker http://cesdis.gsfc.nasa.gov/linux/drivers/vortex.html
Aug 10 08:47:10 bosnjak2 kernel: The PCI BIOS has not enabled the device at 0/120. Updating PCI command 0103->0107.
Aug 10 08:47:10 bosnjak2 kernel: eth0: 3Com 3c905 Boomerang 100baseTx at 0x4080, 00:60:97:b2:c1:87, IRQ 9
Aug 10 08:47:10 bosnjak2 kernel: 8K word-wide RAM 3:5 Rx:Tx split, autoselect/MII interface.
Aug 10 08:47:10 bosnjak2 kernel: MII transceiver found at address 24, status 786d.
Aug 10 08:47:10 bosnjak2 kernel: Enabling bus-master transmits and whole-frame receives.
Aug 10 08:47:10 bosnjak2 kernel: eth0: Overriding PCI latency timer (CFLT) setting of 24, new value is 32.
Aug 10 10:46:45 bosnjak2 rc.sysinit: Loading default keymap succeeded
Aug 10 10:46:46 bosnjak2 rc.sysinit: Setting default font succeeded
Aug 10 10:46:46 bosnjak2 swapon: swapon: warning: /dev/hda6 has insecure permissions 0660, 0600 suggested
Aug 10 10:46:46 bosnjak2 rc.sysinit: Activating swap partitions succeeded
Aug 10 10:46:46 bosnjak2 rc.sysinit: Setting hostname bosnjak2.iskratel.si succeeded
Aug 10 10:46:46 bosnjak2 fsck: /dev/hda5: clean, 63939/354960 files, 919640/1419232 blocks
Aug 10 10:46:46 bosnjak2 rc.sysinit: Checking root filesystem succeeded
Aug 10 10:46:46 bosnjak2 rc.sysinit: Remounting root filesystem in read-write mode succeeded
Aug 10 10:46:48 bosnjak2 rc.sysinit: Finding module dependencies succeeded
Aug 10 10:46:48 bosnjak2 rc.sysinit: Checking filesystems succeeded
Aug 10 10:46:51 bosnjak2 rc.sysinit: Mounting local filesystems succeeded
Aug 10 10:46:51 bosnjak2 rc.sysinit: Turning on user and group quotas for local filesystems succeeded
Aug 10 08:46:54 bosnjak2 date: Thu Aug 10 08:46:54 CEST 2000
Aug 10 08:46:54 bosnjak2 rc.sysinit: Setting clock : Thu Aug 10 08:46:54 CEST 2000 succeeded
Aug 10 08:46:54 bosnjak2 rc.sysinit: Enabling swap space succeeded
Aug 10 08:46:54 bosnjak2 init: Entering runlevel: 5
Aug 10 08:46:58 bosnjak2 modprobe: can't locate module lo:0
Aug 10 08:46:58 bosnjak2 modprobe: can't locate module lo:1
Aug 10 08:46:58 bosnjak2 modprobe: can't locate module lo:2
Aug 10 08:46:58 bosnjak2 modprobe: can't locate module lo:3
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:4
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:5
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:6
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:7
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:8
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:9
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:10
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:11
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:12
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:13
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:14
Aug 10 08:47:11 bosnjak2 atd: atd startup succeeded
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:15
Aug 10 08:46:59 bosnjak2 modprobe: can't locate module lo:16
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:17
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:18
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:19
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:20
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:21
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:22
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:23
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:24
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:25
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:26
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:27
Aug 10 08:47:00 bosnjak2 modprobe: can't locate module lo:28
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:29
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:30
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:31
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:32
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:33
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:34
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:35
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:36
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:37
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:38
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:39
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:40
Aug 10 08:47:01 bosnjak2 modprobe: can't locate module lo:41
Aug 10 08:47:02 bosnjak2 modprobe: can't locate module lo:42
Aug 10 08:47:02 bosnjak2 modprobe: can't locate module lo:43
Aug 10 08:47:02 bosnjak2 modprobe: can't locate module lo:44
Aug 10 08:47:02 bosnjak2 modprobe: can't locate module lo:45
Aug 10 08:47:02 bosnjak2 modprobe: can't locate module lo:46
Aug 10 08:47:02 bosnjak2 modprobe: can't locate module lo:47
Aug 10 08:47:02 bosnjak2 modprobe: can't locate module lo:48
Aug 10 08:47:02 bosnjak2 modprobe: can't locate module lo:49
Aug 10 08:47:13 bosnjak2 crond: crond startup succeeded
Aug 10 08:47:02 bosnjak2 network: Bringing up interface lo succeeded
Aug 10 08:47:03 bosnjak2 modprobe: can't locate module eth0:0
Aug 10 08:47:03 bosnjak2 modprobe: can't locate module eth0:1
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:2
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:3
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:4
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:5
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:6
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:7
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:8
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:9
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:10
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:11
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:12
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:13
Aug 10 08:47:04 bosnjak2 modprobe: can't locate module eth0:14
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:15
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:16
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:17
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:18
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:19
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:20
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:21
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:22
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:23
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:24
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:25
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:26
Aug 10 08:47:05 bosnjak2 modprobe: can't locate module eth0:27
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:28
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:29
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:30
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:31
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:32
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:33
Aug 10 08:47:14 bosnjak2 inet: inetd startup succeeded
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:34
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:35
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:36
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:37
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:38
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:39
Aug 10 08:47:06 bosnjak2 modprobe: can't locate module eth0:40
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:41
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:42
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:43
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:44
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:45
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:46
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:47
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:48
Aug 10 08:47:07 bosnjak2 modprobe: can't locate module eth0:49
Aug 10 08:47:07 bosnjak2 network: Bringing up interface eth0 succeeded
Aug 10 08:47:08 bosnjak2 netfs: Mounting other filesystems succeeded
Aug 10 08:47:08 bosnjak2 random: Initializing random number generator succeeded
Aug 10 08:47:15 bosnjak2 lpd: lpd startup succeeded
Aug 10 08:47:15 bosnjak2 keytable: Loading keymap:
Aug 10 08:47:17 bosnjak2 keytable: Loading /usr/lib/kbd/keymaps/i386/qwertz/slovene.kmap.gz
Aug 10 08:47:17 bosnjak2 keytable: Loading system font:
Aug 10 08:47:17 bosnjak2 rc: Starting keytable succeeded
Aug 10 08:47:18 bosnjak2 gpm: gpm startup succeeded
Aug 10 08:47:19 bosnjak2 PAM_pwdb[486]: (su) session opened for user xfs by (uid=0)
Aug 10 08:47:20 bosnjak2 PAM_pwdb[486]: (su) session closed for user xfs
Aug 10 08:47:20 bosnjak2 xfs: xfs startup succeeded
Aug 10 08:47:21 bosnjak2 smb: smbd startup succeeded
Aug 10 08:47:22 bosnjak2 linuxconf: Linuxconf final setup
Aug 10 08:47:22 bosnjak2 rc: Starting linuxconf succeeded
Aug 10 08:47:22 bosnjak2 local: Loading EPCA (/etc/digi/epca.o) driver module...
Aug 10 08:47:23 bosnjak2 kernel: EPCA: DIGI EPCA driver version 1.4.3.3 loaded.
Aug 10 08:47:23 bosnjak2 local: EPCA (/etc/digi/epca.o) driver module LOADED.
Aug 10 08:47:23 bosnjak2 local:
Aug 10 08:47:23 bosnjak2 local: Running digiDload...
Aug 10 08:47:23 bosnjak2 local: digiDload version 1.3.21
Aug 10 08:47:23 bosnjak2 local: Initializing card #0(Acceleport Xe 64k ISA):
Aug 10 08:47:23 bosnjak2 local: .....
Aug 10 08:47:23 bosnjak2 local: Downloading /etc/digi/xxbios.bin to ff800 on Acceleport Xe 64k ISA
Aug 10 08:47:25 bosnjak2 local: .....
Aug 10 08:47:25 bosnjak2 local: Downloading /etc/digi/xxfep.bin to 2000 on Acceleport Xe 64k ISA
Aug 10 08:47:28 bosnjak2 kernel: EPCA: Digi PC/Xx Driver V1.4.3.3: Acceleport Xe 64k ISA I/O = 0x320 Mem = 0xd0000 Ports = 16
Aug 10 08:47:28 bosnjak2 local: Number of ports:
Aug 10 08:47:28 bosnjak2 local: .....
Aug 10 08:47:28 bosnjak2 local: Card #0(Acceleport Xe 64k ISA): found 16 ports
Aug 10 08:47:28 bosnjak2 local: digiDload complete.
Aug 10 08:47:28 bosnjak2 local: digiDload successful - All ports on your DigiBoard(s) are enabled.
Aug 10 08:47:28 bosnjak2 rc: Starting local succeeded
Aug 10 08:47:31 bosnjak2 kdm[548]: Cannot open server authorization file /usr/X11R6/lib/X11/xdm/authdir/A:0-3yEjvZ
Aug 10 08:47:45 bosnjak2 PAM_pwdb[553]: (kde) session opened for user rdvv by (uid=0)
Aug 10 08:47:57 bosnjak2 modprobe: can't locate module char-major-14
Aug 10 08:48:16 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:48:16 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:48:16 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:48:16 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:48:16 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:48:16 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:48:28 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:48:28 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:48:28 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:48:28 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:48:28 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:48:28 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:48:52 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:48:52 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:48:52 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:48:52 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:48:52 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:48:52 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:49:27 bosnjak2 PAM_pwdb[688]: (login) session opened for user rdvv by (uid=0)
Aug 10 08:49:29 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:49:29 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:49:29 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:49:29 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:49:29 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:49:29 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:49:36 bosnjak2 PAM_pwdb[741]: (login) session opened for user rdvv by (uid=0)
Aug 10 08:49:39 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:49:39 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:49:39 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:49:39 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:49:39 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:49:39 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:51:02 bosnjak2 PAM_pwdb[803]: (login) session opened for user martinm by (uid=0)
Aug 10 08:51:14 bosnjak2 PAM_pwdb[816]: (login) session opened for user martinm by (uid=0)
Aug 10 08:52:17 bosnjak2 modprobe: can't locate module char-major-45
Aug 10 08:52:43 bosnjak2 PAM_pwdb[839]: 1 authentication failure; martinm(uid=516) -> root for su service
Aug 10 08:52:47 bosnjak2 PAM_pwdb[840]: (su) session opened for user root by martinm(uid=516)
Aug 10 08:53:27 bosnjak2 kernel: CSLIP: code copyright 1989 Regents of the University of California
Aug 10 08:53:27 bosnjak2 kernel: ISDN subsystem Rev: 1.100/1.84/1.114/1.63/1.17/1.4 loaded
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Linux Driver for passive ISDN cards
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Version 3.3e (module)
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Layer1 Revision 2.37
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Layer2 Revision 2.20
Aug 10 08:53:27 bosnjak2 kernel: HiSax: TeiMgr Revision 2.13
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Layer3 Revision 2.10
Aug 10 08:53:27 bosnjak2 kernel: HiSax: LinkLayer Revision 2.40
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Approval certification valid
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Approved with ELSA Quickstep series cards
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Approval registration numbers:
Aug 10 08:53:27 bosnjak2 kernel: HiSax: German D133361J CETECOM ICT Services GmbH
Aug 10 08:53:27 bosnjak2 kernel: HiSax: EU (D133362J) CETECOM ICT Services GmbH
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Approved with Eicon Technology Diva 2.01 PCI cards
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Card 1 Protocol EDSS1 Id=HiSax (0)
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Elsa driver Rev. 2.20
Aug 10 08:53:27 bosnjak2 kernel: Elsa: QS 1000 PCI defined at 0x40c0/0x4000 IRQ 11
Aug 10 08:53:27 bosnjak2 kernel: Elsa: IPAC version 2
Aug 10 08:53:27 bosnjak2 kernel: Elsa PCI: IRQ 11 count 0
Aug 10 08:53:27 bosnjak2 kernel: Elsa PCI: IRQ 11 count 3
Aug 10 08:53:27 bosnjak2 kernel: HiSax: DSS1 Rev. 2.23
Aug 10 08:53:27 bosnjak2 kernel: HiSax: 2 channels added
Aug 10 08:53:27 bosnjak2 kernel: HiSax: MAX_WAITING_CALLS added
Aug 10 08:53:34 bosnjak2 PAM_pwdb[840]: (su) session closed for user root
Aug 10 08:53:43 bosnjak2 kernel: KLIC0: dialing 1 240034...
Aug 10 08:58:03 bosnjak2 syslogd 1.3-3: restart.
Aug 10 08:58:03 bosnjak2 syslog: syslogd startup succeeded
Aug 10 08:58:03 bosnjak2 syslog: klogd startup succeeded
Aug 10 08:58:03 bosnjak2 kernel: klogd 1.3-3, log source = /proc/kmsg started.
Aug 10 08:58:03 bosnjak2 kernel: Inspecting /boot/System.map-2.2.16
Aug 10 08:58:04 bosnjak2 kernel: Loaded 5033 symbols from /boot/System.map-2.2.16.
Aug 10 08:58:04 bosnjak2 kernel: Symbols match kernel version 2.2.16.
Aug 10 08:58:04 bosnjak2 kernel: Loaded 30 symbols from 8 modules.
Aug 10 08:58:04 bosnjak2 kernel: Linux version 2.2.16 (root@bosnjak2.iskratel.si) (gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)) #2 Tue Aug 1 08:51:48 CEST 2000
Aug 10 08:58:04 bosnjak2 kernel: Detected 165790 kHz processor.
Aug 10 08:58:04 bosnjak2 kernel: Console: colour VGA+ 80x25
Aug 10 08:58:04 bosnjak2 kernel: Calibrating delay loop... 330.14 BogoMIPS
Aug 10 08:58:04 bosnjak2 kernel: Memory: 63560k/65536k available (676k kernel code, 416k reserved, 844k data, 40k init)
Aug 10 08:58:04 bosnjak2 kernel: Dentry hash table entries: 8192 (order 4, 64k)
Aug 10 08:58:04 bosnjak2 kernel: Buffer cache hash table entries: 65536 (order 6, 256k)
Aug 10 08:58:04 bosnjak2 kernel: Page cache hash table entries: 16384 (order 4, 64k)
Aug 10 08:58:04 bosnjak2 kernel: VFS: Diskquotas version dquot_6.4.0 initialized
Aug 10 08:58:04 bosnjak2 kernel: CPU: Intel Pentium 75 - 200 stepping 0c
Aug 10 08:58:04 bosnjak2 kernel: Checking 386/387 coupling... OK, FPU using exception 16 error reporting.
Aug 10 08:58:04 bosnjak2 kernel: Checking 'hlt' instruction... OK.
Aug 10 08:58:04 bosnjak2 kernel: Intel Pentium with F0 0F bug - workaround enabled.
Aug 10 08:58:04 bosnjak2 kernel: POSIX conformance testing by UNIFIX
Aug 10 08:58:04 bosnjak2 kernel: PCI: PCI BIOS revision 2.10 entry at 0xfda4c
Aug 10 08:58:04 bosnjak2 kernel: PCI: Using configuration type 1
Aug 10 08:58:04 bosnjak2 kernel: PCI: Probing PCI hardware
Aug 10 08:58:04 bosnjak2 kernel: Linux NET4.0 for Linux 2.2
Aug 10 08:58:04 bosnjak2 kernel: Based upon Swansea University Computer Society NET3.039
Aug 10 08:58:04 bosnjak2 kernel: NET4: Unix domain sockets 1.0 for Linux NET4.0.
Aug 10 08:58:04 bosnjak2 kernel: NET4: Linux TCP/IP 1.0 for NET4.0
Aug 10 08:58:04 bosnjak2 kernel: IP Protocols: ICMP, UDP, TCP
Aug 10 08:58:04 bosnjak2 kernel: TCP: Hash tables configured (ehash 65536 bhash 65536)
Aug 10 08:58:04 bosnjak2 kernel: Starting kswapd v 1.5
Aug 10 08:58:04 bosnjak2 kernel: Detected PS/2 Mouse Port.
Aug 10 08:58:04 bosnjak2 kernel: Serial driver version 4.27 with MANY_PORTS MULTIPORT SHARE_IRQ enabled
Aug 10 08:58:04 bosnjak2 kernel: ttyS00 at 0x03f8 (irq = 4) is a 16550A
Aug 10 08:58:04 bosnjak2 kernel: ttyS01 at 0x02f8 (irq = 3) is a 16550A
Aug 10 08:58:04 bosnjak2 kernel: pty: 256 Unix98 ptys configured
Aug 10 08:58:04 bosnjak2 kernel: RAM disk driver initialized: 16 RAM disks of 4096K size
Aug 10 08:58:04 bosnjak2 kernel: SIS5513: IDE controller on PCI bus 00 dev 09
Aug 10 08:58:04 bosnjak2 kernel: SIS5513: not 100% native mode: will probe irqs later
Aug 10 08:58:04 bosnjak2 kernel: SIS5513: simplex device: DMA disabled
Aug 10 08:58:04 bosnjak2 kernel: ide0: SIS5513 Bus-Master DMA disabled (BIOS)
Aug 10 08:58:04 bosnjak2 kernel: hda: WDC AC32500H, ATA DISK drive
Aug 10 08:58:04 bosnjak2 kernel: hdb: FX810T4, ATAPI CDROM drive
Aug 10 08:58:04 bosnjak2 kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Aug 10 08:58:04 bosnjak2 kernel: hda: WDC AC32500H, 2441MB w/128kB Cache, CHS=4960/16/63
Aug 10 08:58:04 bosnjak2 kernel: Partition check:
Aug 10 08:58:04 bosnjak2 kernel: hda: [PTBL] [620/128/63] hda1 hda2 < hda5 hda6 >
Aug 10 08:58:04 bosnjak2 kernel: VFS: Mounted root (ext2 filesystem) readonly.
Aug 10 08:58:04 bosnjak2 kernel: Freeing unused kernel memory: 40k freed
Aug 10 08:58:04 bosnjak2 kernel: Adding Swap: 104796k swap-space (priority -1)
Aug 10 08:58:04 bosnjak2 kernel: hdb: ATAPI 8X CD-ROM drive, 256kB Cache
Aug 10 08:58:04 bosnjak2 kernel: Uniform CD-ROM driver Revision: 3.09
Aug 10 08:58:04 bosnjak2 kernel: CSLIP: code copyright 1989 Regents of the University of California
Aug 10 08:58:04 bosnjak2 kernel: ISDN subsystem Rev: 1.100/1.84/1.114/1.63/1.17/1.4 loaded
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Linux Driver for passive ISDN cards
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Version 3.3e (module)
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Layer1 Revision 2.37
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Layer2 Revision 2.20
Aug 10 08:58:04 bosnjak2 kernel: HiSax: TeiMgr Revision 2.13
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Layer3 Revision 2.10
Aug 10 08:58:04 bosnjak2 kernel: HiSax: LinkLayer Revision 2.40
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Approval certification valid
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Approved with ELSA Quickstep series cards
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Approval registration numbers:
Aug 10 08:58:04 bosnjak2 kernel: HiSax: German D133361J CETECOM ICT Services GmbH
Aug 10 08:58:04 bosnjak2 kernel: HiSax: EU (D133362J) CETECOM ICT Services GmbH
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Approved with Eicon Technology Diva 2.01 PCI cards
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Card 1 Protocol EDSS1 Id=HiSax (0)
Aug 10 08:58:04 bosnjak2 kernel: HiSax: Elsa driver Rev. 2.20
Aug 10 08:58:04 bosnjak2 kernel: Elsa: QS 1000 PCI defined at 0x40c0/0x4000 IRQ 11
Aug 10 08:58:04 bosnjak2 kernel: Elsa: IPAC version 2
Aug 10 08:58:04 bosnjak2 kernel: Elsa PCI: IRQ 11 count 0
Aug 10 08:58:04 bosnjak2 kernel: Elsa PCI: IRQ 11 count 3
Aug 10 08:58:04 bosnjak2 kernel: HiSax: DSS1 Rev. 2.23
Aug 10 08:58:04 bosnjak2 kernel: HiSax: 2 channels added
Aug 10 08:58:04 bosnjak2 kernel: HiSax: MAX_WAITING_CALLS added
Aug 10 08:58:04 bosnjak2 kernel: 3c59x.c:v0.99H 27May00 Donald Becker http://cesdis.gsfc.nasa.gov/linux/drivers/vortex.html
Aug 10 08:58:04 bosnjak2 kernel: The PCI BIOS has not enabled the device at 0/120. Updating PCI command 0103->0107.
Aug 10 08:58:04 bosnjak2 atd: atd startup succeeded
Aug 10 08:58:04 bosnjak2 kernel: eth0: 3Com 3c905 Boomerang 100baseTx at 0x4080, 00:60:97:b2:c1:87, IRQ 9
Aug 10 08:58:04 bosnjak2 kernel: 8K word-wide RAM 3:5 Rx:Tx split, autoselect/MII interface.
Aug 10 08:58:04 bosnjak2 kernel: MII transceiver found at address 24, status 786d.
Aug 10 08:58:04 bosnjak2 kernel: Enabling bus-master transmits and whole-frame receives.
Aug 10 08:58:04 bosnjak2 kernel: eth0: Overriding PCI latency timer (CFLT) setting of 24, new value is 32.
Aug 10 08:58:06 bosnjak2 crond: crond startup succeeded
Aug 10 08:58:07 bosnjak2 inet: inetd startup succeeded
Aug 10 08:58:07 bosnjak2 lpd: lpd startup succeeded
Aug 10 08:58:07 bosnjak2 keytable: Loading keymap:
Aug 10 08:58:07 bosnjak2 keytable: Loading /usr/lib/kbd/keymaps/i386/qwertz/slovene.kmap.gz
Aug 10 08:58:08 bosnjak2 keytable: Loading system font:
Aug 10 08:58:08 bosnjak2 rc: Starting keytable succeeded
Aug 10 08:58:09 bosnjak2 gpm: gpm startup succeeded
Aug 10 08:58:09 bosnjak2 PAM_pwdb[488]: (su) session opened for user xfs by (uid=0)
Aug 10 08:58:10 bosnjak2 PAM_pwdb[488]: (su) session closed for user xfs
Aug 10 08:58:10 bosnjak2 xfs: xfs startup succeeded
Aug 10 08:58:11 bosnjak2 smb: smbd startup succeeded
Aug 10 08:58:12 bosnjak2 linuxconf: Linuxconf final setup
Aug 10 08:58:12 bosnjak2 rc: Starting linuxconf succeeded
Aug 10 08:58:12 bosnjak2 local: Loading EPCA (/etc/digi/epca.o) driver module...
Aug 10 08:58:12 bosnjak2 kernel: EPCA: DIGI EPCA driver version 1.4.3.3 loaded.
Aug 10 08:58:12 bosnjak2 local: EPCA (/etc/digi/epca.o) driver module LOADED.
Aug 10 08:58:12 bosnjak2 local:
Aug 10 08:58:12 bosnjak2 local: Running digiDload...
Aug 10 08:58:13 bosnjak2 local: digiDload version 1.3.21
Aug 10 08:58:13 bosnjak2 local: Initializing card #0(Acceleport Xe 64k ISA):
Aug 10 08:58:13 bosnjak2 local: .....
Aug 10 08:58:13 bosnjak2 local: Downloading /etc/digi/xxbios.bin to ff800 on Acceleport Xe 64k ISA
Aug 10 08:58:15 bosnjak2 local: .....
Aug 10 08:58:15 bosnjak2 local: Downloading /etc/digi/xxfep.bin to 2000 on Acceleport Xe 64k ISA
Aug 10 08:58:18 bosnjak2 kernel: EPCA: Digi PC/Xx Driver V1.4.3.3: Acceleport Xe 64k ISA I/O = 0x320 Mem = 0xd0000 Ports = 16
Aug 10 08:58:18 bosnjak2 local: Number of ports:
Aug 10 08:58:18 bosnjak2 local: .....
Aug 10 08:58:18 bosnjak2 local: Card #0(Acceleport Xe 64k ISA): found 16 ports
Aug 10 08:58:18 bosnjak2 local: digiDload complete.
Aug 10 08:58:18 bosnjak2 local: digiDload successful - All ports on your DigiBoard(s) are enabled.
Aug 10 08:58:19 bosnjak2 rc: Starting local succeeded
Aug 10 08:58:21 bosnjak2 kdm[550]: Cannot open server authorization file /usr/X11R6/lib/X11/xdm/authdir/A:0-727YoF
Aug 10 08:58:38 bosnjak2 PAM_pwdb[555]: (kde) session opened for user rdvv by (uid=0)
Aug 10 08:58:46 bosnjak2 modprobe: can't locate module char-major-14
Aug 10 08:59:08 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:08 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:08 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:08 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:08 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:08 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:18 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:18 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:18 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:18 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:18 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:18 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:30 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:30 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:30 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:30 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:30 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:30 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:36 bosnjak2 PAM_pwdb[545]: (login) session opened for user root by (uid=0)
Aug 10 08:59:48 bosnjak2 PAM_pwdb[701]: (login) session opened for user rdvv by (uid=0)
Aug 10 08:59:51 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:51 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:51 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:51 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:51 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:51 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:53 bosnjak2 PAM_pwdb[754]: (login) session opened for user rdvv by (uid=0)
Aug 10 08:59:56 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:56 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:56 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff
Aug 10 08:59:56 bosnjak2 kernel: EPCA: Error: line = 878 Global memory off
Aug 10 08:59:56 bosnjak2 kernel: EPCA: line 3717: Out of range, cmd = e9, head = ffff
Aug 10 08:59:56 bosnjak2 kernel: EPCA: line 3719: Out of range, cmdMax = 20002, cmdStart = ffff

Aug 10 08:47:09 bosnjak2 syslogd 1.3-3: restart.
... <snip> kernel init <snip> ...
Aug 10 08:53:27 bosnjak2 kernel: CSLIP: code copyright 1989 Regents of the University of California
Aug 10 08:53:27 bosnjak2 kernel: ISDN subsystem Rev: 1.100/1.84/1.114/1.63/1.17/1.4 loaded
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Linux Driver for passive ISDN cards
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Version 3.3e (module)
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Layer1 Revision 2.37
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Layer2 Revision 2.20
Aug 10 08:53:27 bosnjak2 kernel: HiSax: TeiMgr Revision 2.13
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Layer3 Revision 2.10
Aug 10 08:53:27 bosnjak2 kernel: HiSax: LinkLayer Revision 2.40
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Approval certification valid
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Approved with ELSA Quickstep series cards
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Approval registration numbers:
Aug 10 08:53:27 bosnjak2 kernel: HiSax: German D133361J CETECOM ICT Services GmbH
Aug 10 08:53:27 bosnjak2 kernel: HiSax: EU (D133362J) CETECOM ICT Services GmbH
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Approved with Eicon Technology Diva 2.01 PCI cards
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Card 1 Protocol EDSS1 Id=HiSax (0)
Aug 10 08:53:27 bosnjak2 kernel: HiSax: Elsa driver Rev. 2.20
Aug 10 08:53:27 bosnjak2 kernel: Elsa: QS 1000 PCI defined at 0x40c0/0x4000 IRQ 11
Aug 10 08:53:27 bosnjak2 kernel: Elsa: IPAC version 2
Aug 10 08:53:27 bosnjak2 kernel: Elsa PCI: IRQ 11 count 0
Aug 10 08:53:27 bosnjak2 kernel: Elsa PCI: IRQ 11 count 3
Aug 10 08:53:27 bosnjak2 kernel: HiSax: DSS1 Rev. 2.23
Aug 10 08:53:27 bosnjak2 kernel: HiSax: 2 channels added
Aug 10 08:53:27 bosnjak2 kernel: HiSax: MAX_WAITING_CALLS added
Aug 10 08:53:34 bosnjak2 PAM_pwdb[840]: (su) session closed for user root
Aug 10 08:53:43 bosnjak2 kernel: KLIC0: dialing 1 240034...
Aug 10 08:58:03 bosnjak2 syslogd 1.3-3: restart.
Aug 10 08:58:03 bosnjak2 syslog: syslogd startup succeeded
Aug 10 08:58:03 bosnjak2 syslog: klogd startup succeeded
... <snip> kernel init <snip> ...

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue Aug 15 2000 - 21:00:20 EST