Hello, all.

I'll apologize in advance for the length.  I was going to gzip the works, 
but figured having it all in the message would get more eyes looking at it.

Yes, it's the MediaGX thing again, but first I'd like to commend and thank 
the linux-usb developers!  The integrated USB controller on the MediaGX was 
having some real problems back in 2.2.18, and there's a incredible 
improvement between it and 2.4.2/2.4.3.  It does work with an ov511 camera 
now!  But, read on.

However, I'm still having some issues, and I don't know if it's MediaGX 
specific, or if it's a general deeper problem.  I'm running a MediaGX 233, 
64MB RAM, RH 6.2 with upgrades where needed to compile and run 2.4.x.

The "test" is a simple shell script to use vidcat to grab a frame about 
every 15 seconds.  The script is:

#!/bin/bash
while true; do
         echo "**Start Record**">>./intstat.txt
         echo `date`>>./intstat.txt
         cat /proc/interrupts|grep ohci>>./intstat.txt
         /usr/bin/vidcat -s 640x480 -f jpeg > ./test.jpg
         cp -f test.jpg /home/bradg
         echo `date`>>./intstat.txt
         cat /proc/interrupts|grep ohci>>./intstat.txt
         sleep 5
         echo `date`>>./intstat.txt
         cat /proc/interrupts|grep ohci>>./intstat.txt
         echo `ls -la test.jpg`>>./intstat.txt
         echo "**End Record**">>./intstat.txt
         echo "">>./intstat.txt
         sleep 15
done

I look at the interrupt status before grabbing, after grabbing, and then 
again 5 seconds later.  The reason for that is to see if the interrupt race 
starts as it did in 2.2.18.  Short answer, it doesn't any longer!

But, when the oops occurs, any further interrupts cease.

The oops is in the section of messages below, but here it is again:

Apr  1 22:07:48 localhost kernel: usb-ohci.c: unlink URB timeout
Apr  1 22:23:52 localhost kernel: usb-ohci.c: unlink URB timeout
Apr  2 08:30:43 localhost kernel: usb-ohci.c: unlink URB timeout
Apr  2 08:31:03 localhost kernel: Unable to handle kernel paging request at 
virtual address f30c0004
Apr  2 08:31:03 localhost kernel:  printing eip:
Apr  2 08:31:03 localhost kernel: c481041d
Apr  2 08:31:03 localhost kernel: *pde = 00000000
Apr  2 08:31:03 localhost kernel: Oops: 0000
Apr  2 08:31:03 localhost kernel: CPU:    0
Apr  2 08:31:03 localhost kernel: EIP:    0010:[<c481041d>]
Apr  2 08:31:03 localhost kernel: EFLAGS: 00010097
Apr  2 08:31:03 localhost kernel: eax: f30c0000   ebx: c0719ae0   ecx: 
00000000   edx: c0719af0
Apr  2 08:31:03 localhost kernel: esi: 00000002   edi: 00000000   ebp: 
00000002   esp: c2f5dd38
Apr  2 08:31:03 localhost kernel: ds: 0018   es: 0018   ss: 0018
Apr  2 08:31:03 localhost kernel: Process vidcat (pid: 19661, 
stackpage=c2f5d000)
Apr  2 08:31:03 localhost kernel: Stack: f3100000 00000002 c36a2120 
00000001 00000008 00000000 c4810711 f3100000
Apr  2 08:31:03 localhost kernel:        00000000 00000000 c36a2120 
00000002 00000202 c36a2120 c347c000 00000003
Apr  2 08:31:03 localhost kernel:        00000000 00000004 00000000 
c2f5deb7 c0719ae0 c347c000 c0719ae0 c480f5c8
Apr  2 08:31:03 localhost kernel: Call Trace: [<f3100000>] [<c4810711>] 
[<f3100000>] [<c480f5c8>] [<c4802f06>] [<c4803022>] [<c4803153>]
Apr  2 08:31:03 localhost kernel:        [tasklet_hi_action+60/96] 
[<c48031e2>] [<c4819842>] [<c4819cc8>] [<c481c77e>] [<c481ceb7>] 
[<c4816e20>] [<c48161a6>]
Apr  2 08:31:03 localhost kernel:        [permission+43/48] 
[chrdev_open+65/76] [dentry_open+191/332] [filp_open+71/80] 
[sys_open+56/180] [system_call+51/64]
Apr  2 08:31:03 localhost kernel:
Apr  2 08:31:03 localhost kernel: Code: 8b 40 04 24 f0 8b 4c 24 10 8d b0 00 
00 00 c0 89 34 11 8b 13
Apr  2 09:23:50 localhost PAM_pwdb[22120]: (login) session opened for user 
bradg by (uid=0)
Apr  2 09:24:11 localhost PAM_pwdb[22153]: (su) session opened for user 
root by bradg(uid=501)

Subsequent attempts at grabbing frames produce nothing.  When vidcat is run 
manually, it returns with "Can't open device /dev/video".

It worked for quite awhile, but ideally I need it to run 24/7.  Would 
periodically unloading and reloading the USB modules help the situation?

I should also note that when this first occurred, USB was compiled into the 
kernel.  As a test, I made it modular, and got the same results.  The 
information here is from the modular setup.  It reacts the same in 2.4.2, 
which was the initial test the night before 2.4.3 was released :)  Never fails.

