| Commit message (Expand) | Author | Age | Files | Lines |
* | - Remove GIANT_REQUIRED from pipespace(). | alc | 2003-08-08 | 1 | -4/+0 |
* | Copyin the thread mailbox flags from the correct location | deischen | 2003-08-08 | 2 | -2/+2 |
* | td_dupfd just needs to be less than 0, it does not have to hold the | jhb | 2003-08-07 | 2 | -2/+2 |
* | Update some argument-documenting comments to match reality. | nectar | 2003-08-07 | 3 | -6/+9 |
* | Consistently use the BSD u_int and u_short instead of the SYSV uint and | jhb | 2003-08-07 | 5 | -15/+15 |
* | The ktrace mutex does not need to be locked around the post of the ktrace | jhb | 2003-08-07 | 1 | -1/+1 |
* | - Remove GIANT_REQUIRED from pipe_free_kmem(). | alc | 2003-08-07 | 1 | -3/+0 |
* | If connect(2) has been interrupted by a signal and therefore the | yar | 2003-08-06 | 1 | -3/+8 |
* | kse.h is not needed for these files. | davidxu | 2003-08-05 | 2 | -2/+0 |
* | Introduce a thread mailbox flag TMF_NOUPCALL. On some architectures other | davidxu | 2003-08-05 | 2 | -14/+36 |
* | Make the second argument to sooptcopyout() constant in order to | hsu | 2003-08-05 | 1 | -4/+1 |
* | In the mknod(), mkfifo(), link(), symlink() and undelete() syscalls, | iedowse | 2003-08-05 | 2 | -10/+46 |
* | Do some minor Giant pushdown made possible by copyin, fget, fdrop, | dwmalone | 2003-08-04 | 2 | -19/+14 |
* | Adjust a comment to remove staleness and take slightly less implementation | jhb | 2003-08-04 | 1 | -6/+2 |
* | Set td_critnest to 1 when setting up a thread since it is a MI field with | jhb | 2003-08-04 | 2 | -0/+2 |
* | Insert cosmetic spaces. | jhb | 2003-08-04 | 1 | -2/+2 |
* | Move more ACL logic from the UFS code (ufs_acl.c) to the central POSIX.1e | rwatson | 2003-08-04 | 3 | -3/+252 |
* | Both 'c' an 'lines' are unused, the bogus init of lines was accidentally | jhb | 2003-08-02 | 1 | -2/+1 |
* | Use kmem_alloc_nofault() rather than kmem_alloc_pageable() in proc_rwmem(). | alc | 2003-08-02 | 1 | -1/+1 |
* | Grab Giant in bufdonebio() since drivers may not hold it. | phk | 2003-08-02 | 1 | -0/+4 |
* | Grab Giant in physio() since non-giant drivers are starting to appear. | phk | 2003-08-02 | 1 | -0/+3 |
* | Eliminate an abuse of kmem_alloc_pageable() in bufinit() | alc | 2003-08-02 | 1 | -6/+1 |
* | Use kmem_alloc_nofault() rather than kmem_alloc_pageable() in sf_buf_init(). | alc | 2003-08-02 | 1 | -1/+1 |
* | Fix kernel build -- 'c' was the unused var, not 'lines'. | obrien | 2003-08-01 | 1 | -1/+1 |
* | Attempt to simplify #ifdef logic for MAC_ALWAYS_LABEL_MBUF. | rwatson | 2003-08-01 | 1 | -28/+18 |
* | Remove Giant from writev(2). Eliminate trivial style differences between | alc | 2003-08-01 | 1 | -11/+4 |
* | If a spin lock is held for too long and WITNESS is enabled, then call | jhb | 2003-07-31 | 2 | -6/+18 |
* | Add a new function to look for a spinlock's instance when it is held by | jhb | 2003-07-31 | 1 | -0/+21 |
* | Update the 'ps', 'show pci', and 'show ktr' ddb commands to use the new | jhb | 2003-07-31 | 1 | -23/+11 |
* | When ktracing context switches, make sure we record involuntary switches. | peter | 2003-07-31 | 1 | -0/+14 |
* | Use correct signal when calling sigexit. | davidxu | 2003-07-30 | 1 | -1/+3 |
* | Remove test in pipe_write() which causes write(2) to return EAGAIN | pb | 2003-07-30 | 1 | -1/+1 |
* | When complaining about a sleeping thread owning a mutex, display the | jhb | 2003-07-30 | 2 | -2/+6 |
* | The introduction of vm object locking has caused witness to reveal | alc | 2003-07-30 | 1 | -1/+1 |
* | Revision 1.51 of vm/uma_core.c modified uma_large_free() to acquire Giant | alc | 2003-07-29 | 1 | -6/+0 |
* | Rename VOP_RMEXTATTR() to VOP_DELETEEXTATTR() for consistency with the | rwatson | 2003-07-28 | 4 | -5/+7 |
* | When exporting file descriptor data for threads invoking the | rwatson | 2003-07-28 | 1 | -0/+11 |
* | Pass the file descriptor index down to vn_open. | phk | 2003-07-27 | 2 | -2/+26 |
* | Pass the fdidx argument from vn_open{_cred}() onto VOP_OPEN() | phk | 2003-07-27 | 1 | -3/+3 |
* | Add fdidx argument to vn_open() and vn_open_cred() and pass -1 throughout. | phk | 2003-07-27 | 12 | -16/+17 |
* | Call the new argument "fdidx" that is more precise than "fd". | phk | 2003-07-27 | 1 | -1/+1 |
* | Now that we can call kmem_malloc without Giant it should be safe | dwmalone | 2003-07-27 | 1 | -2/+0 |
* | Add a "int fd" argument to VOP_OPEN() which in the future will | phk | 2003-07-26 | 5 | -4/+5 |
* | Guard against MLEN growing larger than a uint8_t due to MSIZE grwoing to a | scottl | 2003-07-26 | 3 | -0/+6 |
* | revision 1.51 of vm/uma_core.c modified uma_large_malloc() to acquire | alc | 2003-07-25 | 1 | -6/+0 |
* | The POSIX spec also requires that kern_sigtimedwait return | mtm | 2003-07-24 | 1 | -1/+1 |
* | Initialize 'blocked' to NULL. I think this was a real problem, but I | peter | 2003-07-23 | 1 | -0/+1 |
* | Revert stuff which accidentally ended up in the previous commit. | phk | 2003-07-22 | 9 | -46/+15 |
* | Don't attempt to inline large functions mb_alloc() and mb_free(), | phk | 2003-07-22 | 10 | -17/+48 |
* | Always deliver synchronous signal to UTS for SA threads. | davidxu | 2003-07-21 | 1 | -2/+14 |