xfs: remove the XFS_DFORK_Q macro
Just checking di_forkoff directly is a little easier to follow. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Brian Foster <bfoster@redhat.com> Reviewed-by: Chandan Babu R <chandanrlinux@gmail.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:

committed by
Darrick J. Wong

parent
5fd68bdb5a
commit
09c38edd54
@@ -265,7 +265,7 @@ xfs_inode_from_disk(
|
||||
error = xfs_iformat_data_fork(ip, from);
|
||||
if (error)
|
||||
return error;
|
||||
if (XFS_DFORK_Q(from)) {
|
||||
if (from->di_forkoff) {
|
||||
error = xfs_iformat_attr_fork(ip, from);
|
||||
if (error)
|
||||
goto out_destroy_data_fork;
|
||||
@@ -435,7 +435,7 @@ xfs_dinode_verify_forkoff(
|
||||
struct xfs_dinode *dip,
|
||||
struct xfs_mount *mp)
|
||||
{
|
||||
if (!XFS_DFORK_Q(dip))
|
||||
if (!dip->di_forkoff)
|
||||
return NULL;
|
||||
|
||||
switch (dip->di_format) {
|
||||
@@ -538,7 +538,7 @@ xfs_dinode_verify(
|
||||
return __this_address;
|
||||
}
|
||||
|
||||
if (XFS_DFORK_Q(dip)) {
|
||||
if (dip->di_forkoff) {
|
||||
fa = xfs_dinode_verify_fork(dip, mp, XFS_ATTR_FORK);
|
||||
if (fa)
|
||||
return fa;
|
||||
|
Reference in New Issue
Block a user