Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329045
b: refs/heads/master
c: 2ea0392
h: refs/heads/master
i:
  329043: ba710ec
v: v3
  • Loading branch information
Carlos Maiolino authored and Ben Myers committed Sep 26, 2012
1 parent f6efc0d commit cba1464
Show file tree
Hide file tree
Showing 2 changed files with 10 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: 4056c1d08d2a7c50ae7414db7c1783ba45b4835d
refs/heads/master: 2ea0392983a82f7dc3055568ae0f2558724d119b
10 changes: 9 additions & 1 deletion trunk/fs/xfs/xfs_super.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,18 @@ mempool_t *xfs_ioend_pool;
* in the future, too.
*/
enum {
Opt_barrier, Opt_nobarrier, Opt_inode64, Opt_err
Opt_barrier,
Opt_nobarrier,
Opt_inode64,
Opt_inode32,
Opt_err
};

static const match_table_t tokens = {
{Opt_barrier, "barrier"},
{Opt_nobarrier, "nobarrier"},
{Opt_inode64, "inode64"},
{Opt_inode32, "inode32"},
{Opt_err, NULL}
};

Expand Down Expand Up @@ -1141,6 +1146,9 @@ xfs_fs_remount(
case Opt_inode64:
mp->m_maxagi = xfs_set_inode64(mp);
break;
case Opt_inode32:
mp->m_maxagi = xfs_set_inode32(mp);
break;
default:
/*
* Logically we would return an error here to prevent
Expand Down

0 comments on commit cba1464

Please sign in to comment.