summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Merged from sys/i386/conf/GENERIC revision 1.315.kato2001-07-241-0/+1
|
* Simplify the implementation of pmap_emulate_reference(). The new versiondfr2001-07-243-59/+76
| | | | | | | simply manipulates the pte which faulted instead of traversing the mapping list for that page. This makes it possible to complete the trap without needing locks and incidentally improves the accuracy of some statistics used by the VM system.
* Use the IANA assignment IFT_L2VLAN directly instead of indirecting throughfenner2001-07-242-5/+2
| | | | | | a privately #defined IFT_8021_VLAN. MFC after: 3 days
* Turn on __STRICT_ALIGNMENT. We need this to fix up alignment so the alphawpaul2001-07-231-1/+1
| | | | won't trap.
* Add an external function to unlink a netgraph type from the types list.julian2001-07-232-0/+21
|
* AIEEE! Commit the firmware image too. *blush*wpaul2001-07-231-0/+5089
|
* Grrr. Module depends on vlan.h, and I committed the wrong versionwpaul2001-07-232-1/+2
| | | | | of if_txpreg.h, which didn't have sc_rxbufprod defined in the softc struct.
* You were knocked senseless by the Boomerang, spun around by the Cyclone,wpaul2001-07-2311-0/+2613
| | | | | | | | | | | | | | | | | | blown over by the Hurricane and had a house dropped on you by the Tornado. Now it's time to have your parade rained on by... the Typhoon! This commit adds driver support for 3Com 3cR990 10/100 ethernet adapters based on the Typhoon I and Typhoon II chipsets. This is actually a port of the OpenBSD driver with many hacks by me. No Virginia, there isn't any support for the hardware crypto yet. However there is support for TCP/IP checksum offload and VLANs. Special thanks go to Jason Wright, Aaron Campbell and Theo de Raadt for squeezing enough info out of 3Com to get this written, and for doing most of the hard work. Manual page is included. Compiled as a module and included in GENERIC.
* Remind people to document bumps in the Porter's Handbook.obrien2001-07-231-0/+6
|
* Avoid a NULL pointer derefence introduced in rev. 1.129.ru2001-07-231-24/+21
| | | | | | Problem noticed by: bde, gcc(1) Panic caught by: mjacob Patch tested by: mjacob
* Integrate fdc.h into fd.c.nyan2001-07-232-4/+250
|
* make vm_page_select_cache staticassar2001-07-232-2/+1
| | | | Requested by: bde
* s/adress/address/kris2001-07-237-7/+7
| | | | | Inspired by: OpenBSD MFC After: 1 week
* Typo fix: fasion -> fashionkris2001-07-231-1/+1
| | | | | Inspired by: OpenBSD MFC After: 1 week
* Added the linux_sysinfo function to implement sysinfo(2).pirzyk2001-07-234-3/+78
| | | | | | | PR: kern/27759 Reviewed by: marcel Approved by: marcel MFC after: 1 week
* Added the proper arguments the sysinfo system callpirzyk2001-07-231-1/+1
| | | | | | | | PR: kern/27759 Reviewed by: marcel Approved by: marcel Obtained from: Linux man page sysinfo(2) MFC after: 1 week
* add %option nounputassar2001-07-221-0/+2
|
* Add a few missing spl calls in preparation for an MFC of the miibusiedowse2001-07-221-6/+15
| | | | support.
* Note that the umass device requires scbus and dakris2001-07-222-2/+2
|
* Remove an old hack that remembered if the card type was Linksys byiedowse2001-07-221-7/+3
| | | | | | | storing a flag in the global variable 'linksys' during the probe routine and reading it during the attach routine. We now have the ED_VENDOR_LINKSYS vendor code stored in sc->vendor, so check that instead.
* make driver compile under 4.3-STABLEhm2001-07-221-0/+4
|
* Don't do sleep state transition if specified sleep state is notiwasaki2001-07-223-14/+20
| | | | supported by the system.
* Attach the miibus for Linksys/Dlink cards from the attach routine,iedowse2001-07-222-6/+11
| | | | | | | | | | | not from the probe routine. This was an oversight when I originally ported the miibus support to -current, though it was mostly harmless. We now set the vendor code to the new value ED_VENDOR_LINKSYS in ed_pccard_Linksys() at probe time. Then ed_pccard_attach() checks the vendor code, and sets up the miibus if appropriate. Reviewed by: imp
* As per further discussions on hackers redo the SIGCHLD patch to not generatedillon2001-07-222-8/+8
| | | | | | | | | an unexpected user-visible side effect with the sigaction flags. Also cleanup a minor union issue. Submitted by: Rudolf Cejka <cejkar@dcse.fee.vutbr.cz> MFC addendum: MFC will be combined w/ original commit MFC after: 3 days
* - Fix "off by one" error in VT_WAITACTIVATE. Correctly acceptyokota2001-07-221-5/+5
| | | | | | | | 0 as meaning the requesting vty. - Accept 0 as the requesting vty in VT_ACTIVATE as in VT_WAITACTIVE. PR: 24423 MFC after: 10 days
* revert previous commit (bad style and not needed)assar2001-07-221-1/+0
| | | | Noticed: bde
* Add another Dell 3/Di PCI ID. You'd think they had enough of thesemsmith2001-07-221-0/+1
| | | | already...
* add prototype for dosetrlimitassar2001-07-222-2/+2
|
* revert previous accidental commitassar2001-07-221-1/+5
|
* get rid of some printf and pointer type warningsassar2001-07-228-20/+18
|
* add <sys/sytm.h> (for cpufunc.h -> rdtsc)assar2001-07-211-0/+1
|
* add <sys/cdefs.h> (for __unused and such)assar2001-07-211-0/+1
|
* null_do_probe: mark as unusedassar2001-07-211-0/+2
|
* (vm_page_select_cache): add prototypeassar2001-07-211-0/+1
|
* Unset MAINTAINER.rnordier2001-07-218-16/+0
|
* update step.hm2001-07-212-4/+4
|
* Convert from acpi_strerror() to AcpiFormatException()msmith2001-07-2113-43/+39
| | | | Fix dangling include of the dear departed acpi_ecreg.h
* Update the OSD module to match the ACPI CA 20010717 import.msmith2001-07-218-144/+178
| | | | Submitted by: "Grover, Andrew" <andrew.grover@intel.com> (OsdHardware.c)
* Implement a "proper" timecounter hung off the ACPI timer device.msmith2001-07-211-20/+207
| | | | | | | | | This code is based on the mp_clock code by phk. It attempts to detect the PIIX4 (see comments for details) and use a workaround for its problems. This code is experimental, and could use some testing and review by a timekeeping enthusiast.
* Merge the EC register definitions into the EC module proper, they're notmsmith2001-07-212-204/+71
| | | | | | used anywhere else. AcpiOsSleepUsec() -> AcpiOsStall()
* Use our saved copy of the FADT rather than fetching it again.msmith2001-07-211-13/+5
|
* Don't call ourselves a "control method" anything, that's not useful.msmith2001-07-211-4/+6
| | | | | Move the "button pressed" diagnostics to the point where we can print out which button was actually pressed.
* The API for loading tables changed (we no longer explicitly search for themsmith2001-07-212-19/+4
| | | | | | | | | | | RSDP, it's now found via a callback). AcpiOsSleepUsec() went away, use AcpiOsSleep() instead (we could use AcpiOsStall() too) AcpiFormatException() was changed to make more sense (it behaves like our old acpi_strerror() did), so throw acpi_strerror() away (still #defined in acpivar.h though, we need to sweep these seperately).
* Merge local changes with the ACPI CA 20010717 import.msmith2001-07-215-114/+80
|
* This commit was generated by cvs2svn to compensate for changes in r80062,msmith2001-07-2177-1287/+1240
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of the Intel ACPI CA 20010717 snapshot.msmith2001-07-2182-1401/+1320
| |
* | This commit was generated by cvs2svn to compensate for changes in r80060,msmith2001-07-211-0/+190
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of the Intel ACPI CA 20010717 snapshot.msmith2001-07-211-0/+190
| |
* | Add a missing ~ so that the LO_INITIALIZED flag actually gets turned offjhb2001-07-201-1/+1
| | | | | | | | in witness_destroy().
* | Put a knob in the kernel config files to tweak the user max stack size.pirzyk2001-07-203-4/+9
| | | | | | | | | | | | PR: kern/28925 Reviewed by: bakul@bitblocks.com and tlambert2@mindspring.com on -arch. MFC after: 1 week
OpenPOWER on IntegriCloud