diff options
author | David S. Miller <davem@davemloft.net> | 2015-03-03 21:16:48 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-03 21:16:48 -0500 |
commit | 71a83a6db6138b9d41d8a0b6b91cb59f6dc4742c (patch) | |
tree | f74b6e4e48257ec6ce40b95645ecb8533b9cc1f8 /fs/xfs/xfs_mount.h | |
parent | b97526f3ff95f92b107f0fb52cbb8627e395429b (diff) | |
parent | a6c5170d1edea97c538c81e377e56c7b5c5b7e63 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
drivers/net/ethernet/rocker/rocker.c
The rocker commit was two overlapping changes, one to rename
the ->vport member to ->pport, and another making the bitmask
expression use '1ULL' instead of plain '1'.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r-- | fs/xfs/xfs_mount.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h index a5b2ff822653..0d8abd6364d9 100644 --- a/fs/xfs/xfs_mount.h +++ b/fs/xfs/xfs_mount.h | |||
@@ -174,6 +174,17 @@ typedef struct xfs_mount { | |||
174 | struct workqueue_struct *m_reclaim_workqueue; | 174 | struct workqueue_struct *m_reclaim_workqueue; |
175 | struct workqueue_struct *m_log_workqueue; | 175 | struct workqueue_struct *m_log_workqueue; |
176 | struct workqueue_struct *m_eofblocks_workqueue; | 176 | struct workqueue_struct *m_eofblocks_workqueue; |
177 | |||
178 | /* | ||
179 | * Generation of the filesysyem layout. This is incremented by each | ||
180 | * growfs, and used by the pNFS server to ensure the client updates | ||
181 | * its view of the block device once it gets a layout that might | ||
182 | * reference the newly added blocks. Does not need to be persistent | ||
183 | * as long as we only allow file system size increments, but if we | ||
184 | * ever support shrinks it would have to be persisted in addition | ||
185 | * to various other kinds of pain inflicted on the pNFS server. | ||
186 | */ | ||
187 | __uint32_t m_generation; | ||
177 | } xfs_mount_t; | 188 | } xfs_mount_t; |
178 | 189 | ||
179 | /* | 190 | /* |