Commit 5cb7db89 authored by Stephen Lord's avatar Stephen Lord

[PATCH] Fix XFS proc interface initializers

  [XFS] the intializers for the /proc interface to xfs got out of order,
  and we are syncing 1000 times faster than we are supposed to!

  SGI Modid: 2.5.x-xfs:slinx:151712a
parent cd795af4
...@@ -48,7 +48,7 @@ unsigned long xfs_physmem; ...@@ -48,7 +48,7 @@ unsigned long xfs_physmem;
* Tunable XFS parameters. xfs_params is required even when CONFIG_SYSCTL=n, * Tunable XFS parameters. xfs_params is required even when CONFIG_SYSCTL=n,
* other XFS code uses these values. * other XFS code uses these values.
*/ */
xfs_param_t xfs_params = { 0, 1, 0, 0, 0, 3, 30 * HZ }; xfs_param_t xfs_params = { 0, 1, 0, 0, 3, 30 * HZ, 0 };
/* /*
* Global system credential structure. * Global system credential structure.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment