diff options
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 | /* |