Lines Matching refs:cgrp
548 ``struct cgroup_subsys_state *css_alloc(struct cgroup *cgrp)``
563 ``int css_online(struct cgroup *cgrp)``
566 Called after @cgrp successfully completed all allocations and made
573 ``void css_offline(struct cgroup *cgrp);``
577 has succeeded on @cgrp. This signifies the beginning of the end of
578 @cgrp. @cgrp is being removed and the subsystem should start dropping
579 all references it's holding on @cgrp. When all references are dropped,
581 callback, @cgrp should be considered dead to the subsystem.
583 ``void css_free(struct cgroup *cgrp)``
586 The cgroup system is about to free @cgrp; the subsystem should free
587 its subsystem state object. By the time this method is called, @cgrp
588 is completely unused; @cgrp->parent is still valid. (Note - can also
592 ``int can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)``
627 ``void cancel_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)``
636 ``void attach(struct cgroup *cgrp, struct cgroup_taskset *tset)``