aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/cgroup.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2013-02-27hlist: drop the node parameter from iteratorsSasha Levin1-7/+5
2013-02-27cgroup: convert to idr_alloc()Tejun Heo1-19/+8
2013-02-27cgroup: don't use idr_remove_all()Tejun Heo1-3/+1
2013-02-26Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds1-3/+3
2013-02-22new helper: file_inode(file)Al Viro1-3/+3
2013-02-18cgroup: fail if monitored file and event_control are in different cgroupLi Zefan1-0/+11
2013-02-18cgroup: fix cgroup_rmdir() vs close(eventfd) raceLi Zefan1-16/+25
2013-02-18cgroup: fix exit() vs rmdir() raceLi Zefan1-0/+8
2013-01-24cgroup: remove bogus comments in cgroup_diput()Li Zefan1-6/+0
2013-01-24cgroup: remove synchronize_rcu() from cgroup_diput()Li Zefan1-29/+43
2013-01-24cgroup: remove duplicate RCU free on struct cgroupLi Zefan1-1/+1
2013-01-24cgroup: initialize cgrp->dentry before css_alloc()Li Zefan1-3/+4
2013-01-24cgroup: remove a NULL check in cgroup_exit()Li Zefan1-2/+1
2013-01-22cgroup: fix bogus kernel warnings when cgroup_create() failedLi Zefan1-9/+12
2013-01-14cgroup: remove synchronize_rcu() from rebind_subsystems()Li Zefan1-1/+0
2013-01-14cgroup: remove synchronize_rcu() from cgroup_attach_{task|proc}()Li Zefan1-2/+0
2013-01-10cgroup: use new hashtable implementationLi Zefan1-53/+39
2013-01-07cgroup: implement cgroup_rightmost_descendant()Tejun Heo1-0/+26
2012-12-17Merge branch 'akpm' (Andrew's patch-bomb)Linus Torvalds1-1/+0
2012-12-17kernel: remove reference to feature-removal-schedule.txtTao Ma1-1/+0
2012-12-17Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespaceLinus Torvalds1-1/+1
2012-12-06cgroup_rm_file: don't delete the uncreated filesGao feng1-6/+6
2012-12-03cgroup: remove subsystem files when remounting cgroupGao feng1-2/+9
2012-11-30cgroup: use cgroup_addrm_files() in cgroup_clear_directory()Gao feng1-1/+3
2012-11-30cgroup: warn about broken hierarchies only after css_onlineGlauber Costa1-9/+9
2012-11-28cgroup: list_del_init() on removed eventsGreg Thelen1-2/+2
2012-11-28cgroup: fix lockdep warning for event_controlGreg Thelen1-3/+8
2012-11-28cgroup: move list add after list head initilizationLi Zhong1-1/+1
2012-11-20cgroup: remove obsolete guarantee from cgroup_task_migrate.Tao Ma1-5/+3
2012-11-19cgroup: add cgroup->idTejun Heo1-1/+14
2012-11-19cgroup, cpuset: remove cgroup_subsys->post_clone()Tejun Heo1-4/+0
2012-11-19cgroup: s/CGRP_CLONE_CHILDREN/CGRP_CPUSET_CLONE_CHILDREN/Tejun Heo1-16/+12
2012-11-19cgroup: rename ->create/post_create/pre_destroy/destroy() to ->css_alloc/online/offline/free()Tejun Heo1-25/+26
2012-11-19cgroup: allow ->post_create() to failTejun Heo1-10/+19
2012-11-19cgroup: update cgroup_create() failure pathTejun Heo1-7/+14
2012-11-19cgroup: use mutex_trylock() when grabbing i_mutex of a new cgroup directoryTejun Heo1-3/+9
2012-11-19cgroup: simplify cgroup_load_subsys() failure pathTejun Heo1-11/+10
2012-11-19cgroup: introduce CSS_ONLINE flag and on/offline_css() helpersTejun Heo1-23/+42
2012-11-19cgroup: separate out cgroup_destroy_locked()Tejun Heo1-15/+25
2012-11-19cgroup: fix harmless bugs in cgroup_load_subsys() fail path and cgroup_unload_subsys()Tejun Heo1-1/+14
2012-11-19cgroup: lock cgroup_mutex in cgroup_init_subsys()Tejun Heo1-0/+4
2012-11-19cgroup: trivial cleanup for cgroup_init/load_subsys()Tejun Heo1-3/+3
2012-11-19cgroup: make CSS_* flags bit masks instead of bit positionsTejun Heo1-1/+1
2012-11-19cgroup: cgroup->dentry isn't a RCU pointerTejun Heo1-5/+6
2012-11-19cgroup: create directory before linking while creating a new cgroupTejun Heo1-18/+12
2012-11-19cgroup: open-code cgroup_create_dir()Tejun Heo1-25/+5
2012-11-19cgroup: initialize cgrp->allcg_node in init_cgroup_housekeeping()Tejun Heo1-0/+1
2012-11-19cgroup: remove incorrect dget/dput() pair in cgroup_create_dir()Tejun Heo1-2/+0
2012-11-19pidns: Use task_active_pid_ns where appropriateEric W. Biederman1-1/+1
2012-11-09cgroup: implement generic child / descendant walk macrosTejun Heo1-0/+86