Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67667
b: refs/heads/master
c: 9a5ad13
h: refs/heads/master
i:
  67665: 7981ca1
  67663: 1bb7e87
v: v3
  • Loading branch information
Benjamin Marzinski authored and Steven Whitehouse committed Oct 10, 2007
1 parent 837f0b8 commit acb3d41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 382e6e256b0cb1a84a45a520cef75d1b8ff44663
refs/heads/master: 9a5ad13856cbd10be429f09517c51277c02530f7
5 changes: 4 additions & 1 deletion trunk/fs/gfs2/mount.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ enum {
Opt_nosuiddir,
Opt_data_writeback,
Opt_data_ordered,
Opt_err,
};

static match_table_t tokens = {
Expand All @@ -64,7 +65,8 @@ static match_table_t tokens = {
{Opt_suiddir, "suiddir"},
{Opt_nosuiddir, "nosuiddir"},
{Opt_data_writeback, "data=writeback"},
{Opt_data_ordered, "data=ordered"}
{Opt_data_ordered, "data=ordered"},
{Opt_err, NULL}
};

/**
Expand Down Expand Up @@ -237,6 +239,7 @@ int gfs2_mount_args(struct gfs2_sbd *sdp, char *data_arg, int remount)
case Opt_data_ordered:
args->ar_data = GFS2_DATA_ORDERED;
break;
case Opt_err:
default:
fs_info(sdp, "unknown option: %s\n", o);
error = -EINVAL;
Expand Down

0 comments on commit acb3d41

Please sign in to comment.