Any ideas?  I won't touch the system yet (it's still up) in case someone 
would like additional diagnostic or /proc information.

Thanks!


Brad


"/usr/src/linux/.config" is:

#
# Automatically generated by make menuconfig: don't edit
#
CONFIG_X86=y
CONFIG_ISA=y
# CONFIG_SBUS is not set
CONFIG_UID16=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y

#
# Processor type and features
#
# CONFIG_M386 is not set
# CONFIG_M486 is not set
CONFIG_M586=y
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_X86_USE_STRING_486=y
CONFIG_X86_ALIGNMENT_16=y
# CONFIG_TOSHIBA is not set
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
# CONFIG_MATH_EMULATION is not set
# CONFIG_MTRR is not set
# CONFIG_SMP is not set
# CONFIG_X86_UP_IOAPIC is not set

#
# General setup
#
CONFIG_NET=y
# CONFIG_VISWS is not set
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_NAMES=y
# CONFIG_EISA is not set
# CONFIG_MCA is not set
CONFIG_HOTPLUG=y

#
# PCMCIA/CardBus support
#
# CONFIG_PCMCIA is not set
CONFIG_SYSVIPC=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_SYSCTL=y
CONFIG_KCORE_ELF=y
# CONFIG_KCORE_AOUT is not set
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=y
# CONFIG_PM is not set
# CONFIG_ACPI is not set
# CONFIG_APM is not set

#
# Memory Technology Devices (MTD)
#
CONFIG_MTD=m
# CONFIG_MTD_DEBUG is not set
# CONFIG_MTD_DOC1000 is not set
# CONFIG_MTD_DOC2000 is not set
# CONFIG_MTD_DOC2001 is not set
# CONFIG_MTD_DOCPROBE is not set
# CONFIG_MTD_SLRAM is not set
# CONFIG_MTD_PMC551 is not set
# CONFIG_MTD_MTDRAM is not set
CONFIG_MTD_CFI=m
CONFIG_MTD_CFI_INTELEXT=m
CONFIG_MTD_CFI_AMDSTD=m
# CONFIG_MTD_RAM is not set
# CONFIG_MTD_ROM is not set
# CONFIG_MTD_JEDEC is not set
# CONFIG_MTD_PHYSMAP is not set
# CONFIG_MTD_MIXMEM is not set
# CONFIG_MTD_NORA is not set
# CONFIG_MTD_OCTAGON is not set
# CONFIG_MTD_PNC2000 is not set
# CONFIG_MTD_RPXLITE is not set
# CONFIG_MTD_VMAX is not set
# CONFIG_MTD_CHAR is not set
# CONFIG_MTD_BLOCK is not set
CONFIG_FTL=m
CONFIG_NFTL=m
# CONFIG_NFTL_RW is not set

#
# Parallel port support
#
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
# CONFIG_PARPORT_PC_FIFO is not set
CONFIG_PARPORT_PC_SUPERIO=y
# CONFIG_PARPORT_AMIGA is not set
# CONFIG_PARPORT_MFC3 is not set
# CONFIG_PARPORT_ATARI is not set
# CONFIG_PARPORT_SUNBPP is not set
# CONFIG_PARPORT_OTHER is not set
# CONFIG_PARPORT_1284 is not set

#
# Plug and Play configuration
#
CONFIG_PNP=y
CONFIG_ISAPNP=y

#
# Block devices
#
CONFIG_BLK_DEV_FD=y
# CONFIG_BLK_DEV_XD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
CONFIG_BLK_DEV_LOOP=m
# CONFIG_BLK_DEV_NBD is not set
CONFIG_BLK_DEV_RAM=m
CONFIG_BLK_DEV_RAM_SIZE=4096
# CONFIG_BLK_DEV_INITRD is not set

#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set
# CONFIG_BLK_DEV_MD is not set
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_BLK_DEV_LVM is not set

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_NETLINK=y
CONFIG_RTNETLINK=y
CONFIG_NETLINK_DEV=y
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
# CONFIG_FILTER is not set
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=m
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_INET_ECN is not set
CONFIG_SYN_COOKIES=y

#
#   IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=m
CONFIG_IP_NF_FTP=m
CONFIG_IP_NF_QUEUE=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_LIMIT=m
CONFIG_IP_NF_MATCH_MAC=m
CONFIG_IP_NF_MATCH_MARK=m
CONFIG_IP_NF_MATCH_MULTIPORT=m
CONFIG_IP_NF_MATCH_TOS=m
# CONFIG_IP_NF_MATCH_TCPMSS is not set
CONFIG_IP_NF_MATCH_STATE=m
CONFIG_IP_NF_MATCH_UNCLEAN=m
CONFIG_IP_NF_MATCH_OWNER=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_MIRROR=m
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_REDIRECT=m
CONFIG_IP_NF_NAT_FTP=m
CONFIG_IP_NF_MANGLE=m
CONFIG_IP_NF_TARGET_TOS=m
CONFIG_IP_NF_TARGET_MARK=m
CONFIG_IP_NF_TARGET_LOG=m
# CONFIG_IP_NF_TARGET_TCPMSS is not set
CONFIG_IP_NF_COMPAT_IPCHAINS=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_COMPAT_IPFWADM=m
CONFIG_IP_NF_NAT_NEEDED=y
# CONFIG_IPV6 is not set
# CONFIG_KHTTPD is not set
# CONFIG_ATM is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_DECNET is not set
CONFIG_BRIDGE=m
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_LLC is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set
# CONFIG_PHONE_IXJ is not set

