On Fri, May 23, 2014 at 07:52:28AM -0400, Brian Foster wrote: > The scan owner field represents an optional inode number that is > responsible for the current scan. The purpose is to identify that an > inode is under iolock and as such, the iolock shouldn't be attempted > when trimming eofblocks. This is an internal only field. > > Signed-off-by: Brian Foster <bfoster@xxxxxxxxxx> > --- > fs/xfs/xfs_icache.c | 12 +++++++++++- > fs/xfs/xfs_icache.h | 2 ++ > 2 files changed, 13 insertions(+), 1 deletion(-) > > diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c > index c48df5f..f4191f6 100644 > --- a/fs/xfs/xfs_icache.c > +++ b/fs/xfs/xfs_icache.c > @@ -1211,6 +1211,7 @@ xfs_inode_free_eofblocks( > { > int ret; > struct xfs_eofblocks *eofb = args; > + bool need_iolock = true; > > if (!xfs_can_free_eofblocks(ip, false)) { > /* inode could be preallocated or append-only */ > @@ -1235,9 +1236,18 @@ xfs_inode_free_eofblocks( > if (eofb->eof_flags & XFS_EOF_FLAGS_MINFILESIZE && > XFS_ISIZE(ip) < eofb->eof_min_file_size) > return 0; > + > + /* > + * A scan owner implies we already hold the iolock. Skip it in > + * xfs_free_eofblocks() to avoid deadlock. This also eliminates > + * the possibility of EAGAIN being returned. > + */ > + if (eofb->eof_scan_owner != NULLFSINO && > + eofb->eof_scan_owner == ip->i_ino) > + need_iolock = false; No need to check against NULLFSINO there. ip->i_ino can never be NULLFSINO, so just checking eofb->eof_scan_owner == ip->i_ino is sufficient. What might be an idea is adding a ASSERT(eofb->eof_scan_owner != 0); to the start of the function to catch anyone who does not initialise it appropriately. The inode number can never be zero (that would translate to block 0 - the primary superblock) and so this woul dbe sufficient to ensure callers are doing the right thing.... Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs