aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-04-19 18:19:49 -0400
committerDarrick J. Wong <darrick.wong@oracle.com>2017-04-25 12:40:41 -0400
commit37f7f9bbf3b914e94f81426f6f59a3f97f4dc562 (patch)
treec87f5ca0d6bb9dd7bc806ca478e82370e8e9561f
parent895e9bfc9e36c8e39ea4d2129dc2cbde1aafec99 (diff)
xfs: remove unused values from xfs_exntst_t
We only ever use the normal and unwritten states. And the actual ondisk format (this enum isn't despite being in xfs_format.h) only has space for the unwritten bit anyway. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
-rw-r--r--fs/xfs/libxfs/xfs_format.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_format.h b/fs/xfs/libxfs/xfs_format.h
index d114ed80a076..8425884668a8 100644
--- a/fs/xfs/libxfs/xfs_format.h
+++ b/fs/xfs/libxfs/xfs_format.h
@@ -1588,7 +1588,6 @@ typedef enum {
1588 */ 1588 */
1589typedef enum { 1589typedef enum {
1590 XFS_EXT_NORM, XFS_EXT_UNWRITTEN, 1590 XFS_EXT_NORM, XFS_EXT_UNWRITTEN,
1591 XFS_EXT_DMAPI_OFFLINE, XFS_EXT_INVALID
1592} xfs_exntst_t; 1591} xfs_exntst_t;
1593 1592
1594/* 1593/*