dragonfly.git
20 years agoFixup /usr/libexec/gcc2/aout binutils generation. The install targets had
Matthew Dillon [Fri, 16 Jan 2004 19:55:52 +0000 (19:55 +0000)]
Fixup /usr/libexec/gcc2/aout binutils generation.  The install targets had
to be updated for the /usr/libexec/aout->/usr/libexec/gcc2/aout move.

20 years agoMake sure cvs reports the proper OS.
Jeroen Ruigrok/asmodai [Fri, 16 Jan 2004 14:13:50 +0000 (14:13 +0000)]
Make sure cvs reports the proper OS.

20 years agoFix compile errors introduced with last commit
Joerg Sonnenberger [Fri, 16 Jan 2004 13:07:18 +0000 (13:07 +0000)]
Fix compile errors introduced with last commit

20 years agoAugment the upgrade_etc target to remove stale compiler-related binaries
Matthew Dillon [Fri, 16 Jan 2004 09:11:10 +0000 (09:11 +0000)]
Augment the upgrade_etc target to remove stale compiler-related binaries
and data files if it detects that the gcc upgrade has occured from a
recent installworld.

20 years agoMajor GCC surgery. Move most compiler-specific files into named
Matthew Dillon [Fri, 16 Jan 2004 07:45:22 +0000 (07:45 +0000)]
Major GCC surgery.  Move most compiler-specific files into named
subdirectories and do a major overhaul of the front-end binaries in /usr/bin.

    /usr/libdata/gcc -> /usr/libdata/gcc2
    /usr/libdata/ldscripts -> /usr/libdata/gcc2/ldscripts
    /usr/libexec/{all_gcc_bins} -> /usr/libexec/gcc2/*
    /usr/libexec/{elf,aout}/* -> /usr/libexec/gcc2/{elf,aout}/*

OBJFORMAT_PATH has been changed from a full path to a base path, because
the objformat binary (hardlinked to most compiler related binaries in
/usr/bin) must now interpret the command name and use one of two different
paths to find the actual binary.  Previously certain gcc binaries, such as
'cc' and 'cpp', were directly installed in /usr/bin.  That is no longer the
case.

Objformat now supports the GCCVER environment variable for vectoring the
compiler version.  This will be used to support gcc3 and other compilers.

20 years agoscrap stderr from the ps output to avoid an annoying warning (due to
Matthew Dillon [Fri, 16 Jan 2004 07:11:23 +0000 (07:11 +0000)]
scrap stderr from the ps output to avoid an annoying warning (due to
the DEB database not having been constructed yet).  It's a chicken and
egg problem so we can't reorder the file, but ps works anyway and
accomplishes its purpose of supplying data to initialize the random
number generator.

20 years agoReplace pci_cfgread and pci_cfgwrite with PCIB_READ_CONFIG and
Joerg Sonnenberger [Thu, 15 Jan 2004 21:18:18 +0000 (21:18 +0000)]
Replace pci_cfgread and pci_cfgwrite with PCIB_READ_CONFIG and
PCIB_WRITE_CONFIG.

Merged in FreeBSD rev 1.167, without 1.162 and 1.166.

20 years agoAdd comment for nexus_pcib_write_config.
Joerg Sonnenberger [Thu, 15 Jan 2004 20:45:09 +0000 (20:45 +0000)]
Add comment for nexus_pcib_write_config.

20 years agoUse nexus_pcib_read_config instead of pci_cfgread. Do some cleanup.
Joerg Sonnenberger [Thu, 15 Jan 2004 20:41:57 +0000 (20:41 +0000)]
Use nexus_pcib_read_config instead of pci_cfgread. Do some cleanup.

20 years agoRemove HOSE support which should be implemented in the bus function when
Joerg Sonnenberger [Thu, 15 Jan 2004 20:35:06 +0000 (20:35 +0000)]
Remove HOSE support which should be implemented in the bus function when
Alpha support is re-enabled.
Add BUS pcib ivar.
Add pcib interface functions.

20 years agominor syntax cleanups (non-operational changes).
Matthew Dillon [Thu, 15 Jan 2004 20:17:36 +0000 (20:17 +0000)]
minor syntax cleanups (non-operational changes).

20 years agoAdd pcib interface methods.
Joerg Sonnenberger [Thu, 15 Jan 2004 19:58:30 +0000 (19:58 +0000)]
Add pcib interface methods.
Add device to catch the PCI bridges to stop them showing up twice.
Add black hole device for the PCI bus PnP ID.

20 years agoAdd pcib_if.m
Joerg Sonnenberger [Thu, 15 Jan 2004 18:22:22 +0000 (18:22 +0000)]
Add pcib_if.m

20 years ago* Add in 'device ips' to the LINT kernel config.
David Rhodus [Thu, 15 Jan 2004 16:20:06 +0000 (16:20 +0000)]
* Add in 'device ips' to the LINT kernel config.

20 years ago* Add in ips.4 to the Makefile so it gets installed
David Rhodus [Thu, 15 Jan 2004 15:53:19 +0000 (15:53 +0000)]
* Add in ips.4 to the Makefile so it gets installed

Sent in by: YONETANI Tomokazu <ghwt+dragonfly-kernel@les.ath.cx>

20 years ago* Change SUBDIR sort order.
David Rhodus [Thu, 15 Jan 2004 15:42:51 +0000 (15:42 +0000)]
* Change SUBDIR sort order.

20 years ago* Add in support for the IBM ServeRAID controller.
David Rhodus [Thu, 15 Jan 2004 15:41:23 +0000 (15:41 +0000)]
* Add in support for the IBM ServeRAID controller.

Port done and sent in by:
TONETANI Tomokazu <ghwt+dragonfly-kernel@les.ath.cx>

20 years agoFix a long-standing bug in protocol 2 operation. The client will top sending
Matthew Dillon [Thu, 15 Jan 2004 12:03:00 +0000 (12:03 +0000)]
Fix a long-standing bug in protocol 2 operation.  The client will top sending
window updates to the server if and output channel fails.  Output channels
often fail when pipes fail or the filesystem becomes full.  If the server has
a great deal more data to send it will exhaust its window and stall
indefinitely.

This reproduces the problem:

limit filesize 64k
ssh remotebox -n cat /usr/share/dict/words | cat > junkfile

20 years agoFix linker issues with /usr/libexec/elf/ld not using rtld's search path
Joerg Sonnenberger [Thu, 15 Jan 2004 11:59:27 +0000 (11:59 +0000)]
Fix linker issues with /usr/libexec/elf/ld not using rtld's search path

20 years agoSync pci_cfgreg.c with FreeBSD 5, rev. 1.101. This makes the PCI interrupt
Joerg Sonnenberger [Thu, 15 Jan 2004 08:05:41 +0000 (08:05 +0000)]
Sync pci_cfgreg.c with FreeBSD 5, rev. 1.101. This makes the PCI interrupt
routing code more robust. Also copied pci_cfgreg.h into bus/pci/i386, the
other instance in machine/pci_cfgreg.h will go later.

20 years agonpx_intr() expects an interrupt frame but was given something inbetween an
Matthew Dillon [Thu, 15 Jan 2004 00:03:08 +0000 (00:03 +0000)]
npx_intr() expects an interrupt frame but was given something inbetween an
interrupt frame and a trap frame, causing a panic.  Save/restore %ebx
(the CPL) just like the other entry points in this file do, push the
two 32 bit words required to convert the trap frame into an interrupt
frame, and clean up the frame on return for the jump to doreti.

Reported-by: David Rhodus <drhodus@catpa.com>
20 years agoCleanup the vm_map_entry_[k]reserve/[k]release() API. This API is used to
Matthew Dillon [Wed, 14 Jan 2004 23:26:14 +0000 (23:26 +0000)]
Cleanup the vm_map_entry_[k]reserve/[k]release() API.  This API is used to
guarentee that sufficient vm_map_entry structures are available for certain
atomci VM operations.

The kreserve/krelease API is only supposed to be used to dig into the kernel
reserve, used when zalloc() must recurse into kmem_alloc() in order to
allocate a new page.  Without this we can get into a kmem_alloc -> zalloc ->
kmem_alloc deadlock.

kreserve/krelease was being used improperly in my original work, causing it
to be unable to guarentee the reserve and resulting in an occassional panic.
This commit converts the improper usage back to using the non-k version of
the API and (should) properly handle the zalloc() recursion case.

Reported-by: David Rhodus <drhodus@catpa.com>
20 years agoDrop chip driver and merge the functionality into pci_probe_nomatch.
Joerg Sonnenberger [Wed, 14 Jan 2004 18:20:19 +0000 (18:20 +0000)]
Drop chip driver and merge the functionality into pci_probe_nomatch.
Adjust return value of pcib_probe to -1000 for conformance to other
default matches. Do some general cleanup.

20 years agoFix indentation to tabs, no functional changes
Joerg Sonnenberger [Wed, 14 Jan 2004 18:03:05 +0000 (18:03 +0000)]
Fix indentation to tabs, no functional changes

20 years agoAdd black hole device for system PnP IDs
Joerg Sonnenberger [Wed, 14 Jan 2004 07:16:37 +0000 (07:16 +0000)]
Add black hole device for system PnP IDs

20 years agoMake hw.firewire.sbp.tags tunable
Joerg Sonnenberger [Wed, 14 Jan 2004 07:13:27 +0000 (07:13 +0000)]
Make hw.firewire.sbp.tags tunable

20 years agoAdd a missing thread pointer to a busdma call that needs it.
Matthew Dillon [Wed, 14 Jan 2004 05:30:57 +0000 (05:30 +0000)]
Add a missing thread pointer to a busdma call that needs it.

Reported-by: David Rhodus <drhodus@machdep.com>
20 years ago* Use id(1) instead of grep(1) to detect the presence of the smmsp
David Rhodus [Wed, 14 Jan 2004 03:55:36 +0000 (03:55 +0000)]
* Use id(1) instead of grep(1) to detect the presence of the smmsp
user/group. This fixes the check for users with smmsp in NIS
instead of their local files.

Idea taken from FreeBSD

20 years agoAdd rman_get_device and rman_get_size, use macros in nexus.c
Joerg Sonnenberger [Tue, 13 Jan 2004 18:45:37 +0000 (18:45 +0000)]
Add rman_get_device and rman_get_size, use macros in nexus.c

20 years agoAdd PCIBUS to nexus
Joerg Sonnenberger [Tue, 13 Jan 2004 18:31:58 +0000 (18:31 +0000)]
Add PCIBUS to nexus

20 years agoAdd hw.firewire.sbp.tags to control tagging for SBP devices. The default
Joerg Sonnenberger [Tue, 13 Jan 2004 17:32:12 +0000 (17:32 +0000)]
Add hw.firewire.sbp.tags to control tagging for SBP devices. The default
behaviour was changed to disable tagged command queues, which is safer since
not all firewire chips support TCQ.

20 years agoANSIfy procedure arguments.
Matthew Dillon [Tue, 13 Jan 2004 08:22:12 +0000 (08:22 +0000)]
ANSIfy procedure arguments.

20 years ago* Perform some man page maintenance bringing the miibus related
David Rhodus [Tue, 13 Jan 2004 01:48:59 +0000 (01:48 +0000)]
* Perform some man page maintenance bringing the miibus related
pages up to date with current usage

* Minor cleanup applied to kue.4 while here.

Sent in by: Christian Brueffer <chris@unixpages.org>

20 years ago* Update so as to reflect structure name changes to upcall.h
David Rhodus [Mon, 12 Jan 2004 16:48:37 +0000 (16:48 +0000)]
* Update so as to reflect structure name changes to upcall.h

20 years agoMinor corrections to the documentation.
Matthew Dillon [Mon, 12 Jan 2004 06:54:09 +0000 (06:54 +0000)]
Minor corrections to the documentation.

Submitted-by: Miguel Mendez <flynn@energyhq.es.eu.org>
20 years agoSplit off the PCCARD specific driver parts of fd and sio and remove last
Joerg Sonnenberger [Sun, 11 Jan 2004 16:45:17 +0000 (16:45 +0000)]
Split off the PCCARD specific driver parts of fd and sio and remove last
uses of NCARD and use_card.h. The header will go with the NEWCARD merge.

20 years agoArg3 to kern_fcntl was incorrectly passed as NULL, causing
Matthew Dillon [Fri, 9 Jan 2004 21:49:30 +0000 (21:49 +0000)]
Arg3 to kern_fcntl was incorrectly passed as NULL, causing
a panic.

Submitted-by: Andrew Atrens <atrens@nortelnetworks.com>
20 years ago* Remove HTT option from kernel config files.
David Rhodus [Fri, 9 Jan 2004 20:52:05 +0000 (20:52 +0000)]
* Remove HTT option from kernel config files.

20 years ago* Remove the HTT option from the kernel as we can now
David Rhodus [Fri, 9 Jan 2004 20:49:39 +0000 (20:49 +0000)]
*       Remove the HTT option from the kernel as we can now
pickup the BIOS option if you want to use the logical
cores.

You will still need to compile your kernel with
options        SMP
options        APIC_IO

Because the logical cpu's for the most part still act
like extra processors even though this is not true.

The idea is taken from JHB's changes in FreeBSD but without
the idle loop changes so as not to get the "Hyerthreading
slowdown" affect FreeBSD seems to have with HTT.

20 years ago* Don't install the freefall gnats files into /etc as
David Rhodus [Fri, 9 Jan 2004 20:25:13 +0000 (20:25 +0000)]
* Don't install the freefall gnats files into /etc as
they are useless.

20 years ago* Add usb_mem.c back into the build process so the usb module
David Rhodus [Fri, 9 Jan 2004 16:46:42 +0000 (16:46 +0000)]
* Add usb_mem.c back into the build process so the usb module
doesn't have undefined symbols.

Sent in by: YONETANI Tomokazu <qhwt+dragonfly-commits@les.ath.cx>

20 years agoSynchronise partially with NetBSD's v1.85:
Jeroen Ruigrok/asmodai [Thu, 8 Jan 2004 19:00:26 +0000 (19:00 +0000)]
Synchronise partially with NetBSD's v1.85:

update location of documentation

20 years agoSynchronise partially with NetBSD's umodem.c v1.46:
Jeroen Ruigrok/asmodai [Thu, 8 Jan 2004 18:56:20 +0000 (18:56 +0000)]
Synchronise partially with NetBSD's umodem.c v1.46:

update the URLs for the documentation.

20 years agoSpell 'weird' the way English expects it.
Jeroen Ruigrok/asmodai [Thu, 8 Jan 2004 18:48:07 +0000 (18:48 +0000)]
Spell 'weird' the way English expects it.

20 years agoSpell 'separate' and its siblings the way it is supposed to.
Jeroen Ruigrok/asmodai [Thu, 8 Jan 2004 18:39:19 +0000 (18:39 +0000)]
Spell 'separate' and its siblings the way it is supposed to.

20 years agoGet rid of PZERO. This was removed about the first of August.
Jeroen Ruigrok/asmodai [Thu, 8 Jan 2004 18:12:59 +0000 (18:12 +0000)]
Get rid of PZERO.  This was removed about the first of August.
It probably compiled due to the preprocessor defining code out.

20 years agoMake sure the vendor identifier matches the right project. The binutils
Jeroen Ruigrok/asmodai [Thu, 8 Jan 2004 17:22:33 +0000 (17:22 +0000)]
Make sure the vendor identifier matches the right project.  The binutils
folks want this.

20 years ago* Merge in the copyright that DragonFly is being distributed under.
David Rhodus [Thu, 8 Jan 2004 17:10:08 +0000 (17:10 +0000)]
* Merge in the copyright that DragonFly is being distributed under.

Idea taken from FreeBSD.

20 years agoMake sure we identify our toolchain as DragonFly, not FreeBSD. This is
Jeroen Ruigrok/asmodai [Thu, 8 Jan 2004 13:22:58 +0000 (13:22 +0000)]
Make sure we identify our toolchain as DragonFly, not FreeBSD.  This is
required by the GCC and binutils folks.

20 years agoAdd card_if.h dependency
Joerg Sonnenberger [Thu, 8 Jan 2004 10:19:48 +0000 (10:19 +0000)]
Add card_if.h dependency

20 years agoAdd/uncondionalize the sixt argument of set_memory_offset to ease the migration
Joerg Sonnenberger [Thu, 8 Jan 2004 10:06:29 +0000 (10:06 +0000)]
Add/uncondionalize the sixt argument of set_memory_offset to ease the migration
to the FreeBSD-5 cardbus framework.

20 years agoMake the phase synchronization of the hz clock interrupt (I8254 timer0)
Matthew Dillon [Thu, 8 Jan 2004 08:11:12 +0000 (08:11 +0000)]
Make the phase synchronization of the hz clock interrupt (I8254 timer0)
to the timecounter more generic.  This will work with all time counters
as long as the 8254's crystal isn't to terribly off, but it could take a
few minutes for the computer to lock the phase after boot.  I'm being
conservative here and do not want to skew the clock interrupt too much.

Tested by: Paul Herman <pherman@frenchfries.net>

20 years agoAdd necessary critical sections to microtime() and nanotime().
Matthew Dillon [Wed, 7 Jan 2004 20:21:46 +0000 (20:21 +0000)]
Add necessary critical sections to microtime() and nanotime().

20 years agoFix a bug introduced in the last commit. When calculating the delta count
Matthew Dillon [Wed, 7 Jan 2004 20:21:20 +0000 (20:21 +0000)]
Fix a bug introduced in the last commit.  When calculating the delta count
from the 8254 we have to use timer0_max_count + 1 instead of timer0_max_count
because our frequency correction may load timer0_max_count + 1.

Implement clkintr_pending in the FAST_INTR path as well as the normal INTR
path.

20 years agoMove the FreeBSD 2.2 and 3.x PCI compatibility code into pci_compat.c and let it
Joerg Sonnenberger [Wed, 7 Jan 2004 18:13:19 +0000 (18:13 +0000)]
Move the FreeBSD 2.2 and 3.x PCI compatibility code into pci_compat.c and let it
depend on COMPAT_OLDPCI. Adjust LINT to accordingly.

20 years agonote last commit based on evidence supplied by: Paul Herman <pherman@frenchfries...
Matthew Dillon [Wed, 7 Jan 2004 11:08:06 +0000 (11:08 +0000)]
note last commit based on evidence supplied by: Paul Herman <pherman@frenchfries.net>

20 years agotvtohz() was originally designed for tsleep() and timeout() operations but
Matthew Dillon [Wed, 7 Jan 2004 11:07:04 +0000 (11:07 +0000)]
tvtohz() was originally designed for tsleep() and timeout() operations but
it is also used to time nanosleep() ops.  The problem is that in order to
compensate for the fact that a clock interrupt might occur just after a
thread blocks or registers a timeout, this function effectively added +1
to the returned value plus added another +1 for timeouts that were not
integer multiples if the clock interrupt frequency.

Split tvtohz() into two routines: tvtohz_low() and tvtohz_high().
tvtohz_low() does not do any compensation, tvtohz_high() does.

Add the kern.sleep_hardloop sysctl, which defaults to 0 (off).  If set to
1 this will cause nanosleep() to attempt to time exactly the requested
interval (which could cost more cpu) rather then rounding it off to a
multiple of hz.  If set to 2 nanosleep() will only do the more rigid
timing for requests less then 1 second.   Also change the normal hz-baesd
case to only compensate by +1, not +2, in order to improve accuracy.

20 years agoCompensate for the frequency error that occurs at higher 'hz' settings.
Matthew Dillon [Wed, 7 Jan 2004 10:59:09 +0000 (10:59 +0000)]
Compensate for the frequency error that occurs at higher 'hz' settings.
e.g. by default at 100hz the 8254 running at 1193182Hz needs
a count load of 11931.82, but we can only load integer values so the
clock interrupt winds up being slightly slower or faster then 100hz.
This will fix phase creep in things like nanosleep().

The problem is solved by keeping track of the fractional error and
adjusting the counter load register for the following interrupt.

Report-by: Paul Herman <pherman@frenchfries.net>
20 years ago*** empty log message ***
Matthew Dillon [Wed, 7 Jan 2004 10:54:57 +0000 (10:54 +0000)]
*** empty log message ***

20 years agobktr depends on bktr_mem. Add a KMODDEPS line.
Matthew Dillon [Wed, 7 Jan 2004 03:15:01 +0000 (03:15 +0000)]
bktr depends on bktr_mem.  Add a KMODDEPS line.

Reported-by: Adam K Kirchhoff <adamk@voicenet.com>
20 years ago * Nuke calendar.freebsd
Eirik Nygaard [Tue, 6 Jan 2004 20:26:38 +0000 (20:26 +0000)]
 * Nuke calendar.freebsd

20 years agoAdd PCI identifier to match against a Dell OEM version of the SB Live!
Jeroen Ruigrok/asmodai [Tue, 6 Jan 2004 16:31:55 +0000 (16:31 +0000)]
Add PCI identifier to match against a Dell OEM version of the SB Live!

20 years agoAdd support for SoundBlaster Audigy and Audigy 2.
Jeroen Ruigrok/asmodai [Tue, 6 Jan 2004 16:07:41 +0000 (16:07 +0000)]
Add support for SoundBlaster Audigy and Audigy 2.

Based on patches by Orlando Bassotto, which were taken from the ALSA Project
and the SoundBlaster OSS repository.

20 years ago * Add devname_r(3) function, which takes a buffer and buffer length as
Eirik Nygaard [Tue, 6 Jan 2004 15:38:09 +0000 (15:38 +0000)]
 * Add devname_r(3) function, which takes a buffer and buffer length as
   arguments.

20 years ago * Default to a calendar file that actually exists (calendar.all)
Eirik Nygaard [Tue, 6 Jan 2004 15:29:09 +0000 (15:29 +0000)]
 * Default to a calendar file that actually exists (calendar.all)

20 years agoSynch up with FreeBSD 5 with clean up changes.
Jeroen Ruigrok/asmodai [Tue, 6 Jan 2004 08:35:42 +0000 (08:35 +0000)]
Synch up with FreeBSD 5 with clean up changes.
-h option added (for help)
Relative volume values are now also supported.

Submitted by: Craig Dooley <craig@xlnx-x.net>

20 years agoAdd the -r option to set the hostname based on a reverse lookup of an IP
Matthew Dillon [Tue, 6 Jan 2004 08:29:34 +0000 (08:29 +0000)]
Add the -r option to set the hostname based on a reverse lookup of an IP
address, the -i option to set the hostname based on a reverse lookup of
an interface's primary IP address, and -6 and -4 to select an interface's
IPV4 or IPV6 address to run the reverse on.

Submitted-by: Kent Ibbetson <bsd@kibbet.com>
20 years agoif_xname support Part 2b/2: Convert remaining netif devices and implement full
Matthew Dillon [Tue, 6 Jan 2004 03:21:18 +0000 (03:21 +0000)]
if_xname support Part 2b/2: Convert remaining netif devices and implement full
support for if_xname.  Restructure struct ifnet in net/if_var.h, pulling in
a few minor additional changes from current including making if_dunit an int,
and making if_flags an int.

Submitted-by: Max Laier <max@love2party.net>
20 years agoif_xname support Part 2/2: Convert remaining netif devices and implement full
Matthew Dillon [Tue, 6 Jan 2004 03:17:28 +0000 (03:17 +0000)]
if_xname support Part 2/2: Convert remaining netif devices and implement full
support for if_xname.  Restructure struct ifnet in net/if_var.h, pulling in
a few minor additional changes from current including making if_dunit an int,
and making if_flags an int.

Submitted-by: Max Laier <max@love2party.net>
20 years agoif_xname support Part 1/2: Convert most of the netif devices to use
Matthew Dillon [Tue, 6 Jan 2004 01:40:51 +0000 (01:40 +0000)]
if_xname support Part 1/2: Convert most of the netif devices to use
if_initname().

Submitted-by: Max Laier <max@love2party.net>
20 years agoMaintain the fnmatch() API from FreeBSD-5 using an inline, rename the
Matthew Dillon [Tue, 6 Jan 2004 01:05:52 +0000 (01:05 +0000)]
Maintain the fnmatch() API from FreeBSD-5 using an inline, rename the
core fnmatch procedure to _fnmatch, and add a nesting count to it to avoid
stack overflows.  Also cleanup the syntax (mainly add braces and ansification).

20 years agoImport the libkern/fnmatch code from FreeBSD-5.
Matthew Dillon [Tue, 6 Jan 2004 00:56:49 +0000 (00:56 +0000)]
Import the libkern/fnmatch code from FreeBSD-5.

Submitted-by: Max Laier <max@love2party.net>
20 years agoWhen you attempt to kldload snd_sb16 and then unload it, the system crashes.
Matthew Dillon [Mon, 5 Jan 2004 20:23:53 +0000 (20:23 +0000)]
When you attempt to kldload snd_sb16 and then unload it, the system crashes.

the problem turns out to be in snd_pcm.  snd_sbc needs a dependancy on
snd_pcm.  Without it, if you load a module that depends on both snd_sbc and
snd_pcm (like snd_sb16), then later try to unload it, the system may
unload snd_pcm before snd_sbc causing a panic.

Reported-by: Galen Sampson <galen_sampson@yahoo.com>, esmith <esmith@patmedia.net>
20 years ago* Merge in changes from FreeBSD with some modification
David Rhodus [Mon, 5 Jan 2004 17:40:00 +0000 (17:40 +0000)]
* Merge in changes from FreeBSD with some modification
by drhodus.

date: 2003/12/02 07:57:20;  author: ps;  state: Exp;
After extensive QA cycles at 3ware, bring the driver in-line with all the
issues which they found and asked to be changed so 3ware can offcially
support the driver.

Summary of the most significant changes:

- TWE_OVERRIDE is no longer supported
- If twe_getparam failed, bogus data would be returned to the caller
- Cache the device unit in the twe_drive structure to aid debugging
- Add the 3ware driver version.
- Proper return error codes for many functions.
- Track the minimum queue length statistics
- 4.x compat: use the cached unit number from the twe_drive structure
  instead of the the cached si_drv2.  3ware found that after many loads
   and unloads that si_drv2 became corrupted.  This did not happen in
   -current.

20 years ago* Add in some basic parameter values that we will use for
David Rhodus [Mon, 5 Jan 2004 17:36:20 +0000 (17:36 +0000)]
* Add in some basic parameter values that we will use for
synchronization of the device drivers.

20 years agoReplace the boring beastie with a dragonfly.
Jeroen Ruigrok/asmodai [Mon, 5 Jan 2004 16:34:52 +0000 (16:34 +0000)]
Replace the boring beastie with a dragonfly.

Submitted by: Aaron Malone <aaron@munge.net>

20 years agoAdd entry for the EHCI controller, pretty common these days (especially
Jeroen Ruigrok/asmodai [Mon, 5 Jan 2004 14:07:31 +0000 (14:07 +0000)]
Add entry for the EHCI controller, pretty common these days (especially
if you care about USB 2.0).

20 years agoRemove proc related extern's from sys/proc.h that are now static's inside
Matthew Dillon [Sun, 4 Jan 2004 22:14:39 +0000 (22:14 +0000)]
Remove proc related extern's from sys/proc.h that are now static's inside
kern_switch.c

Submitted-by: Peter Kadau <peter.kadau@tuebingen.mpg.de>
20 years ago * Remove the historical r in front of the old raw character devices in /dev
Eirik Nygaard [Sun, 4 Jan 2004 20:33:44 +0000 (20:33 +0000)]
 * Remove the historical r in front of the old raw character devices in /dev

Rerun `MAKEDEV all` in /dev after you have installed the new MAEKDEV script
to remove the old r* devices.

20 years ago * Remove the use of the kern.devname sysctl since it does not exist.
Eirik Nygaard [Sun, 4 Jan 2004 20:20:16 +0000 (20:20 +0000)]
 * Remove the use of the kern.devname sysctl since it does not exist.
 * K&R function removal

20 years ago * K&R function removal
Eirik Nygaard [Fri, 2 Jan 2004 18:19:49 +0000 (18:19 +0000)]
 * K&R function removal

20 years ago* Welcome the DragonFly project into to new year by bumping
David Rhodus [Thu, 1 Jan 2004 18:31:09 +0000 (18:31 +0000)]
* Welcome the DragonFly project into to new year by bumping
up the copyright year.

20 years agoFix a bug: remove an extra crit_enter() in the default waitport/waitmsg
Matthew Dillon [Thu, 1 Jan 2004 00:32:34 +0000 (00:32 +0000)]
Fix a bug: remove an extra crit_enter() in the default waitport/waitmsg
function.

20 years agoRearrange an INVARIANTS overflow test so it works with more immediacy.
Matthew Dillon [Thu, 1 Jan 2004 00:31:46 +0000 (00:31 +0000)]
Rearrange an INVARIANTS overflow test so it works with more immediacy.

20 years agoGet EHCI to compile. This will make USB2.0 work when 'device ehci' is
Matthew Dillon [Thu, 1 Jan 2004 00:29:25 +0000 (00:29 +0000)]
Get EHCI to compile.  This will make USB2.0 work when 'device ehci' is
specified.  Note that USB2.0 support is not as good as USB1.x support,
but it does appear to work with my USB2.0 external hard drive.

20 years ago* Remove references to deprecated options.
David Rhodus [Wed, 31 Dec 2003 03:22:57 +0000 (03:22 +0000)]
* Remove references to deprecated options.

Sent in from: Kent Ibbetson <bsd@kibbet.com>

20 years agoBump the network interface cloning API to what is in 5.x with the following
Matthew Dillon [Tue, 30 Dec 2003 03:56:04 +0000 (03:56 +0000)]
Bump the network interface cloning API to what is in 5.x with the following
nice additions:

1) All if_unit allocations are handled in the cloner common case
removing a lot of (repetitive) code from callers as well as the rman.h
dependency.

2) Initial device instances are created when the cloner is attached.

Submitted-by: Max Laier <max@love2party.net>
Testing-by: David Rhodus <drhodus@machdep.com>
20 years agoCleanup a DIAGNOSTIC test so LINT compiles.
Matthew Dillon [Tue, 30 Dec 2003 03:33:28 +0000 (03:33 +0000)]
Cleanup a DIAGNOSTIC test so LINT compiles.

Report-by: David Rhodus <drhodus@catpa.com>
20 years agoAdd idle entry halt vs spin statistics counters machdep.cpu_idle_*,
Matthew Dillon [Tue, 30 Dec 2003 03:19:04 +0000 (03:19 +0000)]
Add idle entry halt vs spin statistics counters machdep.cpu_idle_*,
Clear the reschedule flag in chooseproc() to prevent stale reschedule
requests from causing double-reschedules, and only disable HLT when a
system interrupt is pending (verses non critical process requests which
do not apply to the idle thread).

Problem focused in by: YONETANI Tomokazu <qhwt+dragonfly-kernel@les.ath.cx>

20 years agoThese files have been moved to bus/usb.
Matthew Dillon [Tue, 30 Dec 2003 01:04:04 +0000 (01:04 +0000)]
These files have been moved to bus/usb.

20 years agoBring in the entire FreeBSD-5 USB infrastructure. As of this commit my
Matthew Dillon [Tue, 30 Dec 2003 01:01:48 +0000 (01:01 +0000)]
Bring in the entire FreeBSD-5 USB infrastructure.  As of this commit my
USB camera, Hard Drive, Mouse, and Sony memory key all work and I can even
unplug and replug them in without crashing the port.

Not all drivers and subsystems compile as of this commit, but the ones that
do not are very close.

20 years agoAdd support for cam_calc_geometry(), from FreeBSD-5.
Matthew Dillon [Mon, 29 Dec 2003 23:31:00 +0000 (23:31 +0000)]
Add support for cam_calc_geometry(), from FreeBSD-5.

20 years agoAdd missing prototypes in last commit, other minor adjustments.
Matthew Dillon [Mon, 29 Dec 2003 23:09:30 +0000 (23:09 +0000)]
Add missing prototypes in last commit, other minor adjustments.

20 years agoGet rid of individual /* $xxx$ */ comments entirely (which was an artifact
Matthew Dillon [Mon, 29 Dec 2003 18:07:38 +0000 (18:07 +0000)]
Get rid of individual /* $xxx$ */ comments entirely (which was an artifact
of the original programmatic adding of the $DragonFly id), and just put all
the id's in one big comment.

20 years agominor syntax cleanup
Matthew Dillon [Mon, 29 Dec 2003 18:04:59 +0000 (18:04 +0000)]
minor syntax cleanup

20 years agoPrimarily add a missing lwkt_reltoken() in ntfs_ntput(), plus a little
Matthew Dillon [Mon, 29 Dec 2003 18:04:50 +0000 (18:04 +0000)]
Primarily add a missing lwkt_reltoken() in ntfs_ntput(), plus a little
cleanup.  Remove a few gettoken/reltoken pairs (depend on the MP lock more).
NTFS, as a non-critical filesystem, will eventually be serialized anyway.

From-panics-reported-by: Adam K Kirchhoff <adamk@voicenet.com>
20 years ago* Merge From FreeBSD
David Rhodus [Mon, 29 Dec 2003 16:00:01 +0000 (16:00 +0000)]
* Merge From FreeBSD

deischen    2003/12/29 07:18:01 PST

  FreeBSD src repository

  Modified files:        (Branch: RELENG_4)
    lib/libc_r/uthread   uthread_write.c
  Log:
  MFC: In the wrapped write(), return if the syscall write() returns 0.

  PR:     59291

20 years ago* Merge From FreeBSD
David Rhodus [Mon, 29 Dec 2003 15:04:13 +0000 (15:04 +0000)]
* Merge From FreeBSD

yar         2003/12/29 06:24:58 PST

  FreeBSD src repository

  Modified files:        (Branch: RELENG_4)
    sys/netgraph         ng_pppoe.c
  Log:
  MFC: Fix the DoS condition triggered by a non-standard PPPoE frame.

20 years ago* Add ending comment to line as to avoid warning messages.
David Rhodus [Mon, 29 Dec 2003 14:45:36 +0000 (14:45 +0000)]
* Add ending comment to line as to avoid warning messages.

20 years agoFix the peripheral list scan code, which was broken when the new linker set
Matthew Dillon [Mon, 29 Dec 2003 08:37:38 +0000 (08:37 +0000)]
Fix the peripheral list scan code, which was broken when the new linker set
code was brought in.  This caused camcontrol, cdrecord, and other cam-using
entities to be unable to lookup SCSI devices by bus:target:lun.