summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix a typojulian2002-07-241-5/+7
| | | | | | Cleanup a define Correct locking notes (a bit) Add a definition and a field for future work on thread suspension.
* Oops, another unused arg to nfssvc_nfsd(). *blush*peter2002-07-241-3/+3
| | | | Submitted by: jake
* Inline ${_cxx_consumers}.ru2002-07-241-2/+1
|
* We're done with 1.287 and 1.288 now.peter2002-07-241-7/+0
| | | | Submitted by: ru
* Fully exterminate nfsd_srvargs and nfsd_cargs. They were either unusedpeter2002-07-242-41/+10
| | | | | or giant NOP's. There was a credential in srvargs that was giving rwatson some heartburn. :-)
* Remove WARNS and WFORMAT overrides.mp2002-07-241-2/+0
|
* If NO_MAILWRAPPER is set, and sendmail is still enabled, then installpeter2002-07-241-0/+8
| | | | a direct symlink to sendmail.
* enable fdisk for ia64 as well as i386peter2002-07-242-4/+4
|
* Only install the mbr code on i386.. not ia64. This changes it frompeter2002-07-242-2/+2
| | | | #ifndef __alpha__ to #ifdef __i386__
* Turn nfsiod back on. It is basically now just a sysctl wrapper that alsopeter2002-07-241-0/+1
| | | | arranges a kldload of the nfs client file system code if necessary.
* WARNS cleanpeter2002-07-242-7/+6
|
* Fake a resume method for this chip via calling detach/attach. This letsambrisko2002-07-241-1/+10
| | | | | | | ThinkPads using this chip to have sound after a suspend/resume sequence without resorting to kldunload/kldload. MFC after: 1 week
* Copy the right dhclient-script(8).ru2002-07-241-1/+1
|
* When single threading a multithreaded program, awaken thejulian2002-07-242-0/+14
| | | | | | | | | 'single threading thread' when the last other thread suspends. I had this code in there before but it seems to have been accidentally deleted somewhere along the way. This would only affect multithreaded processes. Reviewed by: David Xu <bsddiy@yahoo.com>
* Fix a stupid bug where I wasn't initializing the namesmux2002-07-241-9/+10
| | | | of 0-length mount options.
* o Merge vm_fault_wire() and vm_fault_user_wire() by adding a new parameter,alc2002-07-243-56/+11
| | | | user_wire.
* make sure to set/unset INP_IPV4 according to a valueume2002-07-241-0/+4
| | | | | | of IN6P_IPV6_V6ONLY Reviewed by: Keiichi SHIMA <keiichi@iij.ad.jp>
* - ntohs() returns unsigned value.ume2002-07-241-59/+56
| | | | | | | | | | | | | - use strlcpy. - snprintf can return negative value, so cope with it. - tweak interface index on interface locals (ff01::/16). - removed unused macros. - removed a macro that uses only once (in a trivial context). - explicitly say goodbye to ENI_xxx. - constify struct afd. Obtained from: KAME MFC after: 1 week
* style(9): - Put a space after the 'return' keyword.robert2002-07-241-5/+7
| | | | - Wrap lines longer than 80 characters.
* Use an ANSI-C function definition rather than arobert2002-07-241-3/+1
| | | | K&R one to avoid a warning.
* - Add a COMPATIBILITY section explaining that the defaultrobert2002-07-241-2/+12
| | | | | | | | | | behaviour of obtaining the affected terminal has changed. - Refer to the user's terminal instead of the current terminal session. - Tell the reader what the utility does when it is invoked without arguments. Submitted by: johan
* Document upgrade procedure.mp2002-07-242-0/+21
|
* This commit was generated by cvs2svn to compensate for changes in r100616,mp2002-07-24151-1871/+2531
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of tcsh-6.12.00mp2002-07-24151-1871/+2531
| |
* | Re-use passive data ports with the SO_REUSEADDRyar2002-07-241-10/+16
| | | | | | | | | | | | | | | | | | socket option to avoid exausting the passive port space by TIME_WAIT'ing connections. PR: bin/36955 Submitted by: Maxim Konovalov <maxim@FreeBSD.org> MFC after: 2 weeks
* | Allow selection of the affected terminal using redirectionrobert2002-07-242-1/+10
| | | | | | | | | | | | of standard input or standard output, like mesg(1) does. Suggested by: sheldonh
* | Under #ifdef DIAGNOSTIC, NULL out componentname pointers if we free therwatson2002-07-241-2/+18
| | | | | | | | | | | | pnbuf to increase the chances of detecting use of a free'd name buffer if SAVENAME or SAVESTART wasn't passed in. Curiously, running with these changes doesn't panic the kernel, and should.
* | Remove the outdated casts to "char *" from the setsockopt(2),yar2002-07-242-17/+15
| | | | | | | | | | | | | | | | | | write(2), and getipnodebyaddr(3) calls. Now all the above functions accept "void *" in that arguments and have prototypes. Thus, the casts are useless under the normal circumstances (and would be harmful if the functions had no prototypes.) MFC after: 2 weeks
* | Move m_freem() from uipc_mbuf.c to subr_mbuf.c so it can take advantagebmilekic2002-07-242-8/+48
| | | | | | | | | | | | | | | | | | | | | | of the inlines, like its cousin, m_free(). Also, make a small (first step?) optimisation of m_free() to use the MBP_PERSIST{,ENT} interface to hold the lock across frees when possible. The thing is that right now, we can only do this easily for at most across one mbuf + one cluster free, as the comment mentions (it also explains why). Anyway, some basic tests revealed a 5-10% overall improvement. Some of the results can be found here: http://people.freebsd.org/~bmilekic/code/measure.txt
* | Move whereis(1) relnote to 'userland changes' section.johan2002-07-242-10/+10
| | | | | | | | Approved by: bmah, sheldonh (mentor)
* | Clean up the syslog(3) messages on the setsockopt(2) errors:yar2002-07-241-12/+14
| | | | | | | | | | | | | | | | | | o Always check a setsockopt(2) return value o Use a consistent message format o Don't abort if the failed setsockopt(2) was actually not vital o Use LOG_WARNING, not LOG_ERR, in non-fatal cases MFC after: 1 week
* | Teach whereis(1) about games.johan2002-07-243-5/+9
| | | | | | | | Approved by: joerg, sheldonh (mentor)
* | Stick a dark comment in about the fact that the NFS server code allocatesrwatson2002-07-241-0/+7
| | | | | | | | | | | | | | | | a ucred by itself as part of an nfs descriptor, then bzero's the ucred, fails to initialize the mutex, etc. This is very bad, but I don't have time to fix it right now. nfsd should instead hold a cred pointer, and the credential should be properly initialized, probably from a descendent of a kernel process credential.
* | Catch up to rev 1.87 of sys/sys/socketvar.h (sb_cc changed from u_longmike2002-07-241-1/+1
| | | | | | | | | | | | to u_int). Noticed by: sparc64 tinderbox
* | Move sio's ebus attachment to the MI files section so it is compiled injhb2002-07-242-1/+1
| | | | | | | | for any machines that use ebus.
* | Move sio_isa.c back to MD files files due to PC98 brain damage.jhb2002-07-246-1/+5
| |
* | MFi386: revision 1.407 (move the em driver entry to MI file)nyan2002-07-241-2/+0
| |
* | Remove the word IPSec to respect RFCs (for exampleblackend2002-07-241-1/+0
| | | | | | | | | | | | | | | | | | http://www.ietf.org/rfc/rfc2401.txt), IPsec is the right word and already in the dictionary. PR: in part docs/38668 Reviewed by: murray MFC after: 10 days
* | When suspending a thread, update the appropriate (sic) statistic.julian2002-07-242-0/+2
| |
* | revert some of the handling of STOP signals injulian2002-07-241-8/+0
| | | | | | | | | | | | | | issignal(). Let thread_suspend_check() actually do the suspension at the user boundary. Submitted by: David Xu <bsddiy@yahoo.com>
* | Widen struct sockbuf's sb_timeo member to int from short. Withjdp2002-07-2412-30/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | non-default but reasonable values of hz this member overflowed, breaking NFS over UDP. Also, as long as I'm plowing up struct sockbuf ... Change certain members from u_long/long to u_int/int in order to reduce wasted space on 64-bit machines. This change was requested by Andrew Gallatin. Netstat and systat need to be rebuilt. I am incrementing __FreeBSD_version in case any ports need to change.
* | Only log things net.inet.ip.fw.verbose is setluigi2002-07-241-1/+2
| |
* | Avoid calling el_resize() from a signal handler, even though libedittjr2002-07-243-2/+11
| | | | | | | | | | | | | | itself does that if you set EL_SIGNAL. Instead, set a flag and check it before calling el_gets(). This is safer, but slower to respond to changes. Pointed out by: mp
* | Fix warning.jake2002-07-241-0/+4
| |
* | Attempt to clarify comment in selrecord.alfred2002-07-241-4/+8
| |
* | More userland section translationgioria2002-07-231-166/+164
| |
* | Install more man pages - I thought I'd committed this ages ago...des2002-07-231-0/+5
| |
* | Whitespace nit.des2002-07-231-1/+1
| |
* | Updated release notes: lint 20020719, smbfs-1.4.5, texinfo 4.2.bmah2002-07-232-8/+8
| |
* | Revert previous delta for cut(1) and calendar(1) as they were not appliedtrhodes2002-07-232-3/+11
| | | | | | | | correctly. My fault, forgot that -current was checked out.
OpenPOWER on IntegriCloud