summaryrefslogtreecommitdiffstats
path: root/kernel/fork.c
Commit message (Expand)AuthorAgeFilesLines
* uprobes: Fix mmap_region()'s mm->mm_rb corruption if uprobe_mmap() failsOleg Nesterov2012-08-211-2/+2
* memcg: rename config variablesAndrew Morton2012-07-311-1/+1
* mm: account the total_vm in the vm_stat_account()Huang Shijie2012-07-311-3/+1
* fork: fix error handling in dup_task()Akinobu Mita2012-07-301-12/+15
* revert "sched: Fix fork() error path to not crash"Andrew Morton2012-07-301-8/+3
* fork: use vma_pages() to simplify the codeHuang Shijie2012-07-301-2/+2
* Merge branch 'for-linus-2' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds2012-07-231-1/+1
|\
| * trim task_work: get rid of hlistAl Viro2012-07-221-1/+1
* | sched: Fix fork() error path to not crashSalman Qazi2012-07-051-3/+8
|/
* Revert "mm: correctly synchronize rss-counters at exit/exec"Linus Torvalds2012-06-071-8/+0
* mm: correctly synchronize rss-counters at exit/execKonstantin Khlebnikov2012-06-071-0/+8
* Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds2012-05-311-0/+1
|\
| * task_work_add: generic process-context callbacksOleg Nesterov2012-05-231-0/+1
* | Merge branch 'akpm' (Andrew's patch-bomb)Linus Torvalds2012-05-311-3/+7
|\ \
| * | fork: call complete_vfork_done() after clearing child_tid and flushing rss-co...Konstantin Khlebnikov2012-05-311-3/+7
* | | Merge branch 'for-3.5/core' of git://git.kernel.dk/linux-blockLinus Torvalds2012-05-301-3/+2
|\ \ \ | |/ / |/| |
| * | Merge branch 'for-3.5' of ../cgroup into block/for-3.5/core-mergedTejun Heo2012-04-011-27/+74
| |\ \
| * | | block: ioc_task_link() can't failTejun Heo2012-03-061-3/+2
* | | | mm/fork: fix overflow in vma length when copying mmap on cloneSiddhesh Poyarekar2012-05-291-1/+2
* | | | mm: remove swap token codeRik van Riel2012-05-291-9/+0
* | | | Merge branch 'perf-uprobes-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds2012-05-241-0/+9
|\ \ \ \ | |_|_|/ |/| | |
| * | | Merge branch 'perf/core' into perf/uprobesIngo Molnar2012-04-141-26/+70
| |\ \ \ | | | |/ | | |/|
| * | | uprobes/core: Optimize probe hits with the help of a counterSrikar Dronamraju2012-03-311-0/+3
| * | | uprobes/core: Allocate XOL slots for uprobes useSrikar Dronamraju2012-03-311-0/+2
| * | | uprobes/core: Handle breakpoint and singlestep exceptionsSrikar Dronamraju2012-03-141-0/+4
* | | | Merge branch 'x86-fpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds2012-05-231-2/+0
|\ \ \ \
| * | | | fork: move the real prepare_to_copy() users to arch_dup_task_struct()Suresh Siddha2012-05-161-2/+0
* | | | | Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/...Linus Torvalds2012-05-211-0/+3
|\ \ \ \ \
| * | | | | seccomp: add system call filtering using BPFWill Drewry2012-04-141-0/+3
| | |_|/ / | |/| | |
* | | | | Merge branch 'smp-hotplug-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2012-05-211-20/+49
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | task_allocator: Use config switches instead of magic definesThomas Gleixner2012-05-081-4/+3
| * | | | fork: Provide kmemcache based thread_info allocatorThomas Gleixner2012-05-081-0/+27
| * | | | fork: Provide weak arch_release_[task_struct|thread_info] functionsThomas Gleixner2012-05-081-4/+17
| * | | | fork: Move thread info gfp flags to headerThomas Gleixner2012-05-081-6/+2
| * | | | fork: Remove the weak insanityThomas Gleixner2012-05-081-7/+1
| |/ / /
* / / / namespaces, pid_ns: fix leakage on fork() failureMike Galbraith2012-05-101-0/+3
|/ / /
* | | prctl: add PR_{SET,GET}_CHILD_SUBREAPER to allow simple process supervisionLennart Poettering2012-03-231-0/+3
* | | Merge branch 'akpm' (Andrew's patch-bomb)Linus Torvalds2012-03-221-3/+19
|\ \ \
| * | | cpuset: mm: reduce large amounts of memory barrier related damage v3Mel Gorman2012-03-211-0/+1
| * | | mm: add rss counters consistency checkKonstantin Khlebnikov2012-03-211-3/+18
* | | | Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/...Linus Torvalds2012-03-211-1/+2
|\ \ \ \ | |/ / / |/| | |
| * | | mm: collapse security_vm_enough_memory() variants into a single functionAl Viro2012-02-141-1/+1
| * | | security: create task_free security callbackKees Cook2012-02-101-0/+1
* | | | CLONE_PARENT shouldn't allow to set ->exit_signalOleg Nesterov2012-03-201-1/+7
* | | | vfork: kill PF_STARTINGOleg Nesterov2012-03-051-9/+0
* | | | coredump_wait: don't call complete_vfork_done()Oleg Nesterov2012-03-051-1/+1
* | | | vfork: make it killableOleg Nesterov2012-03-051-8/+32
* | | | vfork: introduce complete_vfork_done()Oleg Nesterov2012-03-051-7/+10
| |/ / |/| |
* | | epoll: introduce POLLFREE to flush ->signalfd_wqh before kfree()Oleg Nesterov2012-02-241-1/+4
| |/ |/|
* | Merge branch 'for-linus' of git://git.kernel.dk/linux-blockLinus Torvalds2012-02-111-1/+1
|\ \ | |/ |/|