#
# ATA/IDE/MFM/RLL support
#
CONFIG_IDE=y

#
# IDE, ATA and ATAPI Block devices
#
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
# CONFIG_BLK_DEV_HD is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
# CONFIG_BLK_DEV_IDEDISK_VENDOR is not set
# CONFIG_BLK_DEV_IDEDISK_FUJITSU is not set
# CONFIG_BLK_DEV_IDEDISK_IBM is not set
# CONFIG_BLK_DEV_IDEDISK_MAXTOR is not set
# CONFIG_BLK_DEV_IDEDISK_QUANTUM is not set
# CONFIG_BLK_DEV_IDEDISK_SEAGATE is not set
# CONFIG_BLK_DEV_IDEDISK_WD is not set
# CONFIG_BLK_DEV_COMMERIAL is not set
# CONFIG_BLK_DEV_TIVO is not set
# CONFIG_BLK_DEV_IDECS is not set
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
# CONFIG_BLK_DEV_ISAPNP is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_IDEDMA_PCI_AUTO=y
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_PCI_WIP is not set
# CONFIG_IDEDMA_NEW_DRIVE_LISTINGS is not set
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_AEC62XX_TUNING is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_WDC_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD7409 is not set
# CONFIG_AMD7409_OVERRIDE is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_CY82C693 is not set
CONFIG_BLK_DEV_CS5530=y
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_HPT34X_AUTODMA is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_PIIX is not set
# CONFIG_PIIX_TUNING is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_PDC202XX is not set
# CONFIG_PDC202XX_BURST is not set
# CONFIG_BLK_DEV_OSB4 is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_CHIPSETS is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_IDEDMA_IVB is not set
# CONFIG_DMA_NONPCI is not set
CONFIG_BLK_DEV_IDE_MODES=y

#
# SCSI support
#
# CONFIG_SCSI is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_IEEE1394 is not set

#
# I2O device support
#
# CONFIG_I2O is not set
# CONFIG_I2O_PCI is not set
# CONFIG_I2O_BLOCK is not set
# CONFIG_I2O_LAN is not set
# CONFIG_I2O_SCSI is not set
# CONFIG_I2O_PROC is not set

#
# Network device support
#
CONFIG_NETDEVICES=y

#
# ARCnet devices
#
# CONFIG_ARCNET is not set
CONFIG_DUMMY=m
CONFIG_BONDING=m
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_ETHERTAP is not set
# CONFIG_NET_SB1000 is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set
# CONFIG_AT1700 is not set
# CONFIG_DEPCA is not set
# CONFIG_HP100 is not set
# CONFIG_NET_ISA is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_AC3200 is not set
# CONFIG_APRICOT is not set
# CONFIG_CS89x0 is not set
# CONFIG_TULIP is not set
# CONFIG_DE4X5 is not set
# CONFIG_DGRS is not set
# CONFIG_DM9102 is not set
CONFIG_EEPRO100=y
# CONFIG_EEPRO100_PM is not set
# CONFIG_LNE390 is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_NE3210 is not set
# CONFIG_ES3210 is not set
# CONFIG_8139TOO is not set
# CONFIG_8139TOO_PIO is not set
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_SIS900 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SUNDANCE is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_HAPPYMEAL is not set
# CONFIG_NET_POCKET is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_SK98LIN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
CONFIG_PPP=m
CONFIG_PPP_MULTILINK=y
CONFIG_PPP_ASYNC=m
# CONFIG_PPP_SYNC_TTY is not set
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
CONFIG_PPPOE=m
# CONFIG_SLIP is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
CONFIG_SHAPER=m

#
# Wan interfaces
#
# CONFIG_WAN is not set

#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set

#
# IrDA (infrared) support
#
# CONFIG_IRDA is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set

#
# Input core support
#
# CONFIG_INPUT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_SERIAL=y
# CONFIG_SERIAL_CONSOLE is not set
# CONFIG_SERIAL_EXTENDED is not set
# CONFIG_SERIAL_NONSTANDARD is not set
CONFIG_UNIX98_PTYS=y
CONFIG_UNIX98_PTY_COUNT=256
# CONFIG_PRINTER is not set
# CONFIG_PPDEV is not set

#
# I2C support
#
CONFIG_I2C=m
# CONFIG_I2C_ALGOBIT is not set
# CONFIG_I2C_ALGOPCF is not set
CONFIG_I2C_CHARDEV=m

#
# Mice
#
# CONFIG_BUSMOUSE is not set
CONFIG_MOUSE=y
CONFIG_PSMOUSE=y
# CONFIG_82C710_MOUSE is not set
# CONFIG_PC110_PAD is not set

#
# Joysticks
#
# CONFIG_JOYSTICK is not set
# CONFIG_QIC02_TAPE is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_INTEL_RNG is not set
# CONFIG_NVRAM is not set
CONFIG_RTC=m
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
# CONFIG_AGP is not set
# CONFIG_DRM is not set

#
# Multimedia devices
#
CONFIG_VIDEO_DEV=m

#
# Video For Linux
#
CONFIG_VIDEO_PROC_FS=y
# CONFIG_I2C_PARPORT is not set
# CONFIG_VIDEO_PMS is not set
# CONFIG_VIDEO_BWQCAM is not set
# CONFIG_VIDEO_CQCAM is not set
CONFIG_VIDEO_CPIA=m
CONFIG_VIDEO_CPIA_USB=m
# CONFIG_VIDEO_SAA5249 is not set
# CONFIG_TUNER_3036 is not set
# CONFIG_VIDEO_STRADIS is not set
# CONFIG_VIDEO_ZORAN is not set
# CONFIG_VIDEO_BUZ is not set
# CONFIG_VIDEO_ZR36120 is not set

#
# Radio Adapters
#
# CONFIG_RADIO_CADET is not set
# CONFIG_RADIO_RTRACK is not set
# CONFIG_RADIO_RTRACK2 is not set
# CONFIG_RADIO_AZTECH is not set
# CONFIG_RADIO_GEMTEK is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_MAESTRO is not set
# CONFIG_RADIO_MIROPCM20 is not set
# CONFIG_RADIO_SF16FMI is not set
# CONFIG_RADIO_TERRATEC is not set
# CONFIG_RADIO_TRUST is not set
# CONFIG_RADIO_TYPHOON is not set
# CONFIG_RADIO_ZOLTRIX is not set

#
# File systems
#
# CONFIG_QUOTA is not set
# CONFIG_AUTOFS_FS is not set
CONFIG_AUTOFS4_FS=y
# CONFIG_REISERFS_FS is not set
# CONFIG_REISERFS_CHECK is not set
# CONFIG_ADFS_FS is not set
# CONFIG_ADFS_FS_RW is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_BFS_FS is not set
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
# CONFIG_UMSDOS_FS is not set
CONFIG_VFAT_FS=m
# CONFIG_EFS_FS is not set
# CONFIG_JFFS_FS is not set
CONFIG_CRAMFS=m
CONFIG_RAMFS=m
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
# CONFIG_MINIX_FS is not set
# CONFIG_NTFS_FS is not set
# CONFIG_NTFS_RW is not set
# CONFIG_HPFS_FS is not set
CONFIG_PROC_FS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVFS_MOUNT is not set
# CONFIG_DEVFS_DEBUG is not set
CONFIG_DEVPTS_FS=y
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX4FS_RW is not set
CONFIG_ROMFS_FS=m
CONFIG_EXT2_FS=y
# CONFIG_SYSV_FS is not set
# CONFIG_SYSV_FS_WRITE is not set
# CONFIG_UDF_FS is not set
# CONFIG_UDF_RW is not set
# CONFIG_UFS_FS is not set
# CONFIG_UFS_FS_WRITE is not set

#
# Network File Systems
#
# CONFIG_CODA_FS is not set
CONFIG_NFS_FS=y
# CONFIG_NFS_V3 is not set
# CONFIG_ROOT_NFS is not set
CONFIG_NFSD=y
# CONFIG_NFSD_V3 is not set
CONFIG_SUNRPC=y
CONFIG_LOCKD=y
CONFIG_SMB_FS=m
# CONFIG_SMB_NLS_DEFAULT is not set
# CONFIG_NCP_FS is not set
# CONFIG_NCPFS_PACKET_SIGNING is not set
# CONFIG_NCPFS_IOCTL_LOCKING is not set
# CONFIG_NCPFS_STRONG is not set
# CONFIG_NCPFS_NFS_NS is not set
# CONFIG_NCPFS_OS2_NS is not set
# CONFIG_NCPFS_SMALLDOS is not set
# CONFIG_NCPFS_NLS is not set
# CONFIG_NCPFS_EXTRAS is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_SMB_NLS=y
CONFIG_NLS=y

#
# Native Language Support
#
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=m
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
CONFIG_NLS_ISO8859_1=m
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_UTF8 is not set

#
# Console drivers
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VIDEO_SELECT is not set
# CONFIG_MDA_CONSOLE is not set

#
# Frame-buffer support
#
# CONFIG_FB is not set

#
# Sound
#
# CONFIG_SOUND is not set

#
# USB support
#
CONFIG_USB=m
# CONFIG_USB_DEBUG is not set
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_UHCI is not set
# CONFIG_USB_UHCI_ALT is not set
CONFIG_USB_OHCI=m
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH is not set
# CONFIG_USB_STORAGE is not set
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
# CONFIG_USB_DC2XX is not set
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_SCANNER is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_IBMCAM is not set
CONFIG_USB_OV511=m
# CONFIG_USB_DSBR is not set
# CONFIG_USB_DABUSB is not set
# CONFIG_USB_PLUSB is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_NET1080 is not set
# CONFIG_USB_USS720 is not set

#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set
# CONFIG_USB_RIO500 is not set

#
# Kernel hacking
#
CONFIG_MAGIC_SYSRQ=y


'ps aux' output:

