aboutsummaryrefslogtreecommitdiffstats
path: root/arch/tile/kernel/hardwall.c
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2014-08-08 17:21:52 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-08-08 18:57:23 -0400
commitd962c144839b231d7a787f9d2503f2d1171e2310 (patch)
tree7c8f3b371ca0f275d9b0a16abf9c4ebffdb5b10f /arch/tile/kernel/hardwall.c
parent19aadc98d6a242e84c4a9e7cfac3d5140b885348 (diff)
proc: convert /proc/$PID/hardwall to seq_file interface
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/tile/kernel/hardwall.c')
-rw-r--r--arch/tile/kernel/hardwall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/tile/kernel/hardwall.c b/arch/tile/kernel/hardwall.c
index 531f4c365351..aca6000bca75 100644
--- a/arch/tile/kernel/hardwall.c
+++ b/arch/tile/kernel/hardwall.c
@@ -947,15 +947,15 @@ static void hardwall_remove_proc(struct hardwall_info *info)
947 remove_proc_entry(buf, info->type->proc_dir); 947 remove_proc_entry(buf, info->type->proc_dir);
948} 948}
949 949
950int proc_pid_hardwall(struct task_struct *task, char *buffer) 950int proc_pid_hardwall(struct seq_file *m, struct pid_namespace *ns,
951 struct pid *pid, struct task_struct *task)
951{ 952{
952 int i; 953 int i;
953 int n = 0; 954 int n = 0;
954 for (i = 0; i < HARDWALL_TYPES; ++i) { 955 for (i = 0; i < HARDWALL_TYPES; ++i) {
955 struct hardwall_info *info = task->thread.hardwall[i].info; 956 struct hardwall_info *info = task->thread.hardwall[i].info;
956 if (info) 957 if (info)
957 n += sprintf(&buffer[n], "%s: %d\n", 958 seq_printf(m, "%s: %d\n", info->type->name, info->id);
958 info->type->name, info->id);
959 } 959 }
960 return n; 960 return n;
961} 961}