diff options
author | Ladinu Chandrasinghe <ladinu.pub@gmail.com> | 2009-09-22 19:43:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 10:39:28 -0400 |
commit | b7ed698cc9d556306a4088c238e2ea9311ea2cb3 (patch) | |
tree | b0aadfcf2d2c1c1454bdf8f194f7ff94e5d21c46 /Documentation/accounting/getdelays.c | |
parent | 912e837aef72a3dd263dafc3717d92bbc1211a53 (diff) |
Documentation/: fix warnings from -Wmissing-prototypes in HOSTCFLAGS
Fix up -Wmissing-prototypes in compileable userspace code, mainly under
Documentation/.
Signed-off-by: Ladinu Chandrasinghe <ladinu.pub@gmail.com>
Signed-off-by: Trevor Keith <tsrk@tsrk.net>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/accounting/getdelays.c')
-rw-r--r-- | Documentation/accounting/getdelays.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Documentation/accounting/getdelays.c b/Documentation/accounting/getdelays.c index aa73e72fd793..6e25c2659e0a 100644 --- a/Documentation/accounting/getdelays.c +++ b/Documentation/accounting/getdelays.c | |||
@@ -116,7 +116,7 @@ error: | |||
116 | } | 116 | } |
117 | 117 | ||
118 | 118 | ||
119 | int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid, | 119 | static int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid, |
120 | __u8 genl_cmd, __u16 nla_type, | 120 | __u8 genl_cmd, __u16 nla_type, |
121 | void *nla_data, int nla_len) | 121 | void *nla_data, int nla_len) |
122 | { | 122 | { |
@@ -160,7 +160,7 @@ int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid, | |||
160 | * Probe the controller in genetlink to find the family id | 160 | * Probe the controller in genetlink to find the family id |
161 | * for the TASKSTATS family | 161 | * for the TASKSTATS family |
162 | */ | 162 | */ |
163 | int get_family_id(int sd) | 163 | static int get_family_id(int sd) |
164 | { | 164 | { |
165 | struct { | 165 | struct { |
166 | struct nlmsghdr n; | 166 | struct nlmsghdr n; |
@@ -190,7 +190,7 @@ int get_family_id(int sd) | |||
190 | return id; | 190 | return id; |
191 | } | 191 | } |
192 | 192 | ||
193 | void print_delayacct(struct taskstats *t) | 193 | static void print_delayacct(struct taskstats *t) |
194 | { | 194 | { |
195 | printf("\n\nCPU %15s%15s%15s%15s\n" | 195 | printf("\n\nCPU %15s%15s%15s%15s\n" |
196 | " %15llu%15llu%15llu%15llu\n" | 196 | " %15llu%15llu%15llu%15llu\n" |
@@ -216,7 +216,7 @@ void print_delayacct(struct taskstats *t) | |||
216 | (unsigned long long)t->freepages_delay_total); | 216 | (unsigned long long)t->freepages_delay_total); |
217 | } | 217 | } |
218 | 218 | ||
219 | void task_context_switch_counts(struct taskstats *t) | 219 | static void task_context_switch_counts(struct taskstats *t) |
220 | { | 220 | { |
221 | printf("\n\nTask %15s%15s\n" | 221 | printf("\n\nTask %15s%15s\n" |
222 | " %15llu%15llu\n", | 222 | " %15llu%15llu\n", |
@@ -224,7 +224,7 @@ void task_context_switch_counts(struct taskstats *t) | |||
224 | (unsigned long long)t->nvcsw, (unsigned long long)t->nivcsw); | 224 | (unsigned long long)t->nvcsw, (unsigned long long)t->nivcsw); |
225 | } | 225 | } |
226 | 226 | ||
227 | void print_cgroupstats(struct cgroupstats *c) | 227 | static void print_cgroupstats(struct cgroupstats *c) |
228 | { | 228 | { |
229 | printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, " | 229 | printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, " |
230 | "uninterruptible %llu\n", (unsigned long long)c->nr_sleeping, | 230 | "uninterruptible %llu\n", (unsigned long long)c->nr_sleeping, |
@@ -235,7 +235,7 @@ void print_cgroupstats(struct cgroupstats *c) | |||
235 | } | 235 | } |
236 | 236 | ||
237 | 237 | ||
238 | void print_ioacct(struct taskstats *t) | 238 | static void print_ioacct(struct taskstats *t) |
239 | { | 239 | { |
240 | printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n", | 240 | printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n", |
241 | t->ac_comm, | 241 | t->ac_comm, |