diff options
author | Christoph Hellwig <hch@lst.de> | 2009-03-29 19:26:46 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@brick.lst.de> | 2009-03-29 19:26:46 +0200 |
commit | 1a5902c5d2ad4f3aa1ee747017622d5d4edfa20f (patch) | |
tree | cf93367c9b63f814095351c1eeb8d7cc1c2d3f9f /fs/xfs/xfs_bmap.h | |
parent | 9da096fd13e63031662566e5e868ec3dcc70824e (diff) | |
download | linux-1a5902c5d2ad4f3aa1ee747017622d5d4edfa20f.tar.gz linux-1a5902c5d2ad4f3aa1ee747017622d5d4edfa20f.tar.bz2 linux-1a5902c5d2ad4f3aa1ee747017622d5d4edfa20f.zip |
xfs: remove m_attroffset
With the upcoming v3 inodes the default attroffset needs to be calculated
for each specific inode, so we can't cache it in the superblock anymore.
Also replace the assert for wrong inode sizes with a proper error check
also included in non-debug builds. Note that the ENOSYS return for
that might seem odd, but that error is returned by xfs_mount_validate_sb
for all theoretically valid but not supported filesystem geometries.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Diffstat (limited to 'fs/xfs/xfs_bmap.h')
-rw-r--r-- | fs/xfs/xfs_bmap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/xfs/xfs_bmap.h b/fs/xfs/xfs_bmap.h index 589d3dabdd17..1b8ff9256bd0 100644 --- a/fs/xfs/xfs_bmap.h +++ b/fs/xfs/xfs_bmap.h @@ -338,6 +338,10 @@ xfs_check_nostate_extents( xfs_extnum_t idx, xfs_extnum_t num); +uint +xfs_default_attroffset( + struct xfs_inode *ip); + #ifdef __KERNEL__ /* |