summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Lock access to the buf lists in spec_sync()jeff2002-09-251-7/+15
| | | | - Fixup interlock locking in spec_close()
* - Hold the vp lock while accessing v_vflags.jeff2002-09-251-5/+7
|
* - Lock down the syncer with sync_mtx.jeff2002-09-252-74/+191
| | | | | | | | | | | | | | | | | | | - Enable vfs_badlock_mutex by default. - Assert that the vp is locked in VOP_UNLOCK. - Use standard interlock macros in remaining code. - Correct a race in getnewvnode(). - Lock access to v_numoutput with interlock. - Lock access to buf lists and splay tree with interlock. - Add VOP and VI asserts. - Lock b_vnbufs with the vnode interlock. - Add vrefcnt() for callers who want to retreive the vnode ref without holding a lock. Add a comment that describes when this is safe. - Add vholdl() and vdropl() so that callers who already own the interlock can avoid race conditions and unnecessary unlocking. - Move the VOP_GETATTR() in vflush() into the WRITECLOSE conditional case. - Hold the interlock before droping the mntlist_mtx in vflush() to avoid a race. - Fix locking in vfs_msync().
* - Properly lock v_vflags in getdirents().jeff2002-09-252-8/+28
|
* - Use incore() where no other interlock locking is necessary.jeff2002-09-251-2/+6
| | | | - Lock access to numoutput.
* - Lock accesses to v_numoutput.jeff2002-09-251-0/+16
| | | | - Lock calls to gbincore.
* Back down to 1003.2-1992 for the time being -- it is causing too manywollman2002-09-251-1/+1
| | | | headaches for common but deprecated uses of standard utilities.
* - Don't protect mountedhere with the vn interlock.jeff2002-09-251-5/+7
| | | | - Protect mountedhere with the vn lock.
* - Use the standard vp interlock macros.jeff2002-09-251-8/+12
|
* - Finish the struct vnode lock annotation.jeff2002-09-251-30/+34
| | | | - Order fields by what lock is required to access them.
* - Get rid of the unused LK_NOOBJ.jeff2002-09-252-2/+2
|
* - Lock access to numoutput on the swap devices.jeff2002-09-252-0/+4
|
* - Add a ASSERT_VOP_LOCKED in vnode_pager_alloc.jeff2002-09-251-2/+7
| | | | - Lock access to v_iflags.
* Removed debug code.jake2002-09-251-57/+1
|
* Pass the function to call (trap or syscall) to tl0_trap and tl1_trap in %o2.jake2002-09-251-7/+31
|
* Rearrange tl1_trap slightly, also save and restore the out registers sojake2002-09-241-12/+27
| | | | that instruction emulation is possible in kernel mode.
* Add some PCI id's for fxp. I've only tested 0x103B, but the Intelps2002-09-241-0/+4
| | | | | | | Linux driver defines 0x103[B-E] so add those as well. Obtained from: Intel Linux e100 driver MFC: Immediately if re@ allows it, otherwise after 4.7-RELEASE
* Get howmany() macro from <sys/param.h>, instead of depending on itsmike2002-09-241-1/+1
| | | | existence in <sys/types.h>.
* Allocate stack space for the trapframe along with the normal registerjake2002-09-241-5/+1
| | | | frame in the save instruction, rather than doing a separate sub.
* Code cleanup: use mpt_prt instead of device_printf.mjacob2002-09-245-222/+171
|
* Remove all mention of MTX_NOSWITCH. It was obsoleted a long time ago.jhb2002-09-241-36/+7
|
* Use POSIX-style sort syntax in exampleache2002-09-241-1/+1
|
* Make it works with POSIX sort (POS arg)ache2002-09-241-1/+1
| | | | All old sorts understand -k too.
* Make it works with POSIX sort (POS arg)ache2002-09-241-1/+1
| | | | All old sorts understand -k too.
* Set _POSIX2_VERSION=199209 before calling MKkey_defs.sh as workaround ofache2002-09-242-2/+2
| | | | obsolete +POS sort syntax.
* The spec says that unifdefall removes all #ifs, and this now requiresfanf2002-09-241-2/+2
| | | | the -k flag to unifdef.
* The readability is improved by reducing the use of the passive voice.fanf2002-09-241-10/+10
| | | | No changes to the meaning are made.
* It is probably a bad idea to unconditionally process directives withfanf2002-09-242-10/+41
| | | | | | | | | | constant controlling expressions: in particular, removing #if 0 sections is considered "rude". This commit changes the default so that such things are passed through unchanged, and the old behaviour can be had with the -k "kill konsts" flag. Suggested by: markm MFC after: 3 weeks
* Make it work with POSIX sort (POS arg).ache2002-09-241-1/+3
| | | | All old sorts understand -k too.
* Correct the description of what fortunes get installed (by default, also theschweikh2002-09-241-3/+5
| | | | | | | | | offensive ones). Make it clear that datfiles/Makefile needs to be edited in case someone wants it otherwise. PR: misc/36153 Submitted by: Nick Jennings <nick@namodn.com> X-MFC after: 4.7 is out the door.
* Make it work with POSIX sort (POS arg).ache2002-09-245-5/+5
| | | | All old sorts understand -k too.
* Make it work with POSIX sort (POS arg)ache2002-09-241-2/+2
| | | | All old sorts understand -k too.
* Convert most printf()s to if_printf()s.brooks2002-09-241-15/+10
|
* Add a new helper function if_printf() modeled on device_printf(). Thebrooks2002-09-242-0/+15
| | | | | | | | function takes a struct ifnet pointer followed by the usual printf arguments and prints "<interfacename>: " before the results of printf. Since this is the primary form of printf calls in network device drivers and accounts for most uses of the ifnet menber if_unit, this significantly simplifies many printf()s.
* Add forgotten <sys/_types.h> include. Fix some style bugs while I'mmike2002-09-241-39/+40
| | | | | | here. PR: 43326
* Mention about how to build sendmail with SASLv2.ume2002-09-241-0/+6
|
* Split user trap processing out into a separate routine so that traps whichjake2002-09-241-67/+109
| | | | never result in user traps don't have to plow through it.
* Corrected license in the source files. It should say "MUST" instead of "MAY".pdeuskar2002-09-245-104/+94
| | | | MFC after: 2 days
* Fix some bitrotted documentation.markm2002-09-243-24/+18
|
* Warn when setinvalidrune() is referenced for consistency with the resttjr2002-09-241-0/+1
| | | | | of the rune functions (except sgetrune() and sputrune(), which are really macros).
* Add cross-references between wide character and single-byte charactertjr2002-09-243-2/+6
| | | | versions of printf() and scanf().
* Remove an unneeded call to _sfrefill() that was missed in the conversiontjr2002-09-241-6/+0
| | | | | from vfscanf() to vfwscanf(). It doesn't hurt to have it there, but it's redundant since __fgetwc() will refill the buffer if it needs to.
* Back out last commit. Linux uses the old 4.3BSD sockaddr format.mini2002-09-247-60/+25
|
* Add support to fsck_ffs to account for storage for extendedmckusick2002-09-241-1/+19
| | | | | | attributes. Sponsored by: DARPA & NAI Labs.
* MFi386: revisions 1.127, 1.128 and 1.129.nyan2002-09-241-20/+21
|
* OLDCARD -> NEWCARDimp2002-09-241-8/+11
| | | | | | pccbb -> cbb PR: 43263
* Two new majors. devd and watchdogimp2002-09-241-0/+2
|
* Move the com_emr register definition to sioreg.h.nyan2002-09-243-8/+1
|
* Merged from sys/dev/sio/sio.c revision 1.379.nyan2002-09-242-2/+0
|
* MFi386: revisions 1.536 and 1.538.nyan2002-09-242-12/+8
|
OpenPOWER on IntegriCloud