Commit e92e113c authored by Tejun Heo's avatar Tejun Heo

netprio_cgroup: convert away from cftype->read_map()

In preparation of conversion to kernfs, cgroup file handling is being
consolidated so that it can be easily mapped to the seq_file based
interface of kernfs.

cftype->read_map() doesn't add any value and being replaced with
->read_seq_string().  Update read_priomap() to use ->read_seq_string()
instead.

This patch doesn't make any visible behavior changes.
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Acked-by: default avatarNeil Horman <nhorman@tuxdriver.com>
Acked-by: default avatarDaniel Wagner <daniel.wagner@bmw-carit.de>
Acked-by: default avatarLi Zefan <lizefan@huawei.com>
parent 791badbd
...@@ -174,13 +174,13 @@ static u64 read_prioidx(struct cgroup_subsys_state *css, struct cftype *cft) ...@@ -174,13 +174,13 @@ static u64 read_prioidx(struct cgroup_subsys_state *css, struct cftype *cft)
} }
static int read_priomap(struct cgroup_subsys_state *css, struct cftype *cft, static int read_priomap(struct cgroup_subsys_state *css, struct cftype *cft,
struct cgroup_map_cb *cb) struct seq_file *sf)
{ {
struct net_device *dev; struct net_device *dev;
rcu_read_lock(); rcu_read_lock();
for_each_netdev_rcu(&init_net, dev) for_each_netdev_rcu(&init_net, dev)
cb->fill(cb, dev->name, netprio_prio(css, dev)); seq_printf(sf, "%s %u\n", dev->name, netprio_prio(css, dev));
rcu_read_unlock(); rcu_read_unlock();
return 0; return 0;
} }
...@@ -238,7 +238,7 @@ static struct cftype ss_files[] = { ...@@ -238,7 +238,7 @@ static struct cftype ss_files[] = {
}, },
{ {
.name = "ifpriomap", .name = "ifpriomap",
.read_map = read_priomap, .read_seq_string = read_priomap,
.write_string = write_priomap, .write_string = write_priomap,
}, },
{ } /* terminate */ { } /* terminate */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment