Dell SBLive! (almost) fixed

2004-06-09 Thread Joseph Dunn
Hello hackers@, I just helped a friend install FreeBSD 5.2.1 on his Dell desktop machine, and we've been struggling to get his sound card working. His system has an SBLive! card, we were unable to use it with the stock snd_emu10k1 driver. However... pciconf -lv output: [EMAIL PROTECTED]:2:0: clas

Re: bugs with disk space

2004-06-09 Thread Brooks Davis
On Wed, Jun 09, 2004 at 10:33:34AM -0600, Jose Hidalgo Herrera wrote: > There is something wrong here: > > srv0:~# uname -r > 4.9-RELEASE-p4 > > srv0:~# df -hi / > FilesystemSize Used Avail Capacity iused ifree %iused Mounted on > /dev/ad0s1a 126M 125M -8.9M 108%1364 14890

Re: bugs with disk space

2004-06-09 Thread Steven Hartland
Quite possible if u have deleted files which are still open. The space will only be freed when the last process closes the file. Steve - Original Message - From: "Jose Hidalgo Herrera" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, June 09, 2004 5

Re: bugs with disk space

2004-06-09 Thread Jose Hidalgo Herrera
Yes, I did: ~# lsof +aL1 and found that snmpd was the problem, I killed it and now du = df Sorry for the mail! On Wed, 2004-06-09 at 11:41, Jason Andresen wrote: > Jose Hidalgo Herrera wrote: > > There is something wrong here: > > > > srv0:~# uname -r > > 4.9-RELEASE-p4 > > > > srv0:~# df -hi

Re: bugs with disk space

2004-06-09 Thread Brian O'Shea
Hello Jose, --- Jose Hidalgo Herrera <[EMAIL PROTECTED]> wrote: > There is something wrong here: > > srv0:~# uname -r > 4.9-RELEASE-p4 > > srv0:~# df -hi / > FilesystemSize Used Avail Capacity iused ifree %iused Mounted on > /dev/ad0s1a 126M 125M -8.9M 108%1364 148908%

Re: bugs with disk space

2004-06-09 Thread Jason Andresen
Jose Hidalgo Herrera wrote: There is something wrong here: srv0:~# uname -r 4.9-RELEASE-p4 srv0:~# df -hi / FilesystemSize Used Avail Capacity iused ifree %iused Mounted on /dev/ad0s1a 126M 125M -8.9M 108%1364 148908% / srv0:~# du -shx / 36M/ The operating system com

bugs with disk space

2004-06-09 Thread Jose Hidalgo Herrera
There is something wrong here: srv0:~# uname -r 4.9-RELEASE-p4 srv0:~# df -hi / FilesystemSize Used Avail Capacity iused ifree %iused Mounted on /dev/ad0s1a 126M 125M -8.9M 108%1364 148908% / srv0:~# du -shx / 36M/ The operating system complains about free space,

Re: Hyperthreading question

2004-06-09 Thread John Baldwin
On Wednesday 09 June 2004 11:04 am, Dwayne MacKinnon wrote: > Hello, > > I'm in charge of upgrading a number of boxes from 4.8-RELEASE from > 4.10-RELEASE. My problem is this section of notes from the 4.9-RELEASE > errata: > > (28 Oct 2003) Very late in the release cycle, a change was made to

Hyperthreading question

2004-06-09 Thread Dwayne MacKinnon
Hello, I'm in charge of upgrading a number of boxes from 4.8-RELEASE from 4.10-RELEASE. My problem is this section of notes from the 4.9-RELEASE errata: (28 Oct 2003) Very late in the release cycle, a change was made to the HyperThreading (HTT) support on Intel® processors. HTT support is now

Re: use of kernel_sysctl

2004-06-09 Thread Dag-Erling Smørgrav
Matthew Luckie <[EMAIL PROTECTED]> writes: > olen is passed without having its value set. on input, i'd expect it > to specify sizeof(ncpu). you are absolutely correct. DES -- Dag-Erling Smørgrav - [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list

use of kernel_sysctl

2004-06-09 Thread Matthew Luckie
in sys/netsmb/smb_subr.c the following code fragment is used: [FreeBSD 4.10] int smb_checksmp(void) { int name[2]; int olen, ncpu, plen, error; name[0] = CTL_HW; name[1] = HW_NCPU; error = kernel_sysctl(curproc, name, 2, &ncpu, &olen, NULL, 0, &plen);