diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-05 10:53:09 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-05 10:53:09 -0400 |
commit | ea67eedb211d3418fa62fe3477e0d19b2888225e (patch) | |
tree | 456cb81b1eb23ec76ce6a44e5ce2ce068995baa1 /fs/gfs2/lops.c | |
parent | f2f7ba5237e2fe10ba3e328a4f728b9e1ff141da (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/lops.c')
-rw-r--r-- | fs/gfs2/lops.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/gfs2/lops.c b/fs/gfs2/lops.c index 5898d6d3c1fe..07655a755619 100644 --- a/fs/gfs2/lops.c +++ b/fs/gfs2/lops.c | |||
@@ -760,7 +760,7 @@ static void databuf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai) | |||
760 | const struct gfs2_log_operations gfs2_glock_lops = { | 760 | const struct gfs2_log_operations gfs2_glock_lops = { |
761 | .lo_add = glock_lo_add, | 761 | .lo_add = glock_lo_add, |
762 | .lo_after_commit = glock_lo_after_commit, | 762 | .lo_after_commit = glock_lo_after_commit, |
763 | .lo_name = "glock" | 763 | .lo_name = "glock", |
764 | }; | 764 | }; |
765 | 765 | ||
766 | const struct gfs2_log_operations gfs2_buf_lops = { | 766 | const struct gfs2_log_operations gfs2_buf_lops = { |
@@ -771,7 +771,7 @@ const struct gfs2_log_operations gfs2_buf_lops = { | |||
771 | .lo_before_scan = buf_lo_before_scan, | 771 | .lo_before_scan = buf_lo_before_scan, |
772 | .lo_scan_elements = buf_lo_scan_elements, | 772 | .lo_scan_elements = buf_lo_scan_elements, |
773 | .lo_after_scan = buf_lo_after_scan, | 773 | .lo_after_scan = buf_lo_after_scan, |
774 | .lo_name = "buf" | 774 | .lo_name = "buf", |
775 | }; | 775 | }; |
776 | 776 | ||
777 | const struct gfs2_log_operations gfs2_revoke_lops = { | 777 | const struct gfs2_log_operations gfs2_revoke_lops = { |
@@ -780,13 +780,13 @@ const struct gfs2_log_operations gfs2_revoke_lops = { | |||
780 | .lo_before_scan = revoke_lo_before_scan, | 780 | .lo_before_scan = revoke_lo_before_scan, |
781 | .lo_scan_elements = revoke_lo_scan_elements, | 781 | .lo_scan_elements = revoke_lo_scan_elements, |
782 | .lo_after_scan = revoke_lo_after_scan, | 782 | .lo_after_scan = revoke_lo_after_scan, |
783 | .lo_name = "revoke" | 783 | .lo_name = "revoke", |
784 | }; | 784 | }; |
785 | 785 | ||
786 | const struct gfs2_log_operations gfs2_rg_lops = { | 786 | const struct gfs2_log_operations gfs2_rg_lops = { |
787 | .lo_add = rg_lo_add, | 787 | .lo_add = rg_lo_add, |
788 | .lo_after_commit = rg_lo_after_commit, | 788 | .lo_after_commit = rg_lo_after_commit, |
789 | .lo_name = "rg" | 789 | .lo_name = "rg", |
790 | }; | 790 | }; |
791 | 791 | ||
792 | const struct gfs2_log_operations gfs2_databuf_lops = { | 792 | const struct gfs2_log_operations gfs2_databuf_lops = { |
@@ -796,7 +796,7 @@ const struct gfs2_log_operations gfs2_databuf_lops = { | |||
796 | .lo_after_commit = databuf_lo_after_commit, | 796 | .lo_after_commit = databuf_lo_after_commit, |
797 | .lo_scan_elements = databuf_lo_scan_elements, | 797 | .lo_scan_elements = databuf_lo_scan_elements, |
798 | .lo_after_scan = databuf_lo_after_scan, | 798 | .lo_after_scan = databuf_lo_after_scan, |
799 | .lo_name = "databuf" | 799 | .lo_name = "databuf", |
800 | }; | 800 | }; |
801 | 801 | ||
802 | const struct gfs2_log_operations *gfs2_log_ops[] = { | 802 | const struct gfs2_log_operations *gfs2_log_ops[] = { |
@@ -805,6 +805,6 @@ const struct gfs2_log_operations *gfs2_log_ops[] = { | |||
805 | &gfs2_revoke_lops, | 805 | &gfs2_revoke_lops, |
806 | &gfs2_rg_lops, | 806 | &gfs2_rg_lops, |
807 | &gfs2_databuf_lops, | 807 | &gfs2_databuf_lops, |
808 | NULL | 808 | NULL, |
809 | }; | 809 | }; |
810 | 810 | ||