summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add a ng_ipfw node, implementing a quick and simple interface betweenglebius2005-02-056-0/+470
| | | | | | ipfw(4) and netgraph(4) facilities. Reviewed by: andre, brooks, julian
* Verify that SYNOPSIS section compiles.ru2005-02-0520-4/+29
|
* Added the SYNOPSIS section.ru2005-02-051-0/+4
|
* Expire aged flows in normal expiry thread. This fixes the problem, whenglebius2005-02-051-1/+2
| | | | a node disconnected from all sources of traffic never purges its cache.
* Break long lines in code and comments.glebius2005-02-051-15/+18
|
* Create a per-module mutex on MOD_LOAD, and destroy it on MOD_UNLOAD.ru2005-02-055-5/+97
| | | | | | (This fixes witness_destroy() panic after module unload.) OK'ed by: rwatson, julian
* Only compile the cpufreq driver on i386 and amd64.scottl2005-02-051-1/+3
|
* Note that functions alq_flush() and alq_post() should not be called injkoshy2005-02-051-1/+4
| | | | | | contexts where sleeping is disallowed. Pointed out by: ru
* - Don't release BKGRDINPROG until after we've bufdone'd the copy.jeff2005-02-051-14/+15
| | | | Sponsored by: Isilon Systems, Inc.
* - Use bioq_insert_tail()/bioq_insert_head() instead of bioq_disksort().pjd2005-02-051-3/+7
| | | | | | - Improve mediasize checking. MFC after: 1 week
* Do check that version of a message from userland matches ours.glebius2005-02-041-0/+5
| | | | MFC after: 3 days
* When we have converted an ASCII message to binary, set its version inglebius2005-02-041-0/+1
| | | | | | the header. Otherwise we will send a message with zero version. MFC after: 3 days
* As threatened, trim the UDPATING file to the branchpoint for RELENG_5.imp2005-02-041-1682/+6
| | | | | | | | | | | People wishing to see prior changes are encouraged to look at the UPDATING file on the RELENG_5 branch. Document when RELENG_5 was branched, as well as the 5.3 release date, as shown in the CVS logs for newvers.sh. This change should not be MFC'd. Noticed by: Matteo Riondato (and ru)
* Backout rev. 1.17 per ru@ request: there are net.graph.recvspace andmaxim2005-02-041-4/+2
| | | | net.graph.maxdgram sysctls.
* Fix a small scripting snafu in the previous revision.das2005-02-041-2/+2
|
* 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>
OpenPOWER on IntegriCloud