| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert removal of cred_free_thread(): It is used to ensure that a thread's | mini | 2002-07-11 | 3 | -0/+19 |
* | Open accounting file for appending, not general writing. | johan | 2002-07-10 | 1 | -7/+8 |
* | Replace the global buffer hash table with per-vnode splay trees using a | dillon | 2002-07-10 | 3 | -96/+263 |
* | Don't slow every syscall and trap by doing locks and stuff if the | julian | 2002-07-10 | 1 | -3/+7 |
* | Rearrange the code so that it checks whether the file is something | truckman | 2002-07-10 | 1 | -9/+8 |
* | Remove vfs_stdmount() and vfs_stdunmount(). They are not | mux | 2002-07-09 | 1 | -20/+0 |
* | - Use the new vop_lookup_{pre,post} instead of simpler locking specification. | jeff | 2002-07-09 | 1 | -2/+4 |
* | - Use standard locking functions in syncer's opv | jeff | 2002-07-09 | 2 | -9/+50 |
* | Fix a minor whitespace style nit that broke 'grep ^uuidgen'. | jhb | 2002-07-09 | 1 | -1/+2 |
* | Add a VFS_START() call in vfs_mountroot_try() for the sake | mux | 2002-07-08 | 1 | -1/+2 |
* | Fixed some printf format errors (one new one reported by gcc and 3 nearby | bde | 2002-07-08 | 1 | -2/+2 |
* | Collect all the (now equivalent) pmap_new_proc/pmap_dispose_proc/ | peter | 2002-07-07 | 3 | -2/+123 |
* | - Require locks for getattr. At some point this could only require shared | jeff | 2002-07-07 | 1 | -3/+1 |
* | - Delay unlocking a vnode in linker_hints_lookup until we're actually done | jeff | 2002-07-07 | 1 | -5/+4 |
* | Make this compile on 64 bit platforms | peter | 2002-07-07 | 2 | -8/+8 |
* | - Don't hold the vn lock while calling VOP_CLOSE in vclean(). | jeff | 2002-07-07 | 1 | -6/+10 |
* | - BUF_REFCNT() seems to be the preferred method for verifying a locked buf. | jeff | 2002-07-07 | 1 | -3/+9 |
* | Add two asserts that prove & document getblk and geteblk's behavior of | jeff | 2002-07-07 | 1 | -0/+2 |
* | Fix a mistake in my last commit. Don't grab an extra reference to the object | jeff | 2002-07-06 | 2 | -4/+1 |
* | Fixup uses of GETVOBJECT. | jeff | 2002-07-06 | 2 | -15/+14 |
* | make this repect ps_sigintr if there is a pre-existing signal | julian | 2002-07-06 | 1 | -1/+0 |
* | Clean up execve locking: | jeff | 2002-07-06 | 3 | -5/+20 |
* | - Disable original vop_strategy lock specification. | jeff | 2002-07-06 | 1 | -1/+2 |
* | - Add vop_strategy_pre to validate VOP_STRATEGY locking. | jeff | 2002-07-06 | 1 | -0/+16 |
* | Use the new #! directive for vop_rename. Leave the old lock specification | jeff | 2002-07-06 | 1 | -4/+5 |
* | Add "vop_rename_pre" to do pre rename lock verification. This is enabled only | jeff | 2002-07-06 | 1 | -1/+20 |
* | Fix at least one of the things wrong with signals | julian | 2002-07-06 | 1 | -6/+9 |
* | Remove the advertising clause from the Duke BSD copyright on the | gallatin | 2002-07-06 | 2 | -8/+2 |
* | dd %i as an alias for %d for greater compatibility with our *BSD bretheren | imp | 2002-07-05 | 1 | -0/+1 |
* | Include systm.h before vnode.h so Debugger() and printf() are available when | jeff | 2002-07-05 | 1 | -1/+1 |
* | o Resurrect vm_page_lock_queues(), vm_page_unlock_queues(), and the free | alc | 2002-07-04 | 1 | -0/+1 |
* | Move vfs_rootmountalloc() in vfs_mount.c and remove lite2_vfs_mountroot() | mux | 2002-07-03 | 2 | -71/+44 |
* | Try clean up some of the mess that resulted from layers and layers | julian | 2002-07-03 | 2 | -59/+32 |
* | Remove an unused argument in vfs_mountroot(). | mux | 2002-07-03 | 2 | -2/+2 |
* | White space commit. | julian | 2002-07-03 | 1 | -10/+10 |
* | Hold the sched lock across call to forward_signal() in tdsignal() to | gallatin | 2002-07-03 | 1 | -1/+4 |
* | Add mtx_ prefixes to the fields used for mutex profiling, and fix a bug | des | 2002-07-03 | 2 | -22/+24 |
* | I didn't pay enough attention when copy/pasting disclaimers. | mux | 2002-07-02 | 1 | -2/+2 |
* | Move every code related to mount(2) in a new file, vfs_mount.c. | mux | 2002-07-02 | 5 | -2626/+1213 |
* | When going back to SLEEP state, make sure our | julian | 2002-07-02 | 1 | -0/+1 |
* | Fix failure to correctly transition back to sleep mode. | julian | 2002-07-02 | 1 | -0/+4 |
* | #include <sys/ktrace.h> would be useful too. (for ktrace_mtx) | peter | 2002-07-01 | 1 | -0/+3 |
* | The jail syscall calls chroot, which is not mpsafe, so put back a | iedowse | 2002-07-01 | 1 | -0/+2 |
* | Add #include "opt_ktrace.h" | peter | 2002-07-01 | 1 | -0/+2 |
* | Use indirect function pointer hooks instead of #ifdef SOFTUPDATES | iedowse | 2002-07-01 | 3 | -14/+13 |
* | - In thread_userret(), remove the Giant locking and unlocking around the | arr | 2002-07-01 | 2 | -4/+0 |
* | If the process is a zombie, then you must not try dereference the thread | julian | 2002-06-30 | 1 | -53/+55 |
* | Partial backout of 1.318, remove error handling added because it may be | alfred | 2002-06-30 | 1 | -15/+3 |
* | Add a hashdestroy() function to undo the actions of hashinit(). | iedowse | 2002-06-30 | 1 | -0/+15 |
* | Fix several style bugs: | alfred | 2002-06-29 | 1 | -7/+17 |