Re: New ATA drivers problem? (Was: New kernels won't boot)

1999-05-03 Thread Soren Schmidt
It seems Stephen Hocking-Senior Programmer PGS Tensor Perth wrote:
 Soren, I did a bit of experimenting with my CVS archive and found that 
 version 
 1.8 of ata-all.c was the last one that worked on my problem box. 1.9 spewed 
 out errors about unexpected interrupts whilst probing and eventually hung, 
 and 
 1.10 gave the unable to mount wd0s2a errors we all love.

Hmm, since the only changes are those to support newbus, thats probably
where we should find the problem. There has been a fair number of other
reports of sound not working etc etc, it might be that we have a problem
here with certain HW. COuld you mail me a verbose dmesg when you have the
1.8 and when the 1.10 version ??

-Søren


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



bridge+dummynet + sysctl -a panics in -current

1999-05-03 Thread Alfred Perlstein

a box with de and xl interfaces plus BRIDGE and DUMMYNET compiled in,
doing a sysctl -a will panic the box.  (currproc == sysctl)

i have both bridging and ipfw enabled on the bridged packets,
my de0 card has no ip and my xl0 card does.

if you aren't easily able to reproduce it, i'll try harder, i've
just been quite busy.

This is on -current as of a few days ago, and is still a problem on
-current today 5/2/99

Also, could someone consider this patch to the rc system to enable
bridging in network_pass1() ?

Index: rc.network
===
RCS file: /home/ncvs/src/etc/rc.network,v
retrieving revision 1.44
diff -u -r1.44 rc.network
--- rc.network  1999/04/12 15:26:41 1.44
+++ rc.network  1999/05/03 10:41:06
@@ -50,6 +50,18 @@
fi
 done
 
+# Enable bridging.
+if [ x$bridge_enable = xYES ]; then
+   sysctl -w net.link.ether.bridge=1 /dev/null 21
+   echo -n Bridging started
+   # IPFW the bridged packets.
+   if [ x$bridge_enable_ipfw = xYES ]; then
+   sysctl -w net.link.ether.bridge_ipfw=1 /dev/null 21
+   echo -n , filtering with ipfw enabled
+   fi
+   echo .
+fi
+
 # Set up all the network interfaces, calling startup scripts if needed
 for ifn in ${network_interfaces}; do
if [ -e /etc/start_if.${ifn} ]; then
Index: defaults/rc.conf
===
RCS file: /home/ncvs/src/etc/defaults/rc.conf,v
retrieving revision 1.8
diff -u -r1.8 rc.conf
--- rc.conf 1999/04/10 10:56:56 1.8
+++ rc.conf 1999/05/03 10:42:11
@@ -35,6 +35,8 @@
 firewall_script=/etc/rc.firewall # Which script to run to set up the firewall
 firewall_type=UNKNOWN# Firewall type (see /etc/rc.firewall)
 firewall_quiet=NO# Set to YES to suppress rule display
+bridge_enable=NO # Enable bridging, YES == enabled
+bridge_enable_ipfw=NO# Filter bridged packets, YES == 
enabled 
 natd_program=/sbin/natd  # path to natd, if you want a different one.
 natd_enable=NO# Enable natd (if firewall_enable == YES).
 natd_interface=fxp0   # Public interface or IPaddress to use.

thanks,
-Alfred 

kernel config file:

machine i386
cpu I486_CPU
cpu I586_CPU
cpu I686_CPU
ident   router
maxusers128

options INCLUDE_CONFIG_FILE # Include this file in kernel

#CPU/Machine Options
options NO_F00F_HACK
options AUTO_EOI_1
options AUTO_EOI_2
options VESA
options VM86
options USER_LDT#allow user-level control of i386 ldt
options KTRACE  #kernel tracing
options PERFMON

options DDB

options P1003_1B
options _KPOSIX_PRIORITY_SCHEDULING
options _KPOSIX_VERSION=199309L

#File systems
options FDESC   #File descriptor filesystem
options KERNFS  #Kernel filesystem
options UMAPFS  #UID map filesystem
options NULLFS  #NULL filesystem
options MFS #Memory File System

options INET#InterNETworking
options FFS #Berkeley Fast Filesystem
options SOFTUPDATES
options NFS #Network Filesystem
options MSDOSFS #MSDOS Filesystem
options CD9660#ISO 9660 Filesystem
options FFS_ROOT#FFS usable as root device [keep this!]
options PROCFS  #Process filesystem
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
options SCSI_DELAY=6000 #Be pessimistic about Joe SCSI device
options UCONSOLE#Allow users to grab the console
#optionsFAILSAFE#Be conservative
options USERCONFIG  #boot -c editor
options VISUAL_USERCONFIG   #visual boot -c editor

options KTRACE  #kernel tracing 

options SYSVSHM
options SYSVSEM
options SYSVMSG

options MAXDSIZ=(256*1024*1024)
options DFLDSIZ=(256*1024*1024)

options IPFIREWALL  #firewall
options IPFIREWALL_VERBOSE  #print information about
options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default
options ICMP_BANDLIM
options DUMMYNET
options BRIDGE


config  kernel  root on wd0

#Devices
controller  isa0
controller  eisa0
controller  pci0

controller  fdc0at isa? port IO_FD1 irq 6 drq 2 
diskfd0 at fdc0 drive 0
diskfd1 at fdc0 drive 1
#tape   ft0 at fdc0 drive 2

#IDE
controller ata0
device atadisk0# ATA disk drives
device atapicd0# 

Re: ppbus causes hangs?

1999-05-03 Thread Don Lewis
On Apr 29,  7:41pm, Mike Smith wrote:
} Subject: Re: ppbus causes hangs?
} 
} Try setting the flags on the 'ppc' device to 0x40 and _please_ report 
} the results.

I also ran into this problem with a 4/30/1999 version of 3.1-stable
on a Dell Dimension XPS R400.  The 0x40 flag fixed the problem.

BTW, the UPDATING file on the RELENG_3 branch hasn't been updated
since the branch point, so there is no info on the ppbus stuff and
the post-branch enhancements to the loader.  Also, src/sys/boot/README
hasn't been added to the RELENG_3 branch.


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: ppbus causes hangs?

1999-05-03 Thread Don Lewis
On May 2, 11:58pm, Don Lewis wrote:
} Subject: Re: ppbus causes hangs?
} On Apr 29,  7:41pm, Mike Smith wrote:
} } Subject: Re: ppbus causes hangs?
} } 
} } Try setting the flags on the 'ppc' device to 0x40 and _please_ report 
} } the results.
} 
} I also ran into this problem with a 4/30/1999 version of 3.1-stable
} on a Dell Dimension XPS R400.  The 0x40 flag fixed the problem.

I forgot to include /var/run/dmesg.boot.

Copyright (c) 1992-1999 FreeBSD Inc.
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
FreeBSD 3.1-STABLE #1: Fri Apr 30 22:18:51 PDT 1999
gd...@gvpc85.gv.tsc.tdk.com:/usr/src/sys/compile/TSC_INTERNAL
Timecounter i8254  frequency 1193182 Hz
CPU: Pentium II/Xeon/Celeron (398.27-MHz 686-class CPU)
  Origin = GenuineIntel  Id = 0x652  Stepping=2
  
Features=0x183f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,b24
real memory  = 67108864 (65536K bytes)
config di wt0
config di mcd0
config di matcdc0
config di scd0
config di ie0
config di aha0
avail memory = 62017536 (60564K bytes)
Preloaded elf kernel kernel at 0xc031c000.
Preloaded userconfig_script /boot/kernel.conf at 0xc031c09c.
Probing for devices on PCI bus 0:
chip0: Intel 82443BX host to PCI bridge rev 0x03 on pci0.0.0
chip1: Intel 82443BX host to AGP bridge rev 0x03 on pci0.1.0
chip2: Intel 82371AB PCI to ISA bridge rev 0x02 on pci0.7.0
ide_pci0: Intel PIIX4 Bus-master IDE controller rev 0x01 on pci0.7.1
chip3: Intel 82371AB Power management controller rev 0x02 on pci0.7.3
fxp0: Intel EtherExpress Pro 10/100B Ethernet rev 0x02 int a irq 11 on 
pci0.13.0
fxp0: Ethernet address 00:a0:c9:75:7c:8f
fxp1: Intel EtherExpress Pro 10/100B Ethernet rev 0x02 int a irq 15 on 
pci0.15.0
fxp1: Ethernet address 00:a0:c9:75:7b:99
ahc0: Adaptec 2940 Ultra2 SCSI adapter rev 0x00 int a irq 9 on pci0.16.0
ahc0: aic7890/91 Wide Channel A, SCSI Id=7, 16/255 SCBs
Probing for devices on PCI bus 1:
vga0: VGA-compatible display device rev 0x21 int a irq 11 on pci1.0.0
Probing for devices on the ISA bus:
sc0 on isa
sc0: VGA color 16 virtual consoles, flags=0x0
ed0 not found at 0x280
atkbdc0 at 0x60-0x6f on motherboard
atkbd0 irq 1 on isa
psm0 not found
sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa
sio0: type 16550A
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1 not found at 0x2f8
ppc0 at 0x378 irq 7 flags 0x40 on isa
ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode
lpt0: generic printer on ppbus 0
lpt0: Interrupt-driven port
ppi0: generic parallel i/o on ppbus 0
plip0: PLIP network interface on ppbus 0
lpt0: generic printer on ppbus 0
lpt0: Interrupt-driven port
fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa
fdc0: FIFO enabled, 8 bytes threshold
fd0: 1.44MB 3.5in
wdc0 not found at 0x1f0
wdc1 not found at 0x170
vga0 at 0x3b0-0x3df maddr 0xa msize 131072 on isa
npx0 on motherboard
npx0: INT 16 interface
Waiting 2 seconds for SCSI devices to settle
changing root device to da0s1a
da1 at ahc0 bus 0 target 1 lun 0
da1: QUANTUM VIKING II 9.1WLS 5520 Fixed Direct Access SCSI-2 device 
da1: 40.000MB/s transfers (20.000MHz, offset 31, 16bit), Tagged Queueing Enabled
da1: 8709MB (17836668 512 byte sectors: 255H 63S/T 1110C)
da0 at ahc0 bus 0 target 0 lun 0
da0: SEAGATE ST32151N 0590 Fixed Direct Access SCSI-2 device 
da0: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled
da0: 2049MB (4197405 512 byte sectors: 255H 63S/T 261C)
ffs_mountfs: superblock updated for soft updates


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Porting Greg Lehey's rawio.c from FreeBSD to Linux...

1999-05-03 Thread Brad Knowles
On Sat, May 1, 1999, Greg Lehey g...@lemis.com wrote:

I don't really understand why you ask a FreeBSD group about it; it's a
Linux issue.

BTW, I asked here in addition to many other places, including the
linux-kernel mailing list, comp.os.linux.misc, and at least one person
who's got some other Linux benchmarking tools and is relatively
knowledgable on the subject.  This is just the first place I've asked
where I've gotten any semi-intelligble answers so far.

-- 
Brad Knowles b...@shub-internet.org http://www.shub-internet.org/brad/
http://wwwkeys.pgp.net:11371/pks/lookup?op=getsearch=0xE38CCEF1

Your mouse has moved.   Windows NT must be restarted for the change to
take effect.   Reboot now?  [ OK ]



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Porting Greg Lehey's rawio.c from FreeBSD to Linux...

1999-05-03 Thread John Birrell
Brad Knowles wrote:
 On Sat, May 1, 1999, Greg Lehey g...@lemis.com wrote:
 
 I don't really understand why you ask a FreeBSD group about it; it's a
 Linux issue.
 
 BTW, I asked here in addition to many other places, including the
 linux-kernel mailing list, comp.os.linux.misc, and at least one person
 who's got some other Linux benchmarking tools and is relatively
 knowledgable on the subject.  This is just the first place I've asked
 where I've gotten any semi-intelligble answers so far.

There's a moral there somewhere. 8-)

-- 
John Birrell - j...@cimlogic.com.au; j...@freebsd.org 
http://www.cimlogic.com.au/
CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: bridge+dummynet + sysctl -a panics in -current

1999-05-03 Thread Luigi Rizzo
 a box with de and xl interfaces plus BRIDGE and DUMMYNET compiled in,
 doing a sysctl -a will panic the box.  (currproc == sysctl)

if you think the panic is bridge-related, can you try manually the
net.link.ether.bridge* sysctl -- if they do not fail, then the problem
could be with the sysctl to fetch bridging statistics (and if you have
a recent system, netstat -p bdg should exercise that.

cheers
luigi
---+-
  Luigi RIZZO  .
  EMAIL: lu...@iet.unipi.it. Dip. di Ing. dell'Informazione
  HTTP://www.iet.unipi.it/~luigi/  . Universita` di Pisa
  TEL/FAX: +39-050-568.533/522 . via Diotisalvi 2, 56126 PISA (Italy)
---+-


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: ata and IRQ sharing (was: panic in nexus_setup_intr+0x13 with new ata driver)

1999-05-03 Thread Doug Rabson
On Sun, 2 May 1999, Stefan Bethke wrote:

 --On Son, 2. Mai 1999 19:32 Uhr +0200 Stefan Bethke
 stefan.bet...@hanse.de wrote:
 
  I'm currently trying to get a Promise Ultra/33 to work with S?rens new ata
  drivers.
 
 I've delved into the code a bit more.  The panic results from
 ata_pciattach() not checking whether an IRQ resource could be allocated.
 
 Ths seems to stem from the fact that the IRQ is already taken by an ed PCI
 card. I've added RF_SHAREABLE to the bus_alloc_resource() flags, and was
 able to bring up the kernel fine.  However, ed0 reported constant device
 timeouts, and accessing wd0 resulted in an endless wait for an interrupt.
 
 Removing the ed card makes the Promise controller work.  I'm getting about
 7MB/s from an IBM DTTA 350840, which should be normal.
 
 The board I'm currently trying this on is an Asus SP3, having the
 mis-feature of  only having a single INTA for all three PCI slots (IRQ 5 in
 my case).
 
 Now, PCI does support interrupt sharing, but in this case it might be
 broken:
 - in the chipset (but it worked with both an ed and ncr card installed)
 - in the newbus stuff
 - in the Promise controller
 - somewhere in promise_intr
 
 Would someone care to shed some light on this?
 
 I will try to do some tests on an Asus SP3G, which does have seperate INTAs
 per PCI slot.

Are you saying that the ISA driver for the ed card is sharing an interrupt
with the pci IDE card?

--
Doug Rabson Mail:  d...@nlsystems.com
Nonlinear Systems Ltd.  Phone: +44 181 442 9037




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: ata and IRQ sharing (was: panic in nexus_setup_intr+0x13 with new ata driver)

1999-05-03 Thread Stefan Bethke
Doug Rabson d...@nlsystems.com wrote:

 On Sun, 2 May 1999, Stefan Bethke wrote:

 --On Son, 2. Mai 1999 19:32 Uhr +0200 Stefan Bethke
 stefan.bet...@hanse.de wrote:

  I'm currently trying to get a Promise Ultra/33 to work with Sørens new
  ata drivers.

 I've delved into the code a bit more.  The panic results from
 ata_pciattach() not checking whether an IRQ resource could be allocated.

 Ths seems to stem from the fact that the IRQ is already taken by an ed
 PCI card.

 Are you saying that the ISA driver for the ed card is sharing an interrupt
 with the pci IDE card?

No, it's a generic NE2000-clone PCI card.

The combination NE2000 + NCR810 card works fine with the sahred IRQ5 (I've
just checked again).  (Well, fine is a bit optimistic.  If I really beat
both of them [cvs update from an NFS repo to a fast disk on the NCR], I get
device timeouts, but generally it works.)


--
Stefan Bethke
Promo Datentechnik  |  Tel. +49-40-851744-18
+ Systemberatung GmbH   |  Fax. +49-40-851744-44
Eduardstrasse 46-48 |  e-mail: ste...@promo.de
D-20257 Hamburg |  http://www.Promo.DE/


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Q3 test

1999-05-03 Thread Kenneth Wayne Culver
As we probably all know, Q3 test is out for Linux. I tested it on FreeBSD,
with great results. I just downloaded the correct glide libraries from the
site suggested by Carmac (Q3 programmer) and installed those, and then I
added the appropriate resoulutions to my configuration. 



Kenneth Culver
Computer Science Major at the University of Maryland, College Park.




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: ata and IRQ sharing (was: panic in nexus_setup_intr+0x13 with new ata driver)

1999-05-03 Thread Soren Schmidt
It seems Stefan Bethke wrote:
   I'm currently trying to get a Promise Ultra/33 to work with Sørens new
   ata drivers.
  
  I've delved into the code a bit more.  The panic results from
  ata_pciattach() not checking whether an IRQ resource could be allocated.
  
  Ths seems to stem from the fact that the IRQ is already taken by an ed
  PCI card.
  
  Are you saying that the ISA driver for the ed card is sharing an interrupt
  with the pci IDE card?
 
 No, it's a generic NE2000-clone PCI card.
 
 The combination NE2000 + NCR810 card works fine with the sahred IRQ5 (I've
 just checked again).  (Well, fine is a bit optimistic.  If I really beat
 both of them [cvs update from an NFS repo to a fast disk on the NCR], I get
 device timeouts, but generally it works.)

Does the NCR driver still support the poll mode ?? if so that might
be why it works, the NCR driver doesn't use the intr after it timed out
sufficently many times, this tricked me once under the old SCSI system...

The ata driver should check for getting a real interrupt though...

-Søren


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: ata and IRQ sharing (was: panic in nexus_setup_intr+0x13 with new ata driver)

1999-05-03 Thread Stefan Bethke
Soren Schmidt s...@freebsd.dk wrote:

 It seems Stefan Bethke wrote:
   I'm currently trying to get a Promise Ultra/33 to work with Sørens
   new ata drivers.
 
  I've delved into the code a bit more.  The panic results from
  ata_pciattach() not checking whether an IRQ resource could be
  allocated.
 
  Ths seems to stem from the fact that the IRQ is already taken by an ed
  PCI card.
 
  Are you saying that the ISA driver for the ed card is sharing an
  interrupt with the pci IDE card?

 No, it's a generic NE2000-clone PCI card.

 The combination NE2000 + NCR810 card works fine with the sahred IRQ5
 (I've just checked again).  (Well, fine is a bit optimistic.  If I
 really beat both of them [cvs update from an NFS repo to a fast disk on
 the NCR], I get device timeouts, but generally it works.)

 Does the NCR driver still support the poll mode ?? if so that might
 be why it works, the NCR driver doesn't use the intr after it timed out
 sufficently many times, this tricked me once under the old SCSI system...

Wouldn't that mean that the performance would be greatly reduced?  Anyway,
I'll try tonite with debugging enabled for pci/ncr.c.

 The ata driver should check for getting a real interrupt though...

That would be nice to have, but as interrupt sharing is legal, and my
crappy m/b doesn't have seperate INTAs per slot, it would be even nicer if
the ata driver would support it, if at all possible...


Stefan

--
Mühlendamm 12   |  Voice +49-40-256848, +49-177-3504009
D-22089 Hamburg |  e-mail: stefan.bet...@hanse.de
Germany |  s...@freebsd.org



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Q3 test

1999-05-03 Thread Doug Rabson
On Mon, 3 May 1999, Kenneth Wayne Culver wrote:

 As we probably all know, Q3 test is out for Linux. I tested it on FreeBSD,
 with great results. I just downloaded the correct glide libraries from the
 site suggested by Carmac (Q3 programmer) and installed those, and then I
 added the appropriate resoulutions to my configuration. 

How about a port :-)

--
Doug Rabson Mail:  d...@nlsystems.com
Nonlinear Systems Ltd.  Phone: +44 181 442 9037




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Jail - any success?

1999-05-03 Thread Rudolf Cejka

I'm trying to test the new jail feature. It looks it works. But I can't
find, how to setup the network communication. Is there anybody who
successfully took a run of jail virtual serverrs with networking?

Thanks for any suggestions.

