summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Call if_link_state_change() when link status changes.glebius2005-02-041-0/+4
| | | | | PR: kern/76890 Reviewed by: rwatson, sam
* Remove another vestige of support for a non-IEEE libm.das2005-02-041-2/+0
|
* Reduce diffs against vendor source (Sun fdlibm 5.3).das2005-02-0428-428/+476
|
* Don't print out a failure message when an attach for FFixedHW fails.njl2005-02-041-16/+25
| | | | | | Instead, just fail to attach so another hardware-specific driver can claim the device. Also, clean up some small memory leaks in the failure case.
* Return a special status of "not supported" for functional fixed hardwarenjl2005-02-041-3/+3
| | | | since this type of register should be handled by another driver.
* Don't rely on indirect inclusion of machine/bus.h to useimp2005-02-041-0/+1
| | | | | | bus_space_{read,write}_* routines. This doesn't matter in the current tree, but will matter soon (the rest of the tree appears to already be clean).
* - Add ke_runq == NULL to the conditions which will cause us to abortjeff2005-02-041-2/+2
| | | | | | adjusting timeshare loads in sched_class(). This is only important if the thread has never run, otherwise the state checks should work as expected.
* Where the returned line length from Buf_GetAll is not used just passharti2005-02-042-6/+3
| | | | | | a NULL to the function. Delete the now unused local variables. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Rewrite of the buf code:harti2005-02-042-169/+95
| | | | | | | | | | - convert Buf_AddByte from a macro to a function - move #define's into the header file - remove unused field in struct Buffer - remove size fields - they can be easily computed - inline Buf_OvAddByte Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Add a Token Ring section which lists devices supported by oltr(4) for now.brueffer2005-02-042-0/+14
|
* Add oltr(4)brueffer2005-02-041-0/+1
|
* - Fix build with TRACE_MESSAGES definedglebius2005-02-041-2/+2
| | | | - Remove extra parenthesis
* cosmetic changes.nyan2005-02-041-6/+6
|
* The bs and wdc drivers are gone.nyan2005-02-041-8/+0
|
* teach scope of IPv6 address to net.inet6.tcp6.getcred.ume2005-02-042-8/+20
| | | | MFC after: 1 week
* Move machine-dependent crud to its own makefile.das2005-02-045-22/+32
|
* Remove wrappers and other cruft intended to support SVID, mistakes indas2005-02-0475-3283/+81
| | | | | | | C90, and other arcana. Most of these features were never fully supported or enabled by default. Ok: bde, stefanf
* Save last displayed file by having the "last" pointer global and save itdelphij2005-02-041-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | during we show the first file's tail. Instead of: tarsier% tail -f 1 2 ==> 1 <== foo bar ==> 2 <== bar foo ==> 2 <== bar2 foo2 Now with this change, we have: tarsier% tail -f 1 2 ==> 1 <== foo bar ==> 2 <== bar foo bar2 foo2 While I'm there, move a comment to where it should belong to. Also, const'ify the "last" static because we will never need to change the contents it points to. MFC After: 1 week
* Fix pc98 support (broken by previous change).nyan2005-02-041-1/+1
|
* Merged from sys/dev/sio/sio.c revision 1.457.nyan2005-02-042-10/+18
|
* MFi386: revision 1.605.nyan2005-02-042-18/+102
|
* None of the users of Buf_Discard used it to get rid of only a part ofharti2005-02-044-28/+13
| | | | | | | the buffer. So replace Buf_Discard by Buf_Clear which just gets rid of the entire contents. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* MFi386: revision 1.514.nyan2005-02-041-0/+1
|
* Inline the ADDWORD() macro in the two places where it is used. It justharti2005-02-041-10/+11
| | | | | | obfuscates the code. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Use _exit() instead of exit() when the exec() after a vfork() fails.harti2005-02-041-1/+1
| | | | Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Move PrintAddr() from util.c into suff.c - the only file where it isharti2005-02-043-12/+17
| | | | | | actuall used, and make it static. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* General whitespace cleanup: remove mixes of tabs and spaces, removeharti2005-02-047-86/+85
| | | | | | space after function names, remove spaces on emtpy lines. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Minor cleanup: make brk_string to return argc only if the pointer to itharti2005-02-042-15/+6
| | | | | | | | | was non-NULL. This let's us eliminated an otherwise unused variable. shellneeded can never return -1 so there is no need to check for it and hence no need for a variable to hold the returned value. Submitted by: Max Okumoto <okumoto@ucsd.edu> (partly)
* Further constification. Use a temporary hack (copying the input string)harti2005-02-042-42/+52
| | | | | | until Var_Subst is fixed. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Quote example file names consistently, and fix a small grammatical nit.ceri2005-02-041-2/+2
|
* Improve EIO error description and mention that it can also occur whilepjd2005-02-041-1/+1
| | | | | | writting. MFC after: 3 days
* This commit was generated by cvs2svn to compensate for changes in r141261,delphij2005-02-044-0/+1480
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import a (stripped) snapshot of OpenBSD's nc(1) an excellentdelphij2005-02-044-0/+1480
| | | | | | | | | | | | reimplementation of the famous tool that can do arbitrary TCP and UDP connections and listens. This gaves sysadm the same tool the crackers have, so that they may learn what the network is about and protect it better. For developers, this is an invaluable debugging tool, and a good build block of scripts. Discussed on: freebsd-hackers@
* Use an extra variable to assign to instead of missusing an inputharti2005-02-041-7/+7
| | | | | | parameter. This will help in constification. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Replace space, tab mixes by tabs.harti2005-02-041-5/+5
| | | | Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Use tabs to move to the comments instead of wild mixes of tabs and spaces.harti2005-02-041-14/+14
| | | | Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Style: line up with tabulators.harti2005-02-041-6/+6
|
* Use a typedef for the conditional handler function so that declaringharti2005-02-041-7/+9
| | | | | | pointers to these functions is easier. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Style: remove a space between a function name and the openingharti2005-02-041-1/+1
| | | | | | paranthesis. Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Some more easy constification.harti2005-02-0414-56/+65
| | | | Submitted by: Max Okumoto <okumoto@ucsd.edu>
* Make the devclass static for now until deciding whether to share them.njl2005-02-041-1/+1
|
* Bump __FreeBSD_version for cpufreq addition. Requested by marcus@njl2005-02-041-1/+1
|
* Sort includes a little so that bus.h comes before cpu.h (for device_t).njl2005-02-045-17/+18
|
* Include sys/bus.h before sys/cpu.h. The latter needs device_t.marcel2005-02-041-0/+1
|
* Set the scheduling class of the zeroidle thread to PRI_IDLE.ssouhlal2005-02-041-2/+5
| | | | | | Reviewed by: jhb Approved by: grehan (mentor) MFC after: 1 week
* Set the scheduling class of the idle threads to PRI_IDLE.ssouhlal2005-02-041-1/+2
| | | | | | | | While there, set their priority with sched_prio() instead of changing it 'by hand'. Reviewed by: jhb Approved by: grehan (mentor)
* MFi386: Merge updates to the cpu pseudo-driver. Compile, not runtimenjl2005-02-041-26/+64
| | | | tested.
* Hook up the cpufreq framework, acpi_perf(4), and cpufreq(4) drivers.njl2005-02-046-2/+30
|
* Add the ACPI Performance states driver. This driver offers two or morenjl2005-02-041-0/+420
| | | | | | | | settings as exported via the ACPI _PSS method. OEMs use this interface to encapsulate chipset or processor-specific methods (e.g., SpeedStep or Powernow) and export their settings in a standard way. On systems that have valid ACPI Performance states and a hardware-specific driver (e.g., ichss), acpi_perf(4) is preferred.
* Add a cpufreq driver for the SpeedStep capability in the ICH chipset. Thisnjl2005-02-041-0/+372
| | | | | driver offers two settings. Information for this driver was obtained from the Intel datasheets and by reviewing the Linux driver.
OpenPOWER on IntegriCloud