summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add manual page for snd_via82c686(4).simon2005-03-092-0/+58
| | | | | | Submitted by: Joel Dahl <joel@automatvapen.se> PR: docs/78586 MFC after: 3 days
* Add manual page for snd_vibes(4).simon2005-03-092-0/+58
| | | | | | Submitted by: Joel Dahl <joel@automatvapen.se> PR: docs/78580 MFC after: 3 days
* Document, via WITNESS, that the NFS server mutex falls ahead of the socketrwatson2005-03-091-0/+5
| | | | buffer mutexes.
* In light of the recent 2^69 operation collision-finding attack on SHA1,cperciva2005-03-097-10/+546
| | | | | | | | add support for SHA256. Tested on: i386, sparc64 Tested using: NIST test vectors, built-in tests X-MFC-after: 5.4-RELEASE
* Markup fixes: use &tm.*;, &man.*;, and <quote>.hrs2005-03-091-6/+6
|
* Retire the Early Adopter's Guide in HEAD.hrs2005-03-093-563/+0
|
* New release notes:hrs2005-03-092-2/+80
| | | | | | | | | | | ddb(4) "show alllocks" command, fix reading config files with a line without a newline character, TCP RST handling improved and net.inet.tcp.insecure_rst sysctl, lpd(8) data file check, and syslogd(8) ":" and "%" characters in hostname. MFC: ipfw with debug.mpsafenet=1.
* Add myself.novel2005-03-091-0/+1
| | | | Approved by: krion (mentor)
* Implement a new macro LST_NEXT which is like Lst_Succ but doesn't checkharti2005-03-091-0/+1
| | | | for its argument to be non-NULL.
* Split SuffExpandChildren into three functions: one that skipsharti2005-03-091-179/+190
| | | | | | variables and expands archive specifications, one that expands wild cards and a driver that loops over the children list and expands each child if necessary replacing it with it's expansions.
* The third parameter to SHA_Update and SHA1_Update is a "size_t", not acperciva2005-03-091-2/+2
| | | | "unsigned int".
* connect wlan_acl to the buildsam2005-03-091-0/+1
| | | | Submitted by: Alexey Zelkin
* - Remove the BURN_BRIDGES marked support for hooking into the ISA timer 0jhb2005-03-096-724/+10
| | | | | | | | interrupt. - Remove the timer_func variable as it now has a static value of hardclock() and is only used in one place. Axe borrowed from: phk
* correct space checksam2005-03-091-1/+1
| | | | Submitted by: ume
* reported from VANHULLEBUS Yvan [remote kernel crash may result]ume2005-03-091-1/+1
| | | | | | Submitted by: itojun Obtained from: KAME MFC after: 1 day
* Merge the following from the English version:den2005-03-095-1937/+55
| | | | | | | | 1.261 -> 1.274 hardware/common/dev.sgml 1.13 -> 1.14 hardware/i386/proc-i386.sgml 1.4 -> 1.5 hardware/pc98/proc-pc98.sgml 1.28 -> 1.30 installation/common/install.sgml 1.780 -> 1.782 relnotes/common/new.sgml
* Device counts are gone.stefanf2005-03-091-1/+1
|
* My addled brains didn't realize that since vtp points into value, wedes2005-03-091-2/+5
| | | | | | can't freeenv(value) before we're done inspecting vtp[0]. Tested by: Anish Mistry <mistry.7@osu.edu>
* Fix dubious C code construct.stefanf2005-03-091-1/+1
|
* Fix typo in comment.stefanf2005-03-091-1/+1
|
* __FUNCTION__ -> __func__stefanf2005-03-091-2/+2
|
* Prefer the __printflike() macro to GCC's __attribute__ stuff.stefanf2005-03-091-1/+1
|
* Make ARP do not complain about wrong interface if correct interfaceglebius2005-03-091-7/+14
| | | | | | is a carp one and address matched it. Reviewed by: brooks
* spell resource correctly...jmg2005-03-091-1/+1
| | | | MFC after: 3 days
* Var_Subst() cannot return NULL so there is no reason to checkharti2005-03-091-105/+92
| | | | for it.
* Be consistent about the serial line terminal type.obrien2005-03-091-5/+5
| | | | CVS ----------------------------------------------------------------------
* Remove stale information in IMPLEMENTATION NOTES section about alq_open()hmp2005-03-091-6/+2
| | | | | | using the calling thread's ucred. While I am there, fix references to my name.
* Bugger, wiped out a needed comma in the previous commit.scottl2005-03-092-2/+2
|
* Make MSG_NOSIGNAL available to native programs.alfred2005-03-093-7/+13
| | | | | | Bump FreeBSD_version to note this change. Reviewed by: sobomax
* The DC driver asks for an alignment of PAGE_SIZE for data buffers, but alsoscottl2005-03-082-6/+6
| | | | | | | | | | asks that each buffer be (2048 * 256) bytes long. I suspect that alignment isn't a real requirement since busdma only recently started honoring it. The size is also bogus. Fix both of these and stop busdma from trying to exhaust the system memory pool with bounce pages. Submitted by: Kevin Oberman MFC After: 7 days
* Initialise `sn' before using its value.stefanf2005-03-081-2/+1
|
* Have ttyname_r() try to ask DEVFS for the device name.phk2005-03-082-35/+16
| | | | | | Document ttyname_r(). Simplify threaded/unthreaded stuff a lot.
* Add ioctl to ask DEVFS about the name of device.phk2005-03-081-0/+5
|
* Remove kernelside support for devfs rules filtering on major numbers.phk2005-03-082-5/+0
|
* allow the destination of m_move_pkthdr to have externalsam2005-03-081-3/+3
| | | | | | storage (e.g. a cluster) Glanced at by: rwatson, silby
* - If we fail to find an entry in the PRT, output a warning message.jhb2005-03-081-3/+6
| | | | | | | - Fix a bug in the same condition where we forgot to drop the ACPI pcib lock. This fixes hangs after the pcib0 attach on some machines. Tested by: sos (2)
* honor any desired bssid when creating an ibsssam2005-03-081-1/+4
| | | | | Prodded by: David Young Obtained from: netbsd
* reclaim mbuf chain when ieee80211_crypto_encap failssam2005-03-083-0/+3
| | | | Noticed by: David Young
* Remove redundant initialization that is repeated in the for() loopkeramida2005-03-081-2/+0
| | | | | | right below it. Approved by: jhb
* Style: fix indentation of SuffExpandChildren before working on it.harti2005-03-081-178/+194
|
* Add kernel-only flag MSG_NOSIGNAL to be used in emulation layers to surpresssobomax2005-03-083-28/+7
| | | | | | | | SIGPIPE signal for the duration of the sento-family syscalls. Use it to replace previously added hack in Linux layer based on temporarily setting SO_NOSIGPIPE flag. Suggested by: alfred
* Fixup KTR traces.mux2005-03-082-32/+32
|
* Oops, CTR*() macros are not varadic macros, and the number indicatesmux2005-03-081-18/+18
| | | | | | | the number of parameters. Fix my previous commit to use the correct CTR*() macros. Pointy hat to: mux
* Use Buf_Peel to get rid of a local variable.harti2005-03-081-4/+3
|
* Use the Buf_Peel function to get to the string contained into aharti2005-03-081-5/+1
| | | | buffer without using an extra local variable.
* Remove useless local prototypes.harti2005-03-081-4/+0
|
* Style: fix indentation.harti2005-03-081-506/+516
|
* Use the new Buf_Peel function to simplify things.harti2005-03-081-30/+9
| | | | Remove an unused struct definition.
* Create a new function Buf_Peel that returns the string from insideharti2005-03-082-0/+20
| | | | a Buffer and frees the Buffer.
* Use 12 columns for (int) values, 20 columns for (long) and alignkeramida2005-03-081-47/+50
| | | | | | | | | | | headers properly (right justified for numbers, left justified for everything else). This fixes the alignment of the fields on i386, sparc64 and amd64 today but does not dynamically assign column widths or bear in mind that some of the values may be 64-bit in the future. Reviewed by: alfred
OpenPOWER on IntegriCloud