--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=
Rudolf Cejka   (cej...@dcse.fee.vutbr.cz;  http://www.fee.vutbr.cz/~cejkar)
Brno University of Technology, Faculty of El. Engineering and Comp. Science
Bozetechova 2, 612 66  Brno, Czech Republic


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Jail - any success?

1999-05-03 Thread Poul-Henning Kamp
In message 199905031339.paa20...@kazi.dcse.fee.vutbr.cz, Rudolf Cejka writes:

I'm trying to test the new jail feature. It looks it works. But I can't
find, how to setup the network communication. Is there anybody who
successfully took a run of jail virtual serverrs with networking?

You need to put ip aliases on your loopback interface, forinstance:

ifconfig lo0 10.0.0.1 netmask 255.255.255.255 alias
ifconfig lo0 10.0.0.2 netmask 255.255.255.255 alias
ifconfig lo0 10.0.0.3 netmask 255.255.255.255 alias
ifconfig lo0 10.0.0.4 netmask 255.255.255.255 alias
ifconfig lo0 10.0.0.5 netmask 255.255.255.255 alias

Then you give each jail one of these ipnumbers and start whatever
daemons you want in the jail (inetd, sshd, apache...)

Of course your routing needs to work such that these ip numbers
end up on your machine, you can also do this by adding multiple
IP# to the ethernet of the machine.

--
Poul-Henning Kamp FreeBSD coreteam member
p...@freebsd.org   Real hackers run -current on their laptop.
FreeBSD -- It will take a long time before progress goes too far!


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Q3 test

1999-05-03 Thread Eric Hodel
Kenneth Wayne Culver wrote:
 
 As we probably all know, Q3 test is out for Linux. I tested it on FreeBSD,
 with great results. I just downloaded the correct glide libraries from the
 site suggested by Carmac (Q3 programmer) and installed those, and then I
 added the appropriate resoulutions to my configuration.

Or a link to the correct libraries.

-- 
Eric Hodel
hodel...@seattleu.edu

If you understand what you're doing, you're not learning anything.
-- A. L.


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Silo overflows and MAME can someone else reproduce this problem ??

1999-05-03 Thread Matthew Thyer
This problem is easily reproducible.

However to do so, you need a ROM image for an arcade game that the
Multi Arcade Machine Emulator emulates as it wont do it without any
roms in the directory /usr/local/lib/mame/roms.

I am using xmame installed from the ports collection
(/usr/ports/emulators/xmame) on a very recent -CURRENT machine.

If I run xmame *before* I get online with user mode ppp (or while
I am on the net), the serial ports get hosed and I have to reboot
or I continually get silo overflows.

This is not right as it happens AFTER I exit xmame !!!

Please can someone else reproduce this problem as I'd hate to think
its only on the systems I have owned (Pentium 166 and Celeron 300).

-- 
/===\
| Work: matthew.th...@dsto.defence.gov.au | Home: thy...@camtech.net.au |
\===/
If it is true that our Universe has a zero net value for all conserved
quantities, then it may simply be a fluctuation of the vacuum of some
larger space in which our Universe is imbedded. In answer to the
question of why it happened, I offer the modest proposal that our
Universe is simply one of those things which happen from time to time.
 E. P. Tryon   from Nature Vol.246 Dec.14, 1973


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Silo overflows and MAME can someone else reproduce this problem ??

1999-05-03 Thread Matthew Thyer
My usermode ppp works fine normally as I can quite happily download
4 things at once without a single silo overflow (as I did last night)
even when there is lots of disk activity or X11 activity.

Note this problem is unrelated to newbus as it occurs both before and
after those commits.

Matthew Thyer wrote:
 
 This problem is easily reproducible.
 
 However to do so, you need a ROM image for an arcade game that the
 Multi Arcade Machine Emulator emulates as it wont do it without any
 roms in the directory /usr/local/lib/mame/roms.
 
 I am using xmame installed from the ports collection
 (/usr/ports/emulators/xmame) on a very recent -CURRENT machine.
 
 If I run xmame *before* I get online with user mode ppp (or while
 I am on the net), the serial ports get hosed and I have to reboot
 or I continually get silo overflows.
 
 This is not right as it happens AFTER I exit xmame !!!
 
 Please can someone else reproduce this problem as I'd hate to think
 its only on the systems I have owned (Pentium 166 and Celeron 300).
 
-- 
/===\
| Work: matthew.th...@dsto.defence.gov.au | Home: thy...@camtech.net.au |
\===/
If it is true that our Universe has a zero net value for all conserved
quantities, then it may simply be a fluctuation of the vacuum of some
larger space in which our Universe is imbedded. In answer to the
question of why it happened, I offer the modest proposal that our
Universe is simply one of those things which happen from time to time.
 E. P. Tryon   from Nature Vol.246 Dec.14, 1973


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Silo overflows and MAME can someone else reproduce this problem ??

1999-05-03 Thread vortexia
Im getting continous overflows on sio0 after I shutdown X no matter what I
do, even when there is NOTHING else running, the moment I shutdown X and I
move my mouse I get tons of overflows.

I have no pppd running at all and no moused, any ideas?

Cheers

Andrew

On Tue, 4 May 1999, Matthew Thyer wrote:

 My usermode ppp works fine normally as I can quite happily download
 4 things at once without a single silo overflow (as I did last night)
 even when there is lots of disk activity or X11 activity.
 
 Note this problem is unrelated to newbus as it occurs both before and
 after those commits.
 
 Matthew Thyer wrote:
  
  This problem is easily reproducible.
  
  However to do so, you need a ROM image for an arcade game that the
  Multi Arcade Machine Emulator emulates as it wont do it without any
  roms in the directory /usr/local/lib/mame/roms.
  
  I am using xmame installed from the ports collection
  (/usr/ports/emulators/xmame) on a very recent -CURRENT machine.
  
  If I run xmame *before* I get online with user mode ppp (or while
  I am on the net), the serial ports get hosed and I have to reboot
  or I continually get silo overflows.
  
  This is not right as it happens AFTER I exit xmame !!!
  
  Please can someone else reproduce this problem as I'd hate to think
  its only on the systems I have owned (Pentium 166 and Celeron 300).
  
 -- 
 /===\
 | Work: matthew.th...@dsto.defence.gov.au | Home: thy...@camtech.net.au |
 \===/
 If it is true that our Universe has a zero net value for all conserved
 quantities, then it may simply be a fluctuation of the vacuum of some
 larger space in which our Universe is imbedded. In answer to the
 question of why it happened, I offer the modest proposal that our
 Universe is simply one of those things which happen from time to time.
  E. P. Tryon   from Nature Vol.246 Dec.14, 1973
 
 
 To Unsubscribe: send mail to majord...@freebsd.org
 with unsubscribe freebsd-current in the body of the message
 



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re[2]: Our routed - Vern says it's old and buggy.

1999-05-03 Thread Joe McGuckin

It's 'open' as in an open specifiaction. The algorithm was openly
published - unlike some other competing routing protocols.

Joe


Johan Granlund jo...@granlund.nu wrote:
 
 
 On Wed, 28 Apr 1999, Chuck Robey wrote:
 
  On Wed, 28 Apr 1999, Matthew Dillon wrote:
  
   
   :Matthew Dillon dil...@apollo.backplane.com writes:
  
  I can't quite figure why they stuck the word open in there, because it
  couldn't possibly be more open than RIP.
 
 Probably beqause they stuck OPEN on _everything_ for a while. It drowe
 me nuts:)
 
 /Johan
 
  
   
   OSPF has been around for a long time.
  
  But RIP is older, and was the first routing scheme.
  
   
 -Matt
 Matthew Dillon 
 dil...@backplane.com
   
   
   
   To Unsubscribe: send mail to majord...@freebsd.org
   with unsubscribe freebsd-current in the body of the message
   
  
  +---
  Chuck Robey | Interests include any kind of voice or data 
  chu...@picnic.mat.net   | communications topic, C programming, and Unix.
  213 Lakeside Drive Apt T-1  |
  Greenbelt, MD 20770 | I run picnic (FreeBSD-current)
  (301) 220-2114  | and jaunt (Solaris7).
  +---
  
  
  
  
  
  
  To Unsubscribe: send mail to majord...@freebsd.org
  with unsubscribe freebsd-current in the body of the message
  
  
 
 
 
 To Unsubscribe: send mail to majord...@freebsd.org
 with unsubscribe freebsd-current in the body of the message



Joe McGuckin

ViaNet Communications
1235 Pear Ave, Suite 107
Mountain View, CA 90403

Phone: 650-969-2203
Cell:  415-710-4894
Fax:   650-969-2124


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: default route not set up??

1999-05-03 Thread Rodney W. Grimes
 Hi,
 There are two things going on with the route setup.
 
 if [ x$defaultrouter != xNO ] ; then
 static_routes=default ${static_routes}
 route_default=default ${defaultrouter}
 fi
 
 
 1) since route_default is never used, it should be deleted, ignore that
 line above.

Wrong, it is evaluated when this line is executed:
eval route_args=\$route_${i}

I wrote this code 4 years ago, it works, has been working and
will continue to work.  Please, just leave the static/default route
stuff alone.  

 
 2) if you set defaultrouter to anything other than NO, the
 static_route variable gets a default route
  route label added, and this label will get evaled later on.
 
 So rc.conf should read: (example from my setup)
 
 
 defaultrouter=YES # Set to default gateway (or NO).

No, the comment is correct as it stands, set it to ``NO'' or set
it to the IP address of the defaultroute + any funky route flags
you may want on it.

 static_routes=local   # Set to static route list (or leave
 empty).
 route_local= -net net ip  host
 route_default= default host

Boo bad, your value of route_default will be smashed by rc.network
when it does ``route_default=default ${defaultrouter}''.  You'll
end up with the command ``route add default YES'' being executed,
not something you really want :-)

 
 So, two actions are needed. The route_default line from rc.network should
 get deleted, and the comment
 in rc.conf for the defaultrouter variable should be clearer.
 
 If others agree, I can go and commit the fixes for that 

NO!  Do not agree, read and understand what the trick above is,
``eval route_args=\${route_${i}'' when $i=default'' grabs the
route_default for you.


-- 
Rod Grimes - KD7CAX - (RWG25)   rgri...@gndrsh.aac.dev.com
Accurate Automation, Inc.   Reliable computers for FreeBSD
http://www.aai.dnsmgr.com


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



make release perl version failure

1999-05-03 Thread John W. DeBoskey
Hi,

   I don't know if anyone has seen this yet, but from last nights
'make release' I get the following failure 

touch release.2
Making docs...
===  Extracting for docproj-1.0
 No MD5 checksum file.
===  Patching for docproj-1.0
===  Configuring for docproj-1.0
===  Installing for docproj-1.0
===   docproj-1.0 depends on executable: instant - not found
===Verifying install for instant in /usr/ports/textproc/sgmlformat
Error: you don't have the right version of perl in /usr/bin.
*** Error code 1


   It looks like the perl updates that went in have some side
effects...

Later,
John


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



traceroute patch

1999-05-03 Thread Archie Cobbs
I have this patch for traceroute that adds the ability to send
packets with an arbitrary IP protocol number, instead of just TCP
and UDP. This is mainly useful to see if some router between points
A and B is blocking packets based on IP protocol number.

I sent it to tracero...@ee.lbl.gov but got no response.

Is this something people might be interested in? Is it worth committing?
We've found it useful on occasion.

  ftp://ftp.whistle.com/pub/archie/misc/traceroute.patch

-Archie

___
Archie Cobbs   *   Whistle Communications, Inc.  *   http://www.whistle.com


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Make world failing in perl

1999-05-03 Thread FreeBSD mailing list
Due to a failed world build which rendered sendmail unable to bind to
a socket, which resulted in my being apparently unsubscribed, and the 
fact that the mailing list indexes aren't updated for a period of days,
I'm unable to to check the archives regarding this problem.

Perl is failing due to some kind of conflict in library versions:

miniperl -I/usr/obj/usr/src/gnu/usr.bin/perl/perl/lib  -e 'use AutoSplit; 
autosplit_lib_modules(@ARGV)'  lib/*.pm lib/*/*.pm
Perl lib version (5.00502) doesn't match executable version (5.00503) at 
/usr/libdata/perl/5.00503/mach/Config.pm line 7.
BEGIN failed--compilation aborted at 
/usr/obj/usr/src/gnu/usr.bin/perl/perl/lib/AutoSplit.pm line 4.
BEGIN failed--compilation aborted at -e line 1.
*** Error code 255

A number of cvsup's have been performed during the last two days, and this
problem has persisted, as well as clearing the source tree and cvsup'ing
anew, as well as the usual obj removal and clean build.

Any help is, of course, appreciated ;)

stay...@mrynet.com (aka free...@mrynet.com)

From freebsd Mon May  3 10:56:51 1999
From: freebsd
To: freebsd-current
Subject: perl failure in make world
Date: Mon, 3 May 1999 10:56:51 +

Due to a failed world build which rendered sendmail unable to bind to
a socket, which resulted in my being apparently unsubscribed, and the 
fact that the mailing list indexes aren't updated for a period of days,
I'm unable to to check the archives regarding this problem.

Perl is failing due to some kind of conflict in library versions:

miniperl -I/usr/obj/usr/src/gnu/usr.bin/perl/perl/lib  -e 'use AutoSplit; 
autosplit_lib_modules(@ARGV)'  lib/*.pm lib/*/*.pm
Perl lib version (5.00502) doesn't match executable version (5.00503) at 
/usr/libdata/perl/5.00503/mach/Config.pm line 7.
BEGIN failed--compilation aborted at 
/usr/obj/usr/src/gnu/usr.bin/perl/perl/lib/AutoSplit.pm line 4.
BEGIN failed--compilation aborted at -e line 1.
*** Error code 255

A number of cvsup's have been performed during the last two days, and this
problem has persisted, as well as clearing the source tree and cvsup'ing
anew, as well as the usual obj removal and clean build.

Any help is, of course, appreciated ;)

stay...@mrynet.com (aka free...@mrynet.com)



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: bridge+dummynet + sysctl -a panics in -current

1999-05-03 Thread Alfred Perlstein
On Mon, 3 May 1999, Luigi Rizzo wrote:

  a box with de and xl interfaces plus BRIDGE and DUMMYNET compiled in,
  doing a sysctl -a will panic the box.  (currproc == sysctl)
 
 if you think the panic is bridge-related, can you try manually the
 net.link.ether.bridge* sysctl -- if they do not fail, then the problem
 could be with the sysctl to fetch bridging statistics (and if you have
 a recent system, netstat -p bdg should exercise that.
 

ok, egg in my face, that's not it i guess.  What about patching rc.network
to allow early setup of bridge though?

I'll try to track this down a bit better...

I was experianceing it the panic earlier when i had applied matt's NFS patches, 
however ,my
other boxes don't panic when i sysctl -a.

thanks,
-Alfred 



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Netgraph Was:(Re: traceroute patch)

1999-05-03 Thread Johan Granlund


On Mon, 3 May 1999, Archie Cobbs wrote:

 I have this patch for traceroute that adds the ability to send
[snip]

How is it going with netgraph?
I have looked at the -net archives on and off and it's very quit.
Is it still going to be committed?

/Johan
 
 -Archie
 
 ___
 Archie Cobbs   *   Whistle Communications, Inc.  *   http://www.whistle.com
 
 
 To Unsubscribe: send mail to majord...@freebsd.org
 with unsubscribe freebsd-current in the body of the message
 
 



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Protocol analyzer

1999-05-03 Thread Chuck Robey
If you've EVER used tcpdump, go take a look at this site, I guarantee
it's worth your time:

http://www.capmedia.fr/mgall/xip/

What a GREAT idea!  A full graphical tcpdump!

+---
Chuck Robey | Interests include any kind of voice or data 
chu...@picnic.mat.net   | communications topic, C programming, and Unix.
213 Lakeside Drive Apt T-1  |
Greenbelt, MD 20770 | I run picnic (FreeBSD-current)
(301) 220-2114  | and jaunt (Solaris7).
+---






To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Netgraph Was:(Re: traceroute patch)

1999-05-03 Thread Archie Cobbs
Johan Granlund writes:
 How is it going with netgraph?
 I have looked at the -net archives on and off and it's very quit.
 Is it still going to be committed?

Netgraph is doing well.. several people have tried it and/or are using it.
One guy in Finland has reimplemented the whole concept in Java for an
industrial process automation system :-)

We (Julian and myself) have been too busy with other stuff lately to
do much new development. However, we have a list of things to do...
hopefully we can get back to doing more development on it soon.

I'm particularly interested in revamping the PPP node and making
corresponding changes in mpd to support it, so that mpd+netgraph
can do full kernel-only routing over any link type. Also, I'd like
to netgraphify the i4b code.

As for committing it, more demand/interest is needed before doing that.

-Archie

___
Archie Cobbs   *   Whistle Communications, Inc.  *   http://www.whistle.com


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Netgraph Was:(Re: traceroute patch)

1999-05-03 Thread Johan Granlund


On Mon, 3 May 1999, Archie Cobbs wrote:

 Johan Granlund writes:
  How is it going with netgraph?
  I have looked at the -net archives on and off and it's very quit.
  Is it still going to be committed?
 
 Netgraph is doing well.. several people have tried it and/or are using it.
 One guy in Finland has reimplemented the whole concept in Java for an
 industrial process automation system :-)
 

Sounds like what i'm proposing at work only it's access control in my
case.
I'we got another programmer that's into alarm systems to reschool himself
from windows to Unix programming. Hopefully something will become of
this

/Johan

 
 -Archie
 
 ___
 Archie Cobbs   *   Whistle Communications, Inc.  *   http://www.whistle.com
 
 



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: make release perl version failure

1999-05-03 Thread Mark Murray
John W. DeBoskey wrote:
I don't know if anyone has seen this yet, but from last nights
 'make release' I get the following failure 
 
 touch release.2
 Making docs...
 ===  Extracting for docproj-1.0
  No MD5 checksum file.
 ===  Patching for docproj-1.0
 ===  Configuring for docproj-1.0
 ===  Installing for docproj-1.0
 ===   docproj-1.0 depends on executable: instant - not found
 ===Verifying install for instant in /usr/ports/textproc/sgmlformat
 Error: you don't have the right version of perl in /usr/bin.
 *** Error code 1
 
 
It looks like the perl updates that went in have some side
 effects...

Here's a workaround (Satoshi - your comments, please?):

Index: bsd.port.mk
===
RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v
retrieving revision 1.311
diff -u -d -r1.311 bsd.port.mk
--- bsd.port.mk 1999/04/28 06:20:12 1.311
+++ bsd.port.mk 1999/05/03 19:18:03
@@ -592,7 +592,12 @@

 PKG_IGNORE_DEPENDS?=   '(XFree86-3\.3\.3\.1|Motif-2\.1\.10)'

+.if exists(/usr/bin/perl5.00502)
 PERL_VERSION=  5.00502
+.endif
+.if exists(/usr/bin/perl5.00503)
+PERL_VERSION=  5.00503
+.endif
 PERL_VER=  5.005
 PERL_ARCH= ${ARCH}-freebsd
 PLIST_SUB+=PERL_VERSION=${PERL_VERSION} \

M
--
Mark Murray
Join the anti-SPAM movement: http://www.cauce.org


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: make release perl version failure

1999-05-03 Thread Satoshi - Ports Wraith - Asami
 * From: Mark Murray m...@grondar.za

 * Here's a workaround (Satoshi - your comments, please?):
 * 
 * Index: bsd.port.mk
 * ===
 * RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v
 * retrieving revision 1.311
 * diff -u -d -r1.311 bsd.port.mk
 * --- bsd.port.mk 1999/04/28 06:20:12 1.311
 * +++ bsd.port.mk 1999/05/03 19:18:03
 * @@ -592,7 +592,12 @@
 * 
 *  PKG_IGNORE_DEPENDS?=   '(XFree86-3\.3\.3\.1|Motif-2\.1\.10)'
 * 
 * +.if exists(/usr/bin/perl5.00502)
 *  PERL_VERSION=  5.00502
 * +.endif
 * +.if exists(/usr/bin/perl5.00503)
 * +PERL_VERSION=  5.00503
 * +.endif
 *  PERL_VER=  5.005
 *  PERL_ARCH= ${ARCH}-freebsd
 *  PLIST_SUB+=PERL_VERSION=${PERL_VERSION} \

Eeek.  I tought we were not going to do this. ;)

When are you planning to merge 5.00503 to -stable?  We can just bump
the version and be done with it.

-PW


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



IBM's Via Voice

1999-05-03 Thread Amancio Hasty


I managed to spent a few more minutes with IBM's Via Voice for
linux and it appears to work on my system. The draw back is that
I don't have a high quality mic right now with me (will have to dig
around in my boxes for one). 

Pertinent information about my system:

1  FreeBSD 4.0 current as of a couple of weeks old
2  GUS PnP with Voxware sound driver (full duplex mode)
3 downloaded the following linux rpms:
4. installed  the latest linux_lib port
5  installed rpm2cpio port
6. downloaded the following rpm pacakges
location  what
ftp.redhat.com  libstdc++-2.9.0-12.i386.rpm
www.lesstiff.orglesstif-0.86.9-linux.tar.gz 

  cd /compat/linux
  rpmcpio rpm package  |  cpio --extract --make-directories --verbose

7. and of course download ViaVoice from :
   http://www.software.ibm.com/is/voicetype/dev_linux.html
   To install follow the instructions above for linux rpm packages

8. Run the audio setup program:
   /compat/linux/usr/bin/audiog


Caveat : you may have to play with mixer to properly adjust your
 microphone input.
 
Enjoy




-- 

 Amancio Hasty
 ha...@star-gate.com




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: make release perl version failure

1999-05-03 Thread Mark Murray
  * +.if exists(/usr/bin/perl5.00502)
  *  PERL_VERSION=  5.00502
  * +.endif
  * +.if exists(/usr/bin/perl5.00503)
  * +PERL_VERSION=  5.00503
  * +.endif
:
 Eeek.  I tought we were not going to do this. ;)

Erm, that was before you made life so easy :-)

 When are you planning to merge 5.00503 to -stable?  We can just bump
 the version and be done with it.

I'll do it tomorrow if I have half a clue that the rest of core will
buy it...

M
--
Mark Murray
Join the anti-SPAM movement: http://www.cauce.org


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



RE: Protocol analyzer

1999-05-03 Thread Jeroen Ruigrok/Asmodai
On 03-May-99 Chuck Robey wrote:
 If you've EVER used tcpdump, go take a look at this site, I guarantee
 it's worth your time:
 
 http://www.capmedia.fr/mgall/xip/
 
 What a GREAT idea!  A full graphical tcpdump!

Damn, another project down the wastebasket =P

---
Jeroen Ruigrok van der Wervenasmodai(at)wxs.nl
The FreeBSD Programmer's Documentation Project 
Network/Security Specialist  http://home.wxs.nl/~asmodai
*BSD: Powered by Knowledge  Know-how http://www.freebsd.org


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



RE: Protocol analyzer

1999-05-03 Thread Jeroen Ruigrok/Asmodai
On 03-May-99 Chuck Robey wrote:
 If you've EVER used tcpdump, go take a look at this site, I guarantee
 it's worth your time:
 
 http://www.capmedia.fr/mgall/xip/
 
 What a GREAT idea!  A full graphical tcpdump!

Also has some probs compiling...

Looking at it... Might be nice to have in the ports *chuckle*

---
Jeroen Ruigrok van der Wervenasmodai(at)wxs.nl
The FreeBSD Programmer's Documentation Project 
Network/Security Specialist  http://home.wxs.nl/~asmodai
*BSD: Powered by Knowledge  Know-how http://www.freebsd.org


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Protocol analyzer

1999-05-03 Thread Jacques Vidrine
I've made a port, which I will commit as soon as I figure out 
how/if this thing works.

Jacques Vidrine / n...@nectar.com / nec...@freebsd.org

On 3 May 1999 at 22:33, Jeroen Ruigrok/Asmodai asmo...@wxs.nl wrote:
 On 03-May-99 Chuck Robey wrote:
  If you've EVER used tcpdump, go take a look at this site, I guarantee
  it's worth your time:
  
  http://www.capmedia.fr/mgall/xip/
  
  What a GREAT idea!  A full graphical tcpdump!
 
 Also has some probs compiling...
 
 Looking at it... Might be nice to have in the ports *chuckle*
 
 ---
 Jeroen Ruigrok van der Wervenasmodai(at)wxs.nl
 The FreeBSD Programmer's Documentation Project 
 Network/Security Specialist  http://home.wxs.nl/~asmodai
 *BSD: Powered by Knowledge  Know-how http://www.freebsd.org
 
 
 To Unsubscribe: send mail to majord...@freebsd.org
 with unsubscribe freebsd-current in the body of the message
 




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: IBM's Via Voice

1999-05-03 Thread Amancio Hasty
After playing a little more with ViaVoice, I can't seem to load the sample
binaries the come back with :

./hello
./hello: error in loading shared libraries
/usr/lib/libsmapi.so: undefined symbol: __bzero


objdump --dynamic-syms /compat/linux/usr/lib/libsmapi.so | grep bzero
DYNAMIC SYMBOL TABLE:
   DF *UND*  0035 __bzero
   w DF *UND*  0035 bzero

Does anyone know what the difference is between symbol
type  and w? 



-- 

 Amancio Hasty
 ha...@star-gate.com




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: IBM's Via Voice

1999-05-03 Thread Christopher Masto
On Mon, May 03, 1999 at 03:51:21PM -0700, Amancio Hasty wrote:
 After playing a little more with ViaVoice, I can't seem to load the sample
 binaries the come back with :
 
 ./hello
 ./hello: error in loading shared libraries
 /usr/lib/libsmapi.so: undefined symbol: __bzero
 
 
 objdump --dynamic-syms /compat/linux/usr/lib/libsmapi.so | grep bzero
 DYNAMIC SYMBOL TABLE:
    DF *UND*  0035 __bzero
    w DF *UND*  0035 bzero
 
 Does anyone know what the difference is between symbol
 type  and w? 

No, but I have the same problem.  But for anyone else who can't even
get this far.. I needed to install the ldconfig-1.9.5-15.i386.rpm
RPM.

Annoyingly, the Audio Setup Guru works.  So close..
-- 
Christopher Masto Senior Network Monkey  NetMonger Communications
ch...@netmonger.neti...@netmonger.nethttp://www.netmonger.net

Free yourself, free your machine, free the daemon -- http://www.freebsd.org/


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: ppbus causes hangs?

1999-05-03 Thread Louis A. Mamakos
 On Apr 29,  7:41pm, Mike Smith wrote:
 } Subject: Re: ppbus causes hangs?
 } 
 } Try setting the flags on the 'ppc' device to 0x40 and _please_ report 
 } the results.
 
 I also ran into this problem with a 4/30/1999 version of 3.1-stable
 on a Dell Dimension XPS R400.  The 0x40 flag fixed the problem.

I had the same problem on a Motorola CPV5000 Compact-PCI system board.  I
had to disable the parallel port in the BIOS setup to be able to install
FreeBSD on it, or boot kernels with the 'ppc' device configured.  SInce
adding the flag, this all seems to be better now.

This is with a 4.0-current based system as of early March.  Petium MMX
at 233MHz with an 'HX' chipset.  More details upon request.

louie




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Silo overflows and MAME can someone else reproduce this problem ??

1999-05-03 Thread Brian Feldman
On Tue, 4 May 1999, Matthew Thyer wrote:

 My usermode ppp works fine normally as I can quite happily download
 4 things at once without a single silo overflow (as I did last night)
 even when there is lots of disk activity or X11 activity.
 
 Note this problem is unrelated to newbus as it occurs both before and
 after those commits.

Doesn't X turn off interrupts? A lot? ESPECIALLY in things like the DGA
code (which you're probably using with xmame, aren't you?)? Hope I'm thinking
on the right track... ;)

 
 Matthew Thyer wrote:
  
  This problem is easily reproducible.
  
  However to do so, you need a ROM image for an arcade game that the
  Multi Arcade Machine Emulator emulates as it wont do it without any
  roms in the directory /usr/local/lib/mame/roms.
  
  I am using xmame installed from the ports collection
  (/usr/ports/emulators/xmame) on a very recent -CURRENT machine.
  
  If I run xmame *before* I get online with user mode ppp (or while
  I am on the net), the serial ports get hosed and I have to reboot
  or I continually get silo overflows.
  
  This is not right as it happens AFTER I exit xmame !!!
  
  Please can someone else reproduce this problem as I'd hate to think
  its only on the systems I have owned (Pentium 166 and Celeron 300).
  
 -- 
 /===\
 | Work: matthew.th...@dsto.defence.gov.au | Home: thy...@camtech.net.au |
 \===/
 If it is true that our Universe has a zero net value for all conserved
 quantities, then it may simply be a fluctuation of the vacuum of some
 larger space in which our Universe is imbedded. In answer to the
 question of why it happened, I offer the modest proposal that our
 Universe is simply one of those things which happen from time to time.
  E. P. Tryon   from Nature Vol.246 Dec.14, 1973
 
 
 To Unsubscribe: send mail to majord...@freebsd.org
 with unsubscribe freebsd-current in the body of the message
 

 Brian Feldman_ __ ___   ___ ___ ___  
 gr...@unixhelp.org_ __ ___ | _ ) __|   \ 
 FreeBSD: The Power to Serve!  _ __ | _ \ _ \ |) |
 http://www.freebsd.org   _ |___)___/___/ 



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: IBM's Via Voice