USER       PID %CPU %MEM   VSZ  RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.7  1120  476 ?        S    Apr01   0:03 init
root         2  0.0  0.0     0    0 ?        SW   Apr01   0:00 [keventd]
root         3  0.0  0.0     0    0 ?        SW   Apr01   0:00 [kswapd]
root         4  0.0  0.0     0    0 ?        SW   Apr01   0:00 [kreclaimd]
root         5  0.0  0.0     0    0 ?        SW   Apr01   0:00 [bdflush]
root         6  0.0  0.0     0    0 ?        SW   Apr01   0:00 [kupdated]
root       372  0.0  0.8  1172  504 ?        S    Apr01   0:00 syslogd -m 0
root       381  0.0  1.6  1640  992 ?        S    Apr01   0:01 klogd
daemon     395  0.0  0.5  1144  348 ?        S    Apr01   0:00 /usr/sbin/atd
root       409  0.0  0.9  1328  568 ?        S    Apr01   0:00 crond
root       448  0.0  0.7  1156  468 ?        S    Apr01   0:00 inetd
root       466  0.0  0.6  1092  388 tty2     S    Apr01   0:00 
/sbin/mingetty tt
root       467  0.0  0.6  1092  388 tty3     S    Apr01   0:00 
/sbin/mingetty tt
root       468  0.0  0.6  1092  388 tty4     S    Apr01   0:00 
/sbin/mingetty tt
root       471  0.0  0.6  1092  388 tty5     S    Apr01   0:00 
/sbin/mingetty tt
root       472  0.0  0.6  1092  388 tty6     S    Apr01   0:00 
/sbin/mingetty tt
root       498  0.0  0.0     0    0 ?        SW   Apr01   0:00 [khubd]
root       509  0.3  1.2  1660  792 ?        S    Apr01   3:19 /bin/bash ./cap
root     13467  0.0  0.6  1092  388 tty1     S    Apr01   0:00 
/sbin/mingetty tt
root     22119  0.1  1.2  1464  752 ?        S    09:23   0:00 in.telnetd: 
65.16
root     22120  0.1  1.8  2252 1124 pts/0    S    09:23   0:00 login -- 
bradg
bradg    22127  0.1  1.5  1692  932 pts/0    S    09:23   0:00 -bash
root     22153  0.1  1.8  2160 1108 pts/0    S    09:23   0:00 su
root     22161  0.1  1.5  1736  972 pts/0    S    09:24   0:00 bash
root     22288  0.2  0.7  1236  440 ?        S    09:26   0:00 sleep 15
root     22289  0.0  1.1  2328  696 pts/0    R    09:26   0:00 ps aux


