aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/sys.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-09-05 10:53:09 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-09-05 10:53:09 -0400
commitea67eedb211d3418fa62fe3477e0d19b2888225e (patch)
tree456cb81b1eb23ec76ce6a44e5ce2ce068995baa1 /fs/gfs2/sys.c
parentf2f7ba5237e2fe10ba3e328a4f728b9e1ff141da (diff)
[GFS2] Fix end of multi-line structures
As per Jan Engelhardt's request, I've added a ',' to the end of each of the multi-line structures which didn't already have one (most already did). Cc: Jan Engelhardt <jengelh@linux01.gwdg.de> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/sys.c')
-rw-r--r--fs/gfs2/sys.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/gfs2/sys.c b/fs/gfs2/sys.c
index 8aefda22f98e..7a282a4bde2a 100644
--- a/fs/gfs2/sys.c
+++ b/fs/gfs2/sys.c
@@ -253,7 +253,7 @@ static struct attribute *lockstruct_attrs[] = {
253 &lockstruct_attr_first.attr, 253 &lockstruct_attr_first.attr,
254 &lockstruct_attr_lvb_size.attr, 254 &lockstruct_attr_lvb_size.attr,
255 &lockstruct_attr_flags.attr, 255 &lockstruct_attr_flags.attr,
256 NULL 256 NULL,
257}; 257};
258 258
259/* 259/*
@@ -310,7 +310,7 @@ static struct attribute *args_attrs[] = {
310 &args_attr_suiddir.attr, 310 &args_attr_suiddir.attr,
311 &args_attr_data.attr, 311 &args_attr_data.attr,
312 &args_attr_noatime.attr, 312 &args_attr_noatime.attr,
313 NULL 313 NULL,
314}; 314};
315 315
316/* 316/*
@@ -339,7 +339,7 @@ static struct attribute *counters_attrs[] = {
339 &counters_attr_glock_held_count.attr, 339 &counters_attr_glock_held_count.attr,
340 &counters_attr_inode_count.attr, 340 &counters_attr_inode_count.attr,
341 &counters_attr_reclaimed.attr, 341 &counters_attr_reclaimed.attr,
342 NULL 342 NULL,
343}; 343};
344 344
345/* 345/*
@@ -487,27 +487,27 @@ static struct attribute *tune_attrs[] = {
487 &tune_attr_quota_scale.attr, 487 &tune_attr_quota_scale.attr,
488 &tune_attr_new_files_jdata.attr, 488 &tune_attr_new_files_jdata.attr,
489 &tune_attr_new_files_directio.attr, 489 &tune_attr_new_files_directio.attr,
490 NULL 490 NULL,
491}; 491};
492 492
493static struct attribute_group lockstruct_group = { 493static struct attribute_group lockstruct_group = {
494 .name = "lockstruct", 494 .name = "lockstruct",
495 .attrs = lockstruct_attrs 495 .attrs = lockstruct_attrs,
496}; 496};
497 497
498static struct attribute_group counters_group = { 498static struct attribute_group counters_group = {
499 .name = "counters", 499 .name = "counters",
500 .attrs = counters_attrs 500 .attrs = counters_attrs,
501}; 501};
502 502
503static struct attribute_group args_group = { 503static struct attribute_group args_group = {
504 .name = "args", 504 .name = "args",
505 .attrs = args_attrs 505 .attrs = args_attrs,
506}; 506};
507 507
508static struct attribute_group tune_group = { 508static struct attribute_group tune_group = {
509 .name = "tune", 509 .name = "tune",
510 .attrs = tune_attrs 510 .attrs = tune_attrs,
511}; 511};
512 512
513int gfs2_sys_fs_add(struct gfs2_sbd *sdp) 513int gfs2_sys_fs_add(struct gfs2_sbd *sdp)