1999-05-03 Thread Amancio Hasty

Apparently , some linux folks are having the same problem and I think that
the issue is that ViaVoice was compiled with RedHat 6.0 so after
trying out different linux libraries and having no success over here
with ViaVoice sample applications except for audiog I am going
to wait till IBM sorts the linking problem out.
If anyone is interested on the current linux discussion 
highlighting the  linking problems feel free to visit:

http://viavoice.sparklist.com/

 On Mon, May 03, 1999 at 03:51:21PM -0700, Amancio Hasty wrote:
  After playing a little more with ViaVoice, I can't seem to load the sample
  binaries the come back with :
  
  ./hello
  ./hello: error in loading shared libraries
  /usr/lib/libsmapi.so: undefined symbol: __bzero
  
  
  objdump --dynamic-syms /compat/linux/usr/lib/libsmapi.so | grep bzero
  DYNAMIC SYMBOL TABLE:
     DF *UND*  0035 __bzero
     w DF *UND*  0035 bzero
  
  Does anyone know what the difference is between symbol
  type  and w? 
 
 No, but I have the same problem.  But for anyone else who can't even
 get this far.. I needed to install the ldconfig-1.9.5-15.i386.rpm
 RPM.
 
 Annoyingly, the Audio Setup Guru works.  So close..
 -- 
 Christopher Masto Senior Network Monkey  NetMonger Communications
 ch...@netmonger.neti...@netmonger.nethttp://www.netmonger.net
 
 Free yourself, free your machine, free the daemon -- http://www.freebsd.org/
 
 
 To Unsubscribe: send mail to majord...@freebsd.org
 with unsubscribe freebsd-current in the body of the message

-- 

 Amancio Hasty
 ha...@star-gate.com




To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: make release perl version failure

1999-05-03 Thread John W. DeBoskey
Hi,

   I modified /snap/release/usr/ports/Mk/bsd.port.mk after it
was checked out during 'make release' processing. It worked like
a champ and the release completed.

Setting up FTP distribution area
0 blocks
0 blocks
Release done
+ echo make release Finished
make release Finished
--- Mon May  3 20:05:57 EDT 1999 - Creating /pub/FreeBSD/4.0-19990503-SNAP
--- Mon May  3 20:18:21 EDT 1999 - build of 4.0-19990503-SNAP was a success.
--- make world/release ran 365 min 1 sec

  To keep the releases building this seems like a reasonable fix
until a better solution is found.

Thanks!
John


 John W. DeBoskey wrote:
 I don't know if anyone has seen this yet, but from last nights
  'make release' I get the following failure 
  
  touch release.2
  Making docs...
  ===  Extracting for docproj-1.0
   No MD5 checksum file.
  ===  Patching for docproj-1.0
  ===  Configuring for docproj-1.0
  ===  Installing for docproj-1.0
  ===   docproj-1.0 depends on executable: instant - not found
  ===Verifying install for instant in /usr/ports/textproc/sgmlformat
  Error: you don't have the right version of perl in /usr/bin.
  *** Error code 1
  
  
 It looks like the perl updates that went in have some side
  effects...
 
 Here's a workaround (Satoshi - your comments, please?):
 
 Index: bsd.port.mk
 ===
 RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v
 retrieving revision 1.311
 diff -u -d -r1.311 bsd.port.mk
 --- bsd.port.mk 1999/04/28 06:20:12 1.311
 +++ bsd.port.mk 1999/05/03 19:18:03
 @@ -592,7 +592,12 @@
 
  PKG_IGNORE_DEPENDS?=   '(XFree86-3\.3\.3\.1|Motif-2\.1\.10)'
 
 +.if exists(/usr/bin/perl5.00502)
  PERL_VERSION=  5.00502
 +.endif
 +.if exists(/usr/bin/perl5.00503)
 +PERL_VERSION=  5.00503
 +.endif
  PERL_VER=  5.005
  PERL_ARCH= ${ARCH}-freebsd
  PLIST_SUB+=PERL_VERSION=${PERL_VERSION} \
 
 M
 --
 Mark Murray
 Join the anti-SPAM movement: http://www.cauce.org
 



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: Silo overflows and MAME can someone else reproduce this problem??

1999-05-03 Thread Matthew Thyer
The sio driver seems to get into some kind of state where once it starts
overflowing there is nothing you can do other than reboot.

If you can determine exactly what triggers this on your system and give
the list something they can reproduce that would be helpfull.

vortexia wrote:
 
 Im getting continous overflows on sio0 after I shutdown X no matter what I
 do, even when there is NOTHING else running, the moment I shutdown X and I
 move my mouse I get tons of overflows.
 
 I have no pppd running at all and no moused, any ideas?
 
 Cheers
 
 Andrew
 
 On Tue, 4 May 1999, Matthew Thyer wrote:
 
  My usermode ppp works fine normally as I can quite happily download
  4 things at once without a single silo overflow (as I did last night)
  even when there is lots of disk activity or X11 activity.
 
  Note this problem is unrelated to newbus as it occurs both before and
  after those commits.
 
  Matthew Thyer wrote:
  
   This problem is easily reproducible.
  
   However to do so, you need a ROM image for an arcade game that the
   Multi Arcade Machine Emulator emulates as it wont do it without any
   roms in the directory /usr/local/lib/mame/roms.
  
   I am using xmame installed from the ports collection
   (/usr/ports/emulators/xmame) on a very recent -CURRENT machine.
  
   If I run xmame *before* I get online with user mode ppp (or while
   I am on the net), the serial ports get hosed and I have to reboot
   or I continually get silo overflows.
  
   This is not right as it happens AFTER I exit xmame !!!
  
   Please can someone else reproduce this problem as I'd hate to think
   its only on the systems I have owned (Pentium 166 and Celeron 300).
  

-- 
 Matthew Thyer Phone:  +61 8 8259 7249
 Corporate Information Systems Fax:+61 8 8259 5537
 Defence Science and Technology Organisation, Salisbury
 PO Box 1500 Salisbury South Australia 5108


To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message



Re: bridge+dummynet + sysctl -a panics in -current

1999-05-03 Thread Luigi Rizzo
 ok, egg in my face, that's not it i guess.  What about patching rc.network
 to allow early setup of bridge though?

i have no objections, the thing is i dont run current or even stable
so i can't completely check changes if i do the patch myself, and
i'd rather not break things so close to a release. furthermore i
think very few people run bridging on full systems...

cheers
luigi



To Unsubscribe: send mail to majord...@freebsd.org
with unsubscribe freebsd-current in the body of the message