Apr  1 15:46:43 localhost kernel: Loaded 13464 symbols from /boot/System.map.
Apr  1 15:46:43 localhost kernel: Symbols match kernel version 2.4.3.
Apr  1 15:46:43 localhost kernel: No module symbols loaded.
Apr  1 15:46:43 localhost kernel: Linux version 2.4.3 (root@murray-1-1) 
(gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)) #1 Sat Mar 
31 20:52:11 CST 2001
Apr  1 15:46:43 localhost kernel: BIOS-provided physical RAM map:
Apr  1 15:46:43 localhost kernel:  BIOS-e820: 0000000000000000 - 
000000000009fc00 (usable)
Apr  1 15:46:43 localhost kernel:  BIOS-e820: 000000000009fc00 - 
00000000000a0000 (reserved)
Apr  1 15:46:43 localhost kernel:  BIOS-e820: 00000000000f0000 - 
0000000000100000 (reserved)
Apr  1 15:46:43 localhost kernel:  BIOS-e820: 00000000ffff0000 - 
0000000100000000 (reserved)
Apr  1 15:46:43 localhost kernel:  BIOS-e820: 0000000000100000 - 
0000000003e80000 (usable)
Apr  1 15:46:43 localhost kernel: On node 0 totalpages: 16000
Apr  1 15:46:43 localhost kernel: zone(0): 4096 pages.
Apr  1 15:46:43 localhost kernel: zone(1): 11904 pages.
Apr  1 15:46:43 localhost kernel: zone(2): 0 pages.
Apr  1 15:46:43 localhost kernel: Kernel command line: BOOT_IMAGE=linux ro 
root=301
Apr  1 15:46:43 localhost kernel: Initializing CPU#0
Apr  1 15:46:43 localhost kernel: Working around Cyrix MediaGX virtual DMA 
bugs.
Apr  1 15:46:43 localhost kernel: Console: colour VGA+ 80x25
Apr  1 15:46:43 localhost kernel: Calibrating delay loop... 51.81 BogoMIPS
Apr  1 15:46:43 localhost kernel: Memory: 60808k/64000k available (944k 
kernel code, 2804k reserved, 342k data, 176k init, 0k highmem)
Apr  1 15:46:43 localhost kernel: Checking if this processor honours the WP 
bit even in supervisor mode... Ok.
Apr  1 15:46:43 localhost kernel: Dentry-cache hash table entries: 8192 
(order: 4, 65536 bytes)
Apr  1 15:46:43 localhost kernel: Buffer-cache hash table entries: 1024 
(order: 0, 4096 bytes)
Apr  1 15:46:43 localhost kernel: Page-cache hash table entries: 16384 
(order: 4, 65536 bytes)
Apr  1 15:46:43 localhost kernel: Inode-cache hash table entries: 4096 
(order: 3, 32768 bytes)
Apr  1 15:46:43 localhost kernel: Working around Cyrix MediaGX virtual DMA 
bugs.
Apr  1 15:46:43 localhost kernel: CPU: Cyrix MediaGXtm MMXtm Enhanced 
stepping 04
Apr  1 15:46:43 localhost kernel: Checking 'hlt' instruction... OK.
Apr  1 15:46:43 localhost kernel: POSIX conformance testing by UNIFIX
Apr  1 15:46:43 localhost kernel: PCI: PCI BIOS revision 2.10 entry at 
0xfb2c0, last bus=0
Apr  1 15:46:43 localhost kernel: PCI: Using configuration type 1
Apr  1 15:46:43 localhost kernel: PCI: Probing PCI hardware
Apr  1 15:46:43 localhost kernel: PCI: Using IRQ router NatSemi [1078/0100] 
at 00:12.0
Apr  1 15:46:43 localhost kernel: isapnp: Scanning for Pnp cards...
Apr  1 15:46:43 localhost kernel: isapnp: No Plug & Play device found
Apr  1 15:46:43 localhost kernel: Linux NET4.0 for Linux 2.4
Apr  1 15:46:43 localhost kernel: Based upon Swansea University Computer 
Society NET3.039
Apr  1 15:46:43 localhost kernel: Initializing RT netlink socket
Apr  1 15:46:43 localhost kernel: Starting kswapd v1.8
Apr  1 15:46:43 localhost kernel: pty: 256 Unix98 ptys configured
Apr  1 15:46:43 localhost kernel: block: queued sectors max/low 
40338kB/13446kB, 128 slots per queue
Apr  1 15:46:43 localhost kernel: Uniform Multi-Platform E-IDE driver 
Revision: 6.31
Apr  1 15:46:43 localhost kernel: ide: Assuming 33MHz system bus speed for 
PIO modes; override with idebus=xx
Apr  1 15:46:43 localhost kernel: CS5530: IDE controller on PCI bus 00 dev 92
Apr  1 15:46:43 localhost kernel: CS5530: chipset revision 0
Apr  1 15:46:43 localhost kernel: CS5530: not 100%% native mode: will probe 
irqs later
Apr  1 15:46:43 localhost kernel:     ide0: BM-DMA at 0xf000-0xf007, BIOS 
settings: hda:DMA, hdb:pio
Apr  1 15:46:43 localhost kernel:     ide1: BM-DMA at 0xf008-0xf00f, BIOS 
settings: hdc:pio, hdd:pio
Apr  1 15:46:43 localhost kernel: hda: ST38410A, ATA DISK drive
Apr  1 15:46:43 localhost kernel: hdc: SanDisk SDCFB-32, ATA DISK drive
Apr  1 15:46:43 localhost kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Apr  1 15:46:43 localhost kernel: ide1 at 0x170-0x177,0x376 on irq 15 
(serialized with ide0)
Apr  1 15:46:43 localhost kernel: hda: cs5530_set_xfer_mode(UDMA 2)
Apr  1 15:46:43 localhost kernel: hda: 16841664 sectors (8623 MB) w/512KiB 
Cache, CHS=1048/255/63, UDMA(33)
Apr  1 15:46:43 localhost kernel: hdc: 62720 sectors (32 MB) w/1KiB Cache, 
CHS=490/4/32
Apr  1 15:46:43 localhost kernel: Partition check:
Apr  1 15:46:43 localhost kernel:  hda: hda1
Apr  1 15:46:43 localhost kernel:  hdc: hdc1
Apr  1 15:46:43 localhost kernel: FDC 0 is a post-1991 82077
Apr  1 15:46:43 localhost kernel: Serial driver version 5.05 (2000-12-13) 
with MANY_PORTS SHARE_IRQ SERIAL_PCI ISAPNP enabled
Apr  1 15:46:43 localhost kernel: ttyS00 at 0x03f8 (irq = 4) is a 16550A
Apr  1 15:46:43 localhost kernel: ttyS01 at 0x02f8 (irq = 3) is a 16550A
Apr  1 15:46:43 localhost kernel: eepro100.c:v1.09j-t 9/29/99 Donald Becker 
http://cesdis.gsfc.nasa.gov/linux/drivers/eepro100.html
Apr  1 15:46:43 localhost kernel: eepro100.c: $Revision: 1.36 $ 2000/11/17 
Modified by Andrey V. Savochkin <[EMAIL PROTECTED]> and others
Apr  1 15:46:43 localhost kernel: PCI: Found IRQ 10 for device 00:0e.0
Apr  1 15:46:43 localhost kernel: eth0: OEM i82557/i82558 10/100 Ethernet, 
00:E0:4C:80:00:82, IRQ 10.
Apr  1 15:46:43 localhost kernel:   Receiver lock-up bug exists -- enabling 
work-around.
Apr  1 15:46:43 localhost inet: inetd startup succeeded
Apr  1 15:46:43 localhost kernel:   Board assembly 727095-002, Physical 
connectors present: RJ45
Apr  1 15:46:43 localhost kernel:   Primary interface chip i82555 PHY #1.
Apr  1 15:46:43 localhost kernel:   General self-test: passed.
Apr  1 15:46:43 localhost kernel:   Serial sub-system self-test: passed.
Apr  1 15:46:43 localhost kernel:   Internal registers self-test: passed.
Apr  1 15:46:43 localhost kernel:   ROM checksum self-test: passed 
(0xdbd8681d).
Apr  1 15:46:43 localhost kernel:   Receiver lock-up workaround activated.
Apr  1 15:46:43 localhost kernel: NET4: Linux TCP/IP 1.0 for NET4.0
Apr  1 15:46:43 localhost kernel: IP Protocols: ICMP, UDP, TCP, IGMP
Apr  1 15:46:43 localhost kernel: IP: routing cache hash table of 512 
buckets, 4Kbytes
Apr  1 15:46:43 localhost kernel: TCP: Hash tables configured (established 
4096 bind 4096)
Apr  1 15:46:43 localhost kernel: NET4: Unix domain sockets 1.0/SMP for 
Linux NET4.0.
Apr  1 15:46:43 localhost kernel: VFS: Mounted root (ext2 filesystem) 
readonly.
Apr  1 15:46:43 localhost kernel: Freeing unused kernel memory: 176k freed
Apr  1 15:46:43 localhost kernel:  hdc: hdc1
Apr  1 15:46:43 localhost last message repeated 2 times
Apr  1 15:46:58 localhost PAM_pwdb[465]: (login) session opened for user 
root by LOGIN(uid=0)
Apr  1 15:47:10 localhost kernel: usb.c: registered new driver usbdevfs
Apr  1 15:47:10 localhost kernel: usb.c: registered new driver hub
Apr  1 15:47:10 localhost kernel: PCI: Found IRQ 11 for device 00:13.0
Apr  1 15:47:10 localhost kernel: usb-ohci.c: USB OHCI at membase 
0xc4814000, IRQ 11
Apr  1 15:47:10 localhost kernel: usb-ohci.c: usb-00:13.0, Compaq Computer 
Corporation USB Open Host Controller
Apr  1 15:47:10 localhost kernel: usb.c: new USB bus registered, assigned 
bus number 1
Apr  1 15:47:10 localhost kernel: hub.c: USB hub found
Apr  1 15:47:10 localhost kernel: hub.c: 2 ports detected
Apr  1 15:47:10 localhost kernel: Linux video capture interface: v1.00
Apr  1 15:47:10 localhost kernel: usb.c: registered new driver ov511
Apr  1 15:47:10 localhost kernel: ov511.c: ov511 driver version 1.28 
registered
Apr  1 15:47:10 localhost kernel: hub.c: USB new device connect on bus1/1, 
assigned device number 2
Apr  1 15:47:10 localhost kernel: ov511.c: USB OV511 camera found
Apr  1 15:47:10 localhost kernel: ov511.c: camera: D-Link DSB-C300
Apr  1 15:47:11 localhost kernel: ov511.c: Sensor is an OV7610
Apr  1 15:48:23 localhost PAM_pwdb[465]: (login) session closed for user root
Apr  1 22:07:48 localhost kernel: usb-ohci.c: unlink URB timeout
Apr  1 22:23:52 localhost kernel: usb-ohci.c: unlink URB timeout
Apr  2 08:30:43 localhost kernel: usb-ohci.c: unlink URB timeout
Apr  2 08:31:03 localhost kernel: Unable to handle kernel paging request at 
virtual address f30c0004
Apr  2 08:31:03 localhost kernel:  printing eip:
Apr  2 08:31:03 localhost kernel: c481041d
Apr  2 08:31:03 localhost kernel: *pde = 00000000
Apr  2 08:31:03 localhost kernel: Oops: 0000
Apr  2 08:31:03 localhost kernel: CPU:    0
Apr  2 08:31:03 localhost kernel: EIP:    0010:[<c481041d>]
Apr  2 08:31:03 localhost kernel: EFLAGS: 00010097
Apr  2 08:31:03 localhost kernel: eax: f30c0000   ebx: c0719ae0   ecx: 
00000000   edx: c0719af0
Apr  2 08:31:03 localhost kernel: esi: 00000002   edi: 00000000   ebp: 
00000002   esp: c2f5dd38
Apr  2 08:31:03 localhost kernel: ds: 0018   es: 0018   ss: 0018
Apr  2 08:31:03 localhost kernel: Process vidcat (pid: 19661, 
stackpage=c2f5d000)
Apr  2 08:31:03 localhost kernel: Stack: f3100000 00000002 c36a2120 
00000001 00000008 00000000 c4810711 f3100000
Apr  2 08:31:03 localhost kernel:        00000000 00000000 c36a2120 
00000002 00000202 c36a2120 c347c000 00000003
Apr  2 08:31:03 localhost kernel:        00000000 00000004 00000000 
c2f5deb7 c0719ae0 c347c000 c0719ae0 c480f5c8
Apr  2 08:31:03 localhost kernel: Call Trace: [<f3100000>] [<c4810711>] 
[<f3100000>] [<c480f5c8>] [<c4802f06>] [<c4803022>] [<c4803153>]
Apr  2 08:31:03 localhost kernel:        [tasklet_hi_action+60/96] 
[<c48031e2>] [<c4819842>] [<c4819cc8>] [<c481c77e>] [<c481ceb7>] 
[<c4816e20>] [<c48161a6>]
Apr  2 08:31:03 localhost kernel:        [permission+43/48] 
[chrdev_open+65/76] [dentry_open+191/332] [filp_open+71/80] 
[sys_open+56/180] [system_call+51/64]
Apr  2 08:31:03 localhost kernel:
Apr  2 08:31:03 localhost kernel: Code: 8b 40 04 24 f0 8b 4c 24 10 8d b0 00 
00 00 c0 89 34 11 8b 13
Apr  2 09:23:50 localhost PAM_pwdb[22120]: (login) session opened for user 
bradg by (uid=0)
Apr  2 09:24:11 localhost PAM_pwdb[22153]: (su) session opened for user 
root by bradg(uid=501)


'cat /proc/modules' shows:

ov511                  39264   1
videodev                4640   2 [ov511]
usb-ohci               14992   0 (unused)
usbcore                48048   0 [ov511 usb-ohci]


'cat /proc/pci' shows:

PCI devices found:
   Bus  0, device   0, function  0:
     Host bridge: Cyrix Corporation PCI Master (rev 0).
   Bus  0, device  14, function  0:
     Ethernet controller: Intel Corporation 82559ER (rev 9).
       IRQ 10.
       Master Capable.  Latency=32.  Min Gnt=8.Max Lat=56.
       Non-prefetchable 32 bit memory at 0xd9020000 [0xd9020fff].
       I/O at 0xe000 [0xe03f].
       Non-prefetchable 32 bit memory at 0xd9000000 [0xd901ffff].
   Bus  0, device  18, function  0:
     ISA bridge: Cyrix Corporation 5530 Legacy [Kahlua] (rev 0).
   Bus  0, device  18, function  1:
     Bridge: Cyrix Corporation 5530 SMI [Kahlua] (rev 0).
       Non-prefetchable 32 bit memory at 0x40012000 [0x400120ff].
   Bus  0, device  18, function  2:
     IDE interface: Cyrix Corporation 5530 IDE [Kahlua] (rev 0).
       I/O at 0xf000 [0xf00f].
   Bus  0, device  18, function  3:
     Multimedia audio controller: Cyrix Corporation 5530 Audio [Kahlua] 
(rev 0).
       Non-prefetchable 32 bit memory at 0x40011000 [0x4001107f].
   Bus  0, device  18, function  4:
     VGA compatible controller: Cyrix Corporation 5530 Video [Kahlua] (rev 0).
       Non-prefetchable 32 bit memory at 0x40800000 [0x40ffffff].
   Bus  0, device  19, function  0:
     USB Controller: Compaq Computer Corporation USB Open Host Controller 
(rev 6).
       IRQ 11.
       Master Capable.  Latency=32.  Max Lat=80.
       Non-prefetchable 32 bit memory at 0xd9024000 [0xd9024fff].


'cat /proc/meminfo' shows:

         total:    used:    free:  shared: buffers:  cached:
Mem:  62447616 60739584  1708032        0  9572352  4747264
Swap:        0        0        0
MemTotal:        60984 kB
MemFree:          1668 kB
MemShared:           0 kB
Buffers:          9348 kB
Cached:           4636 kB
Active:           2484 kB
Inact_dirty:     10496 kB
Inact_clean:      1004 kB
Inact_target:        4 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:        60984 kB
LowFree:          1668 kB
SwapTotal:           0 kB
SwapFree:            0 kB


'cat /proc/slabinfo' shows:

slabinfo - version: 1.1
kmem_cache            56     78    100    2    2    1
nfs_read_data          0      0    384    0    0    1
nfs_write_data         0      0    384    0    0    1
nfs_page               0      0     96    0    0    1
tcp_tw_bucket          0      0     96    0    0    1
tcp_bind_bucket        3    113     32    1    1    1
tcp_open_request       0     59     64    0    1    1
inet_peer_cache        0      0     64    0    0    1
ip_fib_hash           11    113     32    1    1    1
ip_dst_cache          21     48    160    2    2    1
arp_cache              1     30    128    1    1    1
blkdev_requests      384    400     96   10   10    1
dnotify cache          0      0     20    0    0    1
file lock cache        2     42     92    1    1    1
fasync cache           0      0     16    0    0    1
uid_cache              1    113     32    1    1    1
skbuff_head_cache     51     72    160    3    3    1
sock                  13     15    800    3    3    1
inode_cache        64888  64896    480 8111 8112    1
bdev_cache          3444   3481     64   59   59    1
sigqueue               0     29    132    0    1    1
kiobuf                 0      0    128    0    0    1
dentry_cache       42240  42270    128 1408 1409    1
filp                 188    200     96    5    5    1
names_cache            1      2   4096    1    2    1
buffer_head         3258   6200     96  147  155    1
mm_struct             20     24    160    1    1    1
vm_area_struct       362    413     64    7    7    1
fs_cache              19     59     64    1    1    1
files_cache           19     27    416    3    3    1
signal_act            22     24   1312    8    8    1
size-131072(DMA)       0      0 131072    0    0   32
size-131072            0      0 131072    0    0   32
size-65536(DMA)        0      0  65536    0    0   16
size-65536             0      0  65536    0    0   16
size-32768(DMA)        0      0  32768    0    0    8
size-32768             0      0  32768    0    0    8
size-16384(DMA)        0  Segmentation fault


'cat /proc/interrupts' shows:

            CPU0
   0:    6372656          XT-PIC  timer
   1:       1151          XT-PIC  keyboard
   2:          0          XT-PIC  cascade
  10:      38113          XT-PIC  eth0
  11:    4355919          XT-PIC  usb-ohci
  14:      37864          XT-PIC  ide0
  15:        588          XT-PIC  ide1
NMI:          0
ERR:          0




_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
http://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to