| Commit message (Expand) | Author | Age | Files | Lines |
* | Sweep kernel replacing suser(9) calls with priv(9) calls, assigning | rwatson | 2006-11-06 | 1 | -1/+5 |
* | The page queues lock is no longer required by vm_page_busy() or | alc | 2006-10-22 | 1 | -3/+1 |
* | Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.h | rwatson | 2006-10-22 | 1 | -1/+1 |
* | Replace PG_BUSY with VPO_BUSY. In other words, changes to the page's | alc | 2006-10-22 | 1 | -1/+1 |
* | Audit the argv and env vectors passed in on exec: | wsalamon | 2006-09-01 | 1 | -0/+9 |
* | - Change process_exec function handlers prototype to include struct | netchild | 2006-08-15 | 1 | -1/+2 |
* | In execve(), audit the path name being executed. In the future, it | rwatson | 2006-05-28 | 1 | -2/+2 |
* | Temporarily unlock vnode for new image being executed to avoid lock order | tegge | 2006-05-05 | 1 | -0/+6 |
* | Remove the unused sva and eva arguments from pmap_remove_pages(). | peter | 2006-04-03 | 1 | -2/+1 |
* | Fix exec_map resource leaks. | ups | 2006-03-08 | 1 | -10/+19 |
* | - Always call exec_free_args() in kern_execve() instead of doing it in all | jhb | 2006-02-06 | 1 | -22/+9 |
* | - textvp may have been from a different mountpoint than ndp->ni_vp and | jeff | 2006-02-02 | 1 | -1/+6 |
* | Remove unneeded calls to pmap_remove_all(). The given page is not mapped. | alc | 2005-12-11 | 1 | -1/+0 |
* | Register itimers_event_hook as a kernel event handler, so I don't | davidxu | 2005-12-09 | 1 | -4/+0 |
* | Reduce the scope of the page queues lock in exec_map_first_page(). The vm | alc | 2005-12-06 | 1 | -4/+2 |
* | Cleanup some signal interfaces. Now the tdsignal function accepts | davidxu | 2005-11-03 | 1 | -1/+1 |
* | Calling setrlimit from 32bit apps could potentially increase certain | ps | 2005-11-02 | 1 | -1/+1 |
* | Make p_itimers as a pointer, so file sys/proc.h does not need to include | davidxu | 2005-10-23 | 1 | -0/+1 |
* | Implement POSIX timers. Current only CLOCK_REALTIME and CLOCK_MONOTONIC | davidxu | 2005-10-23 | 1 | -0/+3 |
* | 1. Change prototype of trapsignal and sendsig to use ksiginfo_t *, most | davidxu | 2005-10-14 | 1 | -1/+1 |
* | Move execve's access time update functionality into a new | dds | 2005-10-12 | 1 | -12/+2 |
* | Add missing word to comment. | truckman | 2005-10-04 | 1 | -1/+1 |
* | If sufficiently bad things happen during a call to kern_execve(), it is | cperciva | 2005-10-03 | 1 | -0/+8 |
* | Copy new process argument list in do_execve() before grabbing PROC_LOCK | truckman | 2005-10-01 | 1 | -10/+10 |
* | MFP4: | jkoshy | 2005-06-30 | 1 | -2/+7 |
* | Move HWPMC_HOOKS into its own opt_hwpmc_hooks.h file. It doesn't merit | peter | 2005-06-24 | 1 | -0/+1 |
* | MFP4: | jkoshy | 2005-06-09 | 1 | -2/+3 |
* | This patch addresses a standards violation issue. The standards say a | kensmith | 2005-05-31 | 1 | -1/+13 |
* | - Initialize vfslocked correctly early enough for MAC to compile. | jeff | 2005-05-03 | 1 | -5/+4 |
* | - Use namei to acquire Giant for VFS if it is necessary. Drop the explicit | jeff | 2005-05-03 | 1 | -9/+7 |
* | - Return EACCES if we're trying to exec on a vp with no object. | jeff | 2005-05-01 | 1 | -0/+2 |
* | - Pass the ISOPEN flag to namei so filesystems will know we're about to | jeff | 2005-04-27 | 1 | -1/+1 |
* | Bring a working snapshot of hwpmc(4), its associated libraries, userland util... | jkoshy | 2005-04-19 | 1 | -0/+22 |
* | Welcome to the 21st century: increase MAXSHELLCMDLEN from 128 bytes to | sobomax | 2005-02-25 | 1 | -5/+9 |
* | Grrr, this committer needs to have a sleep. Remove lines from the previous | sobomax | 2005-01-29 | 1 | -3/+0 |
* | Fix small non-conformance introduced in the previous commit: execve() is | sobomax | 2005-01-29 | 1 | -4/+4 |
* | o Split out kernel part of execve(2) syscall into two parts: one that | sobomax | 2005-01-29 | 1 | -96/+112 |
* | Don't use VOP_GETVOBJECT, use vp->v_object directly. | phk | 2005-01-25 | 1 | -2/+3 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | imp | 2005-01-06 | 1 | -1/+1 |
* | Add new function fdunshare() which encapsulates the necessary light magic | phk | 2004-12-14 | 1 | -10/+1 |
* | Don't include sys/user.h merely for its side-effect of recursively | das | 2004-11-27 | 1 | -1/+1 |
* | Introduce an alias for FILEDESC_{UN}LOCK() with the suffix _FAST. | phk | 2004-11-13 | 1 | -3/+3 |
* | Use more intuitive pointer for fdinit() and fdcopy(). | phk | 2004-11-08 | 1 | -1/+1 |
* | Put on my peril sensitive sunglasses and add a flags field to the internal | peter | 2004-10-11 | 1 | -4/+4 |
* | Add an execve command for kse_thr_interrupt to allow libpthread to | davidxu | 2004-10-07 | 1 | -3/+2 |
* | In original kern_execve() code, at the start of the function, it forces | davidxu | 2004-10-06 | 1 | -12/+46 |
* | - Don't try to unlock Giant if single threading fails since we don't have | jhb | 2004-09-23 | 1 | -1/+1 |
* | Revert the last change.. | julian | 2004-09-22 | 1 | -17/+11 |
* | In a threaded process, don't kill off all the other threads until we have a | julian | 2004-09-21 | 1 | -11/+17 |
* | Refactor a bunch of scheduler code to give basically the same behaviour | julian | 2004-09-05 | 1 | -6/+2 |