aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/cgroup.c
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/vir...Linus 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/ebi...Linus 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/onli...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...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
2012-11-09cgroup: use rculist ops for cgroup->childrenTejun Heo1-5/+3
2012-11-09cgroup: add cgroup_subsys->post_create()Tejun Heo1-2/+13
2012-11-08cgroup: set 'start' with the right value in cgroup_path.Tao Ma1-2/+2
2012-11-06Merge branch 'cgroup/for-3.7-fixes' into cgroup/for-3.8Tejun Heo1-31/+10
2012-11-05Merge branch 'cgroup-rmdir-updates' into cgroup/for-3.8Tejun Heo1-195/+61
2012-11-05cgroup: make ->pre_destroy() return voidTejun Heo1-1/+1
2012-11-05cgroup: remove CGRP_WAIT_ON_RMDIR, cgroup_exclude_rmdir() and cgroup_release_...Tejun Heo1-51/+0
2012-11-05cgroup: deactivate CSS's and mark cgroup dead before invoking ->pre_destroy()Tejun Heo1-46/+19
2012-11-05cgroup: use cgroup_lock_live_group(parent) in cgroup_create()Tejun Heo1-3/+13
2012-11-05cgroup: kill CSS_REMOVEDTejun Heo1-19/+12
2012-11-05cgroup: kill cgroup_subsys->__DEPRECATED_clear_css_refsTejun Heo1-95/+36
2012-10-19Revert "cgroup: Remove task_lock() from cgroup_post_fork()"Tejun Heo1-12/+3
2012-10-19Revert "cgroup: Drop task_lock(parent) on cgroup_fork()"Tejun Heo1-17/+6
2012-10-16cgroup: notify_on_release may not be triggered in some casesDaisuke Nishimura1-2/+1
2012-10-16cgroup: cgroup_subsys->fork() should be called after the task is added to css...Tejun Heo1-32/+30
2012-10-02Merge branch 'for-3.7-hierarchy' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-1/+11
2012-09-14cgroup: mark subsystems with broken hierarchy support and whine if cgroups ar...Tejun Heo1-1/+11
2012-09-14cgroup: Assign subsystem IDs during compile timeDaniel Wagner1-19/+3
2012-09-14cgroup: Do not depend on a given order when populating the subsys arrayDaniel Wagner1-1/+1
2012-09-14cgroup: Wrap subsystem selection macroDaniel Wagner1-0/+1
2012-09-14cgroup: Remove CGROUP_BUILTIN_SUBSYS_COUNTDaniel Wagner1-28/+40
2012-08-24cgroup: rename subsys_bits to subsys_maskAristeu Rozanski1-42/+42
2012-08-24cgroup: add xattr supportAristeu Rozanski1-7/+93
2012-08-24cgroup: revise how we re-populate root directoryAristeu Rozanski1-13/+48
2012-07-24Merge branch 'for-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cg...Linus Torvalds1-46/+1
2012-07-14VFS: Pass mount flags to sget()David Howells1-1/+1
2012-07-14stop passing nameidata to ->lookup()Al Viro1-2/+2
2012-07-09cgroup: cgroup_rm_files() was calling simple_unlink() with the wrong inodeTejun Heo1-1/+1
2012-07-07cgroup: fix cgroup hierarchy umount raceTejun Heo1-1/+5
2012-07-07Revert "cgroup: superblock can't be released with active dentries"Tejun Heo1-14/+3
2012-06-18cgroups: Account for CSS_DEACT_BIAS in __css_putSalman Qazi1-2/+10
2012-06-06cgroup: remove hierarchy_mutexLi Zefan1-45/+0
2012-06-06cgroup: make sure that decisions in __css_put are atomicSalman Qazi1-2/+1
2012-06-05Merge branch 'for-3.5-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-3/+14
2012-05-29kernel: cgroup: push rcu read locking from css_is_ancestor() to callsiteJohannes Weiner1-10/+10
2012-05-27cgroup: superblock can't be released with active dentriesTejun Heo1-3/+14
2012-05-23Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebi...Linus Torvalds1-3/+3
2012-05-15userns: Convert cgroup permission checks to use uid_eqEric W. Biederman1-3/+3
2012-04-23cgroups: disallow attaching kthreadd or PF_THREAD_BOUND threadsMike Galbraith1-0/+13
2012-04-11cgroup: remove cgroup_subsys->populate()Tejun Heo1-3/+0
2012-04-01cgroup: make css->refcnt clearing on cgroup removal optionalTejun Heo1-9/+62
2012-04-01cgroup: use negative bias on css->refcnt to block css_tryget()Tejun Heo1-48/+71
2012-04-01cgroup: implement cgroup_rm_cftypes()Tejun Heo1-10/+44
2012-04-01cgroup: introduce struct cfentTejun Heo1-36/+77
2012-04-01cgroup: relocate __d_cgrp() and __d_cft()Tejun Heo1-10/+10
2012-04-01cgroup: remove cgroup_add_file[s]()Tejun Heo1-31/+20
2012-04-01cgroup: convert all non-memcg controllers to the new cftype interfaceTejun Heo1-7/+3
2012-04-01cgroup: merge cft_release_agent cftype array into the base files arrayTejun Heo1-12/+7
2012-04-01cgroup: implement cgroup_add_cftypes() and friendsTejun Heo1-1/+131
2012-04-01cgroup: build list of all cgroups under a given cgroupfs_rootTejun Heo1-0/+10
2012-04-01cgroup: move cgroup_clear_directory() call out of cgroup_populate_dir()Tejun Heo1-4/+2
2012-04-01cgroup: deprecate remount option changesTejun Heo1-0/+5
2012-03-29cgroup: cgroup_attach_task() could return -errno after successTejun Heo1-1/+1
2012-03-22Merge branch 'akpm' (Andrew's patch-bomb)Linus Torvalds1-10/+9
2012-03-21memcg: let css_get_next() rely upon rcu_read_lock()Hugh Dickins1-3/+2
2012-03-21cgroup: revert ss_id_lock to spinlockHugh Dickins1-9/+9
2012-03-21Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-6/+2
2012-03-20switch open-coded instances of d_make_root() to new helperAl Viro1-6/+2
2012-02-21cgroup: Walk task list under tasklist_lock in cgroup_enable_task_cg_listFrederic Weisbecker1-0/+20
2012-02-21cgroup: Remove wrong comment on cgroup_enable_task_cg_list()Frederic Weisbecker1-3/+0
2012-02-02cgroup: remove cgroup_subsys argument from callbacksLi Zefan1-22/+21
2012-01-30cgroup: remove extra calls to find_existing_css_setMandeep Singh Baines1-113/+27
2012-01-20cgroup: replace tasklist_lock with rcu_read_lockMandeep Singh Baines1-3/+7
2012-01-20cgroup: simplify double-check locking in cgroup_attach_procMandeep Singh Baines1-50/+29
2012-01-20cgroup: move struct cgroup_pidlist out from the header fileLi Zefan1-0/+32
2012-01-09Merge branch 'for-3.3' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cg...Linus Torvalds1-170/+231
2012-01-06vfs: switch ->show_options() to struct dentry *Al Viro1-2/+2
2012-01-05cgroup: fix to allow mounting a hierarchy by nameLi Zefan1-3/+3
2012-01-04cgroup: move assignement out of condition in cgroup_attach_proc()Dan Carpenter1-2/+5
2012-01-03cgroup: propagate mode_tAl Viro1-7/+7
2012-01-03switch vfs_mkdir() and ->mkdir() to umode_tAl Viro1-2/+2
2011-12-27cgroup: Remove task_lock() from cgroup_post_fork()Frederic Weisbecker1-3/+12
2011-12-27cgroup: add sparse annotation to cgroup_iter_start() and cgroup_iter_end()Kirill A. Shutemov1-0/+2
2011-12-27cgroup: mark cgroup_rmdir_waitq and cgroup_attach_proc() as staticKirill A. Shutemov1-2/+2
2011-12-22cgroup: only need to check oldcgrp==newgrp onceMandeep Singh Baines1-16/+6
2011-12-22cgroup: remove redundant get/put of task structMandeep Singh Baines1-9/+2
2011-12-22cgroup: remove redundant get/put of old css_set from migrateMandeep Singh Baines1-20/+8
2011-12-21cgroup: Remove unnecessary task_lock before fetching css_set on migrationFrederic Weisbecker1-10/+10
2011-12-21cgroup: Drop task_lock(parent) on cgroup_fork()Frederic Weisbecker1-6/+17
2011-12-19cgroups: remove redundant get/put of css_set from css_set_check_fetched()Mandeep Singh Baines1-8/+2
2011-12-19cgroups: fix a css_set not found bug in cgroup_attach_procMandeep Singh Baines1-5/+0
2011-12-12cgroup: kill subsys->can_attach_task(), pre_attach() and attach_task()Tejun Heo1-47/+5
2011-12-12cgroup: introduce cgroup_taskset and use it in subsys->can_attach(), cancel_a...Tejun Heo1-10/+89
2011-12-12cgroup: improve old cgroup handling in cgroup_attach_proc()Tejun Heo1-24/+42
2011-12-12cgroup: always lock threadgroup during migrationTejun Heo1-35/+27
2011-12-12threadgroup: rename signal->threadgroup_fork_lock to ->group_rwsemTejun Heo1-7/+6
2011-12-12cgroup: add cgroup_root_mutexTejun Heo1-22/+42
2011-11-02memcg: replace ss->id_lock with a rwlockAndrew Bresticker1-9/+9
2011-11-02cgroups: don't attach task to subsystem if migration failedBen Blum1-6/+9
2011-11-02cgroups: more safe tasklist locking in cgroup_attach_procBen Blum1-3/+3
2011-09-13locking, sched, cgroups: Annotate release_list_lock as rawThomas Gleixner1-9/+9
2011-07-27Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmo...Linus Torvalds1-0/+5
2011-07-26atomic: use <linux/atomic.h>Arun Sharma1-1/+1
2011-07-25Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Linus Torvalds1-6/+2
2011-07-20kill file_permission() completelyAl Viro1-1/+2
2011-07-08rcu: treewide: Do not use rcu_read_lock_held when calling rcu_dereference_checkMichal Hocko1-6/+2
2011-06-09cgroupfs: use init_cred when populating new cgroupfs mounteparis@redhat1-0/+5
2011-05-26cgroup: remove the ns_cgroupDaniel Lezcano1-116/+0
2011-05-26cgroups: use flex_array in attach_procBen Blum1-9/+24
2011-05-26cgroups: make procs file writableBen Blum1-46/+393
2011-05-26cgroups: add per-thread subsystem callbacksBen Blum1-3/+14
2011-05-07cgroup,rcu: convert call_rcu(__free_css_id_cb) to kfree_rcu()Lai Jiangshan1-9/+1
2011-05-07cgroup,rcu: convert call_rcu(free_cgroup_rcu) to kfree_rcu()Lai Jiangshan1-8/+1
2011-05-07cgroup,rcu: convert call_rcu(free_css_set_rcu) to kfree_rcu()Lai Jiangshan1-7/+1
2011-03-31Fix common misspellingsLucas De Marchi1-1/+1
2011-03-22cgroups: if you list_empty() a head then don't list_del() itPhil Carmody1-8/+6
2011-02-16perf: Add cgroup supportStephane Eranian1-0/+23
2011-02-16cgroup: Fix cgroup_subsys::exit callbackPeter Zijlstra1-13/+18
2011-01-14Merge branch 'vfs-scale-working' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-1/+1
2011-01-14cgroup_fs: fix cgroup use of simple_lookup()Al Viro1-1/+16
2011-01-14cgroups: Fix a lockdep warning at cgroup removalLi Zefan1-1/+1
2011-01-12switch cgroupAl Viro1-23/+7
2011-01-07fs: dcache reduce branches in lookup pathNick Piggin1-1/+1
2011-01-07fs: dcache rationalise dget variantsNick Piggin1-1/+1
2011-01-07fs: dcache remove dcache_lockNick Piggin1-6/+0
2011-01-07fs: dcache scale subdirsNick Piggin1-2/+17
2011-01-07fs: dcache scale dentry refcountNick Piggin1-2/+0
2011-01-07fs: change d_delete semanticsNick Piggin1-1/+1
2011-01-07cgroup fs: avoid switching ->d_op on live dentryNick Piggin1-5/+22
2010-10-29convert cgroup and cpusetAl Viro1-6/+5
2010-10-27cgroups: add check for strcpy destination string overflowEvgeny Kuznetsov1-0/+2
2010-10-27cgroup: make the mount options parsing more accurateDaniel Lezcano1-30/+60
2010-10-27cgroup: add clone_children control fileDaniel Lezcano1-0/+39
2010-10-25fs: do not assign default i_ino in new_inodeChristoph Hellwig1-0/+1
2010-10-22Merge branch 'vfs' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/bklLinus Torvalds1-4/+0
2010-10-07Merge branch 'rcu/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/pa...Ingo Molnar1-6/+7
2010-10-04BKL: Remove BKL from cgroupJan Blunck1-8/+0
2010-10-04BKL: Explicitly add BKL around get_sb/fill_superJan Blunck1-0/+4
2010-09-09cgroups: fix API thinkoMichael S. Tsirkin1-6/+7
2010-08-19cgroups: __rcu annotationsArnd Bergmann1-1/+1
2010-08-11cgroups: save space for the terminatorDan Carpenter1-2/+2
2010-08-05cgroupfs: create /sys/fs/cgroup to mount cgroupfs onGreg KH1-1/+12
2010-08-04Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6Linus Torvalds1-0/+23
2010-07-28cgroups: Add an API to attach a task to current task's cgroupSridhar Samudrala1-0/+23
2010-06-04cgroups: alloc_css_id() increments hierarchy depthGreg Thelen1-1/+1
2010-05-27cgroups: make cftype.unregister_event() void-returningKirill A. Shutemov1-1/+0
2010-05-20Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Linus Torvalds1-1/+1
2010-05-18Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds1-1/+1
2010-05-11memcg: fix css_is_ancestor() RCU lockingKAMEZAWA Hiroyuki1-5/+26
2010-05-11memcg: fix css_id() RCU locking for realKAMEZAWA Hiroyuki1-2/+13
2010-05-11sched, wait: Use wrapper functionsChangli Gao1-1/+1
2010-05-04cgroup: Fix an RCU warning in alloc_css_id()Li Zefan1-2/+2
2010-05-04cgroup: Fix an RCU warning in cgroup_path()Li Zefan1-3/+9
2010-04-23Merge branch 'master' into for-nextJiri Kosina1-1/+0
2010-03-24cgroups: remove duplicate includeLi Zefan1-1/+0
2010-03-16Fix typos in commentsThomas Weber1-1/+1
2010-03-12cgroups: remove events before destroying subsystem state objectsKirill A. Shutemov1-0/+8
2010-03-12cgroups: fix race between userspace and kernelspaceKirill A. Shutemov1-15/+17
2010-03-12cgroup: implement eventfd-based generic API for notificationsKirill A. Shutemov1-1/+227
2010-03-12cgroups: clean up cgroup_pidlist_find() a bitLi Zefan1-5/+3