cgroup: replace cftype->read_seq_string() with cftype->seq_show()
[deliverable/linux.git] / kernel / cpuset.c
index 032929f91648c42ffa4dd231b67e7794a4e0e165..4410ac6a55f1d9ae410976e3a8e7315acf88a61b 100644 (file)
@@ -1732,12 +1732,10 @@ out_unlock:
  * and since these maps can change value dynamically, one could read
  * gibberish by doing partial reads while a list was changing.
  */
-static int cpuset_common_read_seq_string(struct cgroup_subsys_state *css,
-                                        struct cftype *cft,
-                                        struct seq_file *sf)
+static int cpuset_common_seq_show(struct seq_file *sf, void *v)
 {
-       struct cpuset *cs = css_cs(css);
-       cpuset_filetype_t type = cft->private;
+       struct cpuset *cs = css_cs(seq_css(sf));
+       cpuset_filetype_t type = seq_cft(sf)->private;
        ssize_t count;
        char *buf, *s;
        int ret = 0;
@@ -1824,7 +1822,7 @@ static s64 cpuset_read_s64(struct cgroup_subsys_state *css, struct cftype *cft)
 static struct cftype files[] = {
        {
                .name = "cpus",
-               .read_seq_string = cpuset_common_read_seq_string,
+               .seq_show = cpuset_common_seq_show,
                .write_string = cpuset_write_resmask,
                .max_write_len = (100U + 6 * NR_CPUS),
                .private = FILE_CPULIST,
@@ -1832,7 +1830,7 @@ static struct cftype files[] = {
 
        {
                .name = "mems",
-               .read_seq_string = cpuset_common_read_seq_string,
+               .seq_show = cpuset_common_seq_show,
                .write_string = cpuset_write_resmask,
                .max_write_len = (100U + 6 * MAX_NUMNODES),
                .private = FILE_MEMLIST,
This page took 0.024868 seconds and 5 git commands to generate.