summaryrefslogtreecommitdiff
path: root/sys/kern/kern_exec.c
Commit message (Expand)AuthorAgeFilesLines
* Copy releng/7.2 to release/7.2.0 for FreeBSD 7.2-RELEASE.release/7.2.0_cvsKen Smith2009-05-011-1/+1
* MFC: Add support for "superpages" on amd64 and i386. This includes adding theJohn Baldwin2009-02-261-0/+7
* MFC 184700:Craig Rodrigues2009-01-061-4/+3
* MFC SVN rev 181647Christian S.J. Peron2008-10-281-1/+5
* MFCJohn Birrell2008-08-271-0/+31
* MFC r180799:Konstantin Belousov2008-08-011-4/+2
* MFC r180570:Konstantin Belousov2008-07-311-0/+9
* MFC fix for the panic("vm_thread_new: kstack allocation failed") andKonstantin Belousov2008-01-181-1/+3
* MFCKonstantin Belousov2007-12-061-0/+1
* Change the management of cached pages (PQ_CACHE) in two fundamentalAlan Cox2007-09-251-1/+1
* Fix a couple of issues with the stack limit for 32-bit processes on 64-bitJohn Baldwin2007-07-121-4/+9
* Conditionally acquire Giant when dropping a reference on the ktrace vnodeJohn Baldwin2007-06-131-1/+6
* Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); inRobert Watson2007-06-121-2/+1
* Revert UF_OPENING workaround for CURRENT.Konstantin Belousov2007-05-311-1/+1
* Rework the support for ABIs to override resource limits (used by 32-bitJohn Baldwin2007-05-141-9/+0
* Update a comment: we usually call exec_vmspace_new with Giant not held,Kris Kennaway2007-03-251-1/+1
* Further system call comment cleanup:Robert Watson2007-03-051-10/+10
* Remove 'MPSAFE' annotations from the comments above most system calls: allRobert Watson2007-03-041-8/+0
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-1/+5
* The page queues lock is no longer required by vm_page_busy() orAlan Cox2006-10-221-3/+1
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+1
* Replace PG_BUSY with VPO_BUSY. In other words, changes to the page'sAlan Cox2006-10-221-1/+1
* Audit the argv and env vectors passed in on exec:Wayne Salamon2006-09-011-0/+9
* - Change process_exec function handlers prototype to include structAlexander Leidinger2006-08-151-1/+2
* In execve(), audit the path name being executed. In the future, itRobert Watson2006-05-281-2/+2
* Temporarily unlock vnode for new image being executed to avoid lock orderTor Egge2006-05-051-0/+6
* Remove the unused sva and eva arguments from pmap_remove_pages().Peter Wemm2006-04-031-2/+1
* Fix exec_map resource leaks.Stephan Uphoff2006-03-081-10/+19
* - Always call exec_free_args() in kern_execve() instead of doing it in allJohn Baldwin2006-02-061-22/+9
* - textvp may have been from a different mountpoint than ndp->ni_vp andJeff Roberson2006-02-021-1/+6
* Remove unneeded calls to pmap_remove_all(). The given page is not mapped.Alan Cox2005-12-111-1/+0
* Register itimers_event_hook as a kernel event handler, so I don'tDavid Xu2005-12-091-4/+0
* Reduce the scope of the page queues lock in exec_map_first_page(). The vmAlan Cox2005-12-061-4/+2
* Cleanup some signal interfaces. Now the tdsignal function acceptsDavid Xu2005-11-031-1/+1
* Calling setrlimit from 32bit apps could potentially increase certainPaul Saab2005-11-021-1/+1
* Make p_itimers as a pointer, so file sys/proc.h does not need to includeDavid Xu2005-10-231-0/+1
* Implement POSIX timers. Current only CLOCK_REALTIME and CLOCK_MONOTONICDavid Xu2005-10-231-0/+3
* 1. Change prototype of trapsignal and sendsig to use ksiginfo_t *, mostDavid Xu2005-10-141-1/+1
* Move execve's access time update functionality into a newDiomidis Spinellis2005-10-121-12/+2
* Add missing word to comment.Don Lewis2005-10-041-1/+1
* If sufficiently bad things happen during a call to kern_execve(), it isColin Percival2005-10-031-0/+8
* Copy new process argument list in do_execve() before grabbing PROC_LOCKDon Lewis2005-10-011-10/+10
* MFP4:Joseph Koshy2005-06-301-2/+7
* Move HWPMC_HOOKS into its own opt_hwpmc_hooks.h file. It doesn't meritPeter Wemm2005-06-241-0/+1
* MFP4:Joseph Koshy2005-06-091-2/+3
* This patch addresses a standards violation issue. The standards say aKen Smith2005-05-311-1/+13
* - Initialize vfslocked correctly early enough for MAC to compile.Jeff Roberson2005-05-031-5/+4
* - Use namei to acquire Giant for VFS if it is necessary. Drop the explicitJeff Roberson2005-05-031-9/+7
* - Return EACCES if we're trying to exec on a vp with no object.Jeff Roberson2005-05-011-0/+2
* - Pass the ISOPEN flag to namei so filesystems will know we're about toJeff Roberson2005-04-271-1/+1