diff options
author | David Teigland <teigland@redhat.com> | 2006-09-06 17:57:06 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-07 09:43:34 -0400 |
commit | 3204a6c05588788f7686bc45585185a9a4788430 (patch) | |
tree | 053c0839ee64ccf2e7dfc94d94c388d75c0158ab /fs/gfs2/sys.c | |
parent | c53921248c79197befa7caa4c17b1af5c077a2c2 (diff) |
[GFS2] use snprintf for sysfs show
Use snprintf(buf, PAGE_SIZE, ...) instead of sprintf for sysfs show
methods. Per instructions in Documentation/filesystems/sysfs.txt
Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/sys.c')
-rw-r--r-- | fs/gfs2/sys.c | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/fs/gfs2/sys.c b/fs/gfs2/sys.c index 0d7f0a4e3717..88386d8dc05a 100644 --- a/fs/gfs2/sys.c +++ b/fs/gfs2/sys.c | |||
@@ -32,12 +32,12 @@ spinlock_t gfs2_sys_margs_lock; | |||
32 | 32 | ||
33 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) | 33 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) |
34 | { | 34 | { |
35 | return sprintf(buf, "%s\n", sdp->sd_vfs->s_id); | 35 | return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_vfs->s_id); |
36 | } | 36 | } |
37 | 37 | ||
38 | static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf) | 38 | static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf) |
39 | { | 39 | { |
40 | return sprintf(buf, "%s\n", sdp->sd_fsname); | 40 | return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname); |
41 | } | 41 | } |
42 | 42 | ||
43 | static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf) | 43 | static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf) |
@@ -48,7 +48,7 @@ static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf) | |||
48 | count = sdp->sd_freeze_count; | 48 | count = sdp->sd_freeze_count; |
49 | mutex_unlock(&sdp->sd_freeze_lock); | 49 | mutex_unlock(&sdp->sd_freeze_lock); |
50 | 50 | ||
51 | return sprintf(buf, "%u\n", count); | 51 | return snprintf(buf, PAGE_SIZE, "%u\n", count); |
52 | } | 52 | } |
53 | 53 | ||
54 | static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 54 | static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
@@ -80,7 +80,7 @@ static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | |||
80 | static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf) | 80 | static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf) |
81 | { | 81 | { |
82 | unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags); | 82 | unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags); |
83 | return sprintf(buf, "%u\n", b); | 83 | return snprintf(buf, PAGE_SIZE, "%u\n", b); |
84 | } | 84 | } |
85 | 85 | ||
86 | static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 86 | static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
@@ -239,7 +239,7 @@ struct lockstruct_attr { | |||
239 | #define LOCKSTRUCT_ATTR(name, fmt) \ | 239 | #define LOCKSTRUCT_ATTR(name, fmt) \ |
240 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ | 240 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ |
241 | { \ | 241 | { \ |
242 | return sprintf(buf, fmt, sdp->sd_lockstruct.ls_##name); \ | 242 | return snprintf(buf, PAGE_SIZE, fmt, sdp->sd_lockstruct.ls_##name); \ |
243 | } \ | 243 | } \ |
244 | static struct lockstruct_attr lockstruct_attr_##name = __ATTR_RO(name) | 244 | static struct lockstruct_attr lockstruct_attr_##name = __ATTR_RO(name) |
245 | 245 | ||
@@ -268,7 +268,7 @@ struct args_attr { | |||
268 | #define ARGS_ATTR(name, fmt) \ | 268 | #define ARGS_ATTR(name, fmt) \ |
269 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ | 269 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ |
270 | { \ | 270 | { \ |
271 | return sprintf(buf, fmt, sdp->sd_args.ar_##name); \ | 271 | return snprintf(buf, PAGE_SIZE, fmt, sdp->sd_args.ar_##name); \ |
272 | } \ | 272 | } \ |
273 | static struct args_attr args_attr_##name = __ATTR_RO(name) | 273 | static struct args_attr args_attr_##name = __ATTR_RO(name) |
274 | 274 | ||
@@ -290,7 +290,8 @@ ARGS_ATTR(data, "%d\n"); | |||
290 | /* one oddball doesn't fit the macro mold */ | 290 | /* one oddball doesn't fit the macro mold */ |
291 | static ssize_t noatime_show(struct gfs2_sbd *sdp, char *buf) | 291 | static ssize_t noatime_show(struct gfs2_sbd *sdp, char *buf) |
292 | { | 292 | { |
293 | return sprintf(buf, "%d\n", !!test_bit(SDF_NOATIME, &sdp->sd_flags)); | 293 | return snprintf(buf, PAGE_SIZE, "%d\n", |
294 | !!test_bit(SDF_NOATIME, &sdp->sd_flags)); | ||
294 | } | 295 | } |
295 | static struct args_attr args_attr_noatime = __ATTR_RO(noatime); | 296 | static struct args_attr args_attr_noatime = __ATTR_RO(noatime); |
296 | 297 | ||
@@ -325,7 +326,8 @@ struct counters_attr { | |||
325 | #define COUNTERS_ATTR(name, fmt) \ | 326 | #define COUNTERS_ATTR(name, fmt) \ |
326 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ | 327 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ |
327 | { \ | 328 | { \ |
328 | return sprintf(buf, fmt, (unsigned int)atomic_read(&sdp->sd_##name)); \ | 329 | return snprintf(buf, PAGE_SIZE, fmt, \ |
330 | (unsigned int)atomic_read(&sdp->sd_##name)); \ | ||
329 | } \ | 331 | } \ |
330 | static struct counters_attr counters_attr_##name = __ATTR_RO(name) | 332 | static struct counters_attr counters_attr_##name = __ATTR_RO(name) |
331 | 333 | ||
@@ -348,8 +350,9 @@ static struct attribute *counters_attrs[] = { | |||
348 | 350 | ||
349 | static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf) | 351 | static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf) |
350 | { | 352 | { |
351 | return sprintf(buf, "%u %u\n", sdp->sd_tune.gt_quota_scale_num, | 353 | return snprintf(buf, PAGE_SIZE, "%u %u\n", |
352 | sdp->sd_tune.gt_quota_scale_den); | 354 | sdp->sd_tune.gt_quota_scale_num, |
355 | sdp->sd_tune.gt_quota_scale_den); | ||
353 | } | 356 | } |
354 | 357 | ||
355 | static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf, | 358 | static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf, |
@@ -403,7 +406,7 @@ static struct tune_attr tune_attr_##name = __ATTR(name, 0644, show, store) | |||
403 | #define TUNE_ATTR_2(name, store) \ | 406 | #define TUNE_ATTR_2(name, store) \ |
404 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ | 407 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ |
405 | { \ | 408 | { \ |
406 | return sprintf(buf, "%u\n", sdp->sd_tune.gt_##name); \ | 409 | return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \ |
407 | } \ | 410 | } \ |
408 | TUNE_ATTR_3(name, name##_show, store) | 411 | TUNE_ATTR_3(name, name##_show, store) |
409 | 412 | ||