aboutsummaryrefslogtreecommitdiff
path: root/kernel/sys.c
AgeCommit message (Expand)AuthorFilesLines
2014-10-13Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/ker...Gravatar Linus Torvalds 1-2/+0
2014-10-09kernel/sys.c: compat sysinfo syscall: fix undefined behaviorGravatar Scotty Bauer 1-1/+1
2014-10-09kernel/sys.c: whitespace fixesGravatar vishnu.ps 1-128/+137
2014-10-09mm: use VM_BUG_ON_MM where possibleGravatar Sasha Levin 1-1/+1
2014-10-09prctl: PR_SET_MM -- introduce PR_SET_MM_MAP operationGravatar Cyrill Gorcunov 1-1/+189
2014-10-09prctl: PR_SET_MM -- factor out mmap_sem when updating mm::exe_fileGravatar Cyrill Gorcunov 1-10/+11
2014-10-09mm: use may_adjust_brk helperGravatar Cyrill Gorcunov 1-7/+4
2014-09-08time, signal: Protect resource use statistics with seqlockGravatar Rik van Riel 1-2/+0
2014-07-18sched: move no_new_privs into new atomic flagsGravatar Kees Cook 1-2/+2
2014-05-22sched: Consolidate open coded implementations of nice level frobbing into nic...Gravatar Dongsheng Yang 1-3/+3
2014-04-07mm, thp: add VM_INIT_DEF_MASK and PRCTL_THP_DISABLEGravatar Alex Thorlton 1-0/+15
2014-02-22sys: Replace hardcoding of -20 and 19 with MIN_NICE and MAX_NICEGravatar Dongsheng Yang 1-4/+4
2014-01-23kernel/sys.c: k_getrusage() can use while_each_thread()Gravatar Oleg Nesterov 1-2/+1
2014-01-23exec: kill task_struct->did_execGravatar Oleg Nesterov 1-3/+2
2013-11-13kernel/sys.c: remove obsolete #include <linux/kexec.h>Gravatar Geert Uytterhoeven 1-1/+0
2013-08-30userns: Kill nsown_capable it makes the wrong thing easyGravatar Eric W. Biederman 1-10/+10
2013-07-09reboot: move shutdown/reboot related functions to kernel/reboot.cGravatar Robin Holt 1-331/+0
2013-07-09reboot: remove -stable friendly PF_THREAD_BOUND defineGravatar Robin Holt 1-5/+0
2013-07-03exit.c: unexport __set_special_pids()Gravatar Oleg Nesterov 1-1/+12
2013-07-03kernel/sys.c:do_sysinfo(): use get_monotonic_boottime()Gravatar Oleg Nesterov 1-2/+1
2013-07-03kernel/sys.c: sys_reboot(): fix malformed panic messageGravatar liguang 1-1/+1
2013-06-12reboot: rigrate shutdown/reboot to boot cpuGravatar Robin Holt 1-3/+26
2013-05-01Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-0/+14
2013-04-30kernel/sys.c: make prctl(PR_SET_MM) generally availableGravatar Amnon Shiloh 1-8/+2
2013-04-30kernel/timer.c: move some non timer related syscalls to kernel/sys.cGravatar Stephen Rothwell 1-0/+211
2013-04-08PM / reboot: call syscore_shutdown() after disable_nonboot_cpus()Gravatar Huacai Chen 1-1/+2
2013-03-22poweroff: change orderly_poweroff() to use schedule_work()Gravatar Oleg Nesterov 1-25/+32
2013-03-03switch getrusage() to COMPAT_SYSCALL_DEFINEGravatar Al Viro 1-0/+14
2013-02-27usermodehelper: cleanup/fix __orderly_poweroff() && argv_free()Gravatar Oleg Nesterov 1-8/+2
2013-02-26Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-4/+4
2013-02-25Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebi...Gravatar Linus Torvalds 1-2/+3
2013-02-22new helper: file_inode(file)Gravatar Al Viro 1-4/+4
2013-02-21sys_prctl(): coding-style cleanupGravatar Andrew Morton 1-145/+143
2013-02-21sys_prctl(): arg2 is unsigned long which is never < 0Gravatar Chen Gang 1-1/+3
2012-12-26userns: Allow unprivileged rebootGravatar Li Zefan 1-2/+3
2012-11-28cputime: Rename thread_group_times to thread_group_cputime_adjustedGravatar Frederic Weisbecker 1-3/+3
2012-10-19use clamp_t in UNAME26 fixGravatar Kees Cook 1-1/+1
2012-10-19kernel/sys.c: fix stack memory content leak via UNAME26Gravatar Kees Cook 1-5/+7
2012-10-06poweroff: fix bug in orderly_poweroff()Gravatar hongfeng 1-1/+1
2012-10-06kernel/sys.c: call disable_nonboot_cpus() in kernel_restart()Gravatar Shawn Guo 1-0/+1
2012-09-26switch simple cases of fget_light to fdgetGravatar Al Viro 1-8/+8
2012-09-26switch prctl_set_mm_exe_file() to fget_light()Gravatar Al Viro 1-4/+4
2012-07-30kernel/sys.c: avoid argv_free(NULL)Gravatar Andrew Morton 1-19/+25
2012-07-30prctl: remove redunant assignment of "error" to zeroGravatar Sasikantha babu 1-11/+2
2012-07-11c/r: prctl: less paranoid prctl_set_mm_exe_file()Gravatar Konstantin Khlebnikov 1-6/+10
2012-06-20c/r: prctl: Move PR_GET_TID_ADDRESS to a proper placeGravatar Cyrill Gorcunov 1-3/+3
2012-06-07c/r: prctl: drop VMA flags test on PR_SET_MM_ stack data assignmentGravatar Cyrill Gorcunov 1-14/+0
2012-06-07c/r: prctl: add ability to get clear_tid_addressGravatar Cyrill Gorcunov 1-0/+13
2012-06-07c/r: prctl: add minimal address test to PR_SET_MMGravatar Cyrill Gorcunov 1-1/+1
2012-06-07c/r: prctl: update prctl_set_mm_exe_file() after mm->num_exe_file_vmas removalGravatar Konstantin Khlebnikov 1-12/+19