summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Support the DPF (start dependent function) resource type in parsing _PRS.Nate Lawson2004-03-181-10/+21
| | | | | | | | | This should fix this error people get attaching cardbus controllers: pcib0: _PRS resource entry has unsupported type 2 Notes: svn path=/head/; revision=127156
* Fix 'ps -p proclist' and 'ps -u userlist' so the command returns non-zeroGarance A Drosehn2004-03-181-3/+13
| | | | | | | | | | | if no processes were matched. Also sorts the list of 'int's in main, as long as I had to add another one... Noticed by: Nate Lawson MFC after: 10 days Notes: svn path=/head/; revision=127155
* Regen after 1.169 of usbdevs.Maxim Sobolev2004-03-182-2/+23
| | | | Notes: svn path=/head/; revision=127154
* Add support for Crystalfontz CFA-632, CFA-633 and CFA-634, all of themMaxim Sobolev2004-03-182-0/+9
| | | | | | | | | | | | | | are based on the same USB->COM bridge, but have different product IDs. PR: Submitted by: Reviewed by: Approved by: Obtained from: http://www.tnpi.biz/computing/freebsd/crystalfontz.shtml MFC after: 3 days Notes: svn path=/head/; revision=127153
* Mention the user account for 'pf' is "proxy".David E. O'Brien2004-03-181-2/+2
| | | | Notes: svn path=/head/; revision=127152
* Cleanup hints, given that no hammer machine have (nor ever will have)David E. O'Brien2004-03-181-47/+0
| | | | | | | | | ISA slots. Submitted by: Peter Notes: svn path=/head/; revision=127151
* Revise socow_iodone() in light of recent sf_buf changes. Specifically,Alan Cox2004-03-171-5/+9
| | | | | | | | | use sf_buf_free() instead of sf_buf_mext() to consolidate all actions that require the page queues lock in one critical section. While I'm here remove unnecessary splvm() and splx() calls. Notes: svn path=/head/; revision=127150
* Improvements to 'ps -p <x>'. If <x> is a process id that does not exist, thenGarance A Drosehn2004-03-172-21/+104
| | | | | | | | | | | | | | just print the header (if any) and exit, thus matching the behavior on -stable and other OS's. Also adds support for <x> being a comma-separated list of processes, and does a much better checking for invalid-values of <x>, such as 'ps -p someword'. Reviewed by: mentioned on freebsd-current MFC after: 10 days Notes: svn path=/head/; revision=127149
* Eliminate bogus usage of WI_RSSI_TO_DBM(). Not only does it boguslyBrian Feldman2004-03-171-4/+2
| | | | | | | | | clip/destroy the dB value contained in the wi(4)'s receive frames, it doesn't match with the flag set in the radiotap header (unperturbed dB versus dBm). Notes: svn path=/head/; revision=127148
* Fix border error to allow systems that specify 100 for latency also useNate Lawson2004-03-171-2/+2
| | | | | | | | | | C2 and 1000 to use C3. Submitted by: Bruno Ducrot <ducrot@poupinou.org> Tested by: Scott Lambert <lambert@lambertfam.org> Notes: svn path=/head/; revision=127147
* sync comment with i386's isa.c.. This removes a comment that is YEARSJohn-Mark Gurney2004-03-174-12/+4
| | | | | | | old... Notes: svn path=/head/; revision=127146
* Style(9) round for the pf kernel parts. Mostly #if defined() -> #ifdefMax Laier2004-03-1710-323/+283
| | | | | | | | | | | Also set HOOK_HACK to true (remove the related #ifdef's) as we have the hooks in the kernel this was missed during the merge from the port. Noticed by: Amir S. (for the HOOK_HACK part) Approved by: bms(mentor) Notes: svn path=/head/; revision=127145
* Add a comment with an explanation why we don't report EPIPE errors onPawel Jakub Dawidek2004-03-171-0/+5
| | | | | | | | | nfs sockets. Requested by: ru Notes: svn path=/head/; revision=127144
* NULL -> 0.Ruslan Ermilov2004-03-171-1/+1
| | | | Notes: svn path=/head/; revision=127143
* NULL -> 0.Ruslan Ermilov2004-03-171-1/+1
| | | | Notes: svn path=/head/; revision=127142
* Fixed a warning.Ruslan Ermilov2004-03-171-1/+1
| | | | Notes: svn path=/head/; revision=127141
* - Replace wait1() with a kern_wait() function that accepts the pid,John Baldwin2004-03-177-190/+105
| | | | | | | | | | | | | | | | | | options, status pointer and rusage pointer as arguments. It is up to the caller to copyout the status and rusage to userland if needed. This lets us axe the 'compat' argument and hide all that functionality in owait(), by the way. This also cleans up some locking in kern_wait() since it no longer has to drop locks around copyout() since all the copyout()'s are deferred. - Convert owait(), wait4(), and the various ABI compat wait() syscalls to use kern_wait() rather than wait1() or wait4(). This removes a bit more stackgap usage. Tested on: i386 Compiled on: i386, alpha, amd64 Notes: svn path=/head/; revision=127140
* remove stale comment since these limits have been increased YEARS ago...John-Mark Gurney2004-03-171-3/+1
| | | | Notes: svn path=/head/; revision=127139
* I accidently spammed rev. 1.18, back out rev 1.19.David E. O'Brien2004-03-171-1/+1
| | | | Notes: svn path=/head/; revision=127138
* Don't report EPIPE errors on nfs sockets. These can be due to idle tcpPawel Jakub Dawidek2004-03-171-2/+5
| | | | | | | | | mounts which will be closed by netapp, solaris, etc. if left idle too long. Obtained from: NetBSD Notes: svn path=/head/; revision=127137
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-17267-1125/+1090
| | | | | | | | Submitted by: Mark Santcroos <marks@ripe.net> Reviewed by: imp, dfr, bde Notes: svn path=/head/; revision=127135
* Resolve conflicts after import of OpenSSL 0.9.7d.Jacques Vidrine2004-03-179-6/+17
| | | | Notes: svn path=/head/; revision=127134
* Add bus_alloc_resource_any(9), which does bus_alloc_resource() with theNate Lawson2004-03-173-4/+27
| | | | | | | | | | | appropriate default values. Document it in the manpage. Submitted by: Mark Santcroos <marks@ripe.net> Reviewed by: imp, dfr, bde Abstains: bde Notes: svn path=/head/; revision=127133
* Update manual pages for OpenSSL 0.9.7d.Jacques Vidrine2004-03-17155-324/+1110
| | | | Notes: svn path=/head/; revision=127131
* This commit was generated by cvs2svn to compensate for changes in r127128,Jacques Vidrine2004-03-17181-1511/+2602
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=127129
| * Vendor import of OpenSSL 0.9.7d.Jacques Vidrine2004-03-17190-1517/+2619
| | | | | | | | Notes: svn path=/vendor-crypto/openssl/dist/; revision=127128
* | Fix typoChristian Brueffer2004-03-172-2/+2
| | | | | | | | Notes: svn path=/head/; revision=127127
* | o Start sentences on new linesChristian Brueffer2004-03-172-16/+34
| | | | | | | | | | | | | | o misc format fixes Notes: svn path=/head/; revision=127126
* | Language cleanupChristian Brueffer2004-03-172-18/+18
| | | | | | | | Notes: svn path=/head/; revision=127125
* | Language cleanupChristian Brueffer2004-03-171-6/+6
| | | | | | | | Notes: svn path=/head/; revision=127124
* | Fix information leakage.Pawel Jakub Dawidek2004-03-171-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without this fix it is possible to cheat policies like: - sysctl security.bsd.see_other_[gu]ids=0, - mac_seeotheruids(4), - jail(2) and get full processes list with their arguments. This problem exists from revision 1.62 of kern_proc.c when it was introduced. Reviewed by: nectar, rwatson. Notes: svn path=/head/; revision=127123
* | Make ddp_ports static, as it's not used outside of ddp_usrreq.c.Robert Watson2004-03-173-3/+2
| | | | | | | | | | | | | | | | Inspired by: Day spent hiking to hot springs in Taiwan Powered by: Asia BSDCon 2004 Notes: svn path=/head/; revision=127122
* | Update list of macros defined in <stdio.h>.Tim J. Robbins2004-03-171-1/+17
| | | | | | | | Notes: svn path=/head/; revision=127121
* | Re-add description of putc() macro (back out rev. 1.13.)Tim J. Robbins2004-03-171-2/+8
| | | | | | | | Notes: svn path=/head/; revision=127120
* | Re-add text that says getc() is a macro (back out rev. 1.16.)Tim J. Robbins2004-03-171-1/+2
| | | | | | | | Notes: svn path=/head/; revision=127119
* | This commit was generated by cvs2svn to compensate for changes in r127114,Jacques Vidrine2004-03-171-0/+8
|\| | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=127115
| * Correct a denial-of-service vulnerability in OpenSSL (CAN-2004-0079).Jacques Vidrine2004-03-171-0/+8
| | | | | | | | | | | | | | Obtained from: OpenSSL CVS (http://cvs.openssl.org/chngview?cn=12033) Notes: svn path=/vendor-crypto/openssl/dist/; revision=127114
* | Correct a grammatical error.Ceri Davies2004-03-171-1/+1
| | | | | | | | | | | | | | | | | | PR: docs/63984 Submitted by: Ulrich Spoerlein <q@uni.de> MFC after: 1 day Notes: svn path=/head/; revision=127113
* | Improved incorrect usage diagnostics.Ruslan Ermilov2004-03-171-2/+6
| | | | | | | | Notes: svn path=/head/; revision=127112
* | Trust bsd.prog.mk to set SRCS correctly.Ruslan Ermilov2004-03-171-1/+0
| | | | | | | | Notes: svn path=/head/; revision=127111
* | GC unnecessary include file.Ruslan Ermilov2004-03-172-38/+0
| | | | | | | | Notes: svn path=/head/; revision=127110
* | Adjust the number of processes waiting on a semaphore properly if we'reColin Percival2004-03-171-6/+12
| | | | | | | | | | | | | | | | | | | | | | woken up in the middle of sleeping. PR: misc/64347 Reviewed by: tjr MFC after: 7 days Notes: svn path=/head/; revision=127108
* | Move the _arlconfig define in the existing i386 section.Yoshihiro Takahashi2004-03-171-3/+1
| | | | | | | | | | | | | | Suggested by: ru Notes: svn path=/head/; revision=127107
* | This commit was generated by cvs2svn to compensate for changes in r127105,David E. O'Brien2004-03-173-1388/+0
| | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=127106
* | Avoid the whole -I${DESTDIR}/usr/include/gnu issue by includingDavid E. O'Brien2004-03-172-6/+5
| | | | | | | | | | | | | | <gnu/regex.h> vs. just <regex.h>. Notes: svn path=/head/; revision=127104
* | Adjust $FreeBSD$'s.David E. O'Brien2004-03-172-5/+1
| | | | | | | | Notes: svn path=/head/; revision=127103
* | Fix a POSIX conformance bug. POSIX says sigwait should return error numberDavid Xu2004-03-172-6/+6
| | | | | | | | | | | | | | in return value not in errno. Notes: svn path=/head/; revision=127102
* | Add a tip for people who are using database-related ports on a sparc64Garance A Drosehn2004-03-171-0/+7
| | | | | | | | | | | | | | | | | | system that they intend to upgrade to 64-bit time_t. Noticed by: Roderick van Domburg Notes: svn path=/head/; revision=127101
* | Re-add macro versions of getc(), getchar(), putc(), putchar(), feof(),Tim J. Robbins2004-03-177-34/+28
| | | | | | | | | | | | | | | | | | | | ferror(), fileno() and clearerr(), using the value of __isthreaded to decide between the fast inline single-threaded code and the more general function equivalent. This gives most of the performance benefits of the old unsafe macros while preserving thread safety. Notes: svn path=/head/; revision=127100
* | Remove tun_proc; replace with tun_pid. tun_proc pointer may be staleRobert Watson2004-03-171-7/+14
| | | | | | | | | | | | | | | | | | | | | | as the process that opens tun_softc can exit before the file descriptor is closed. Taiwan experience provided by: keichii Crashing breakers provided by: Chia-liang Kao <clkao@clkao.org> Notes: svn path=/head/; revision=127099