mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 03:54:02 +00:00
cgroups: add the trigger callback to struct cftype
Trigger callback can be used to receive a kick-up from the user space. The string written is ignored. The cftype->private is used for multiplexing events. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Acked-by: Paul Menage <menage@google.com> Acked-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Balbir Singh <balbir@in.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
46ae220bea
commit
d447ea2f30
2 changed files with 12 additions and 0 deletions
|
@ -243,6 +243,14 @@ struct cftype {
|
||||||
*/
|
*/
|
||||||
int (*write_s64) (struct cgroup *cgrp, struct cftype *cft, s64 val);
|
int (*write_s64) (struct cgroup *cgrp, struct cftype *cft, s64 val);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* trigger() callback can be used to get some kick from the
|
||||||
|
* userspace, when the actual string written is not important
|
||||||
|
* at all. The private field can be used to determine the
|
||||||
|
* kick type for multiplexing.
|
||||||
|
*/
|
||||||
|
int (*trigger)(struct cgroup *cgrp, unsigned int event);
|
||||||
|
|
||||||
int (*release) (struct inode *inode, struct file *file);
|
int (*release) (struct inode *inode, struct file *file);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1410,6 +1410,10 @@ static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
|
||||||
return cft->write(cgrp, cft, file, buf, nbytes, ppos);
|
return cft->write(cgrp, cft, file, buf, nbytes, ppos);
|
||||||
if (cft->write_u64 || cft->write_s64)
|
if (cft->write_u64 || cft->write_s64)
|
||||||
return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
|
return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
|
||||||
|
if (cft->trigger) {
|
||||||
|
int ret = cft->trigger(cgrp, (unsigned int)cft->private);
|
||||||
|
return ret ? ret : nbytes;
|
||||||
|
}
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue