diff options
| author | Chandra Seetharaman <sekharan@us.ibm.com> | 2011-07-22 23:39:57 +0000 | 
|---|---|---|
| committer | Alex Elder <aelder@sgi.com> | 2011-07-25 15:03:00 -0500 | 
| commit | b75e40a4193ca027af7327ef30c31d45aa0a0e40 (patch) | |
| tree | 9a75ea6fbcd2749efc46c94079c89afc2a145bc7 | |
| parent | 5a52c2a581cddcb676a54a95d99cd39f5577c33b (diff) | |
| download | olio-linux-3.10-b75e40a4193ca027af7327ef30c31d45aa0a0e40.tar.xz olio-linux-3.10-b75e40a4193ca027af7327ef30c31d45aa0a0e40.zip  | |
xfs: Remove macro XFS_BUF_BUSY and family
Remove the definitions and uses of the macros XFS_BUF_BUSY,
XFS_BUF_UNBUSY, and XFS_BUF_ISBUSY.
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
| -rw-r--r-- | fs/xfs/linux-2.6/xfs_buf.c | 1 | ||||
| -rw-r--r-- | fs/xfs/linux-2.6/xfs_buf.h | 4 | ||||
| -rw-r--r-- | fs/xfs/quota/xfs_dquot.c | 4 | ||||
| -rw-r--r-- | fs/xfs/xfs_buf_item.c | 2 | ||||
| -rw-r--r-- | fs/xfs/xfs_log.c | 4 | ||||
| -rw-r--r-- | fs/xfs/xfs_log_recover.c | 2 | ||||
| -rw-r--r-- | fs/xfs/xfs_trans_buf.c | 9 | 
7 files changed, 0 insertions, 26 deletions
diff --git a/fs/xfs/linux-2.6/xfs_buf.c b/fs/xfs/linux-2.6/xfs_buf.c index 704418a0499..ae2c2e71968 100644 --- a/fs/xfs/linux-2.6/xfs_buf.c +++ b/fs/xfs/linux-2.6/xfs_buf.c @@ -679,7 +679,6 @@ xfs_buf_read_uncached(  	/* set up the buffer for a read IO */  	XFS_BUF_SET_ADDR(bp, daddr);  	XFS_BUF_READ(bp); -	XFS_BUF_BUSY(bp);  	xfsbdstrat(mp, bp);  	error = xfs_buf_iowait(bp); diff --git a/fs/xfs/linux-2.6/xfs_buf.h b/fs/xfs/linux-2.6/xfs_buf.h index 08a15c25484..05e744f9fe7 100644 --- a/fs/xfs/linux-2.6/xfs_buf.h +++ b/fs/xfs/linux-2.6/xfs_buf.h @@ -254,10 +254,6 @@ void xfs_buf_stale(struct xfs_buf *bp);  #define XFS_BUF_UNDONE(bp)	((bp)->b_flags &= ~XBF_DONE)  #define XFS_BUF_ISDONE(bp)	((bp)->b_flags & XBF_DONE) -#define XFS_BUF_BUSY(bp)	do { } while (0) -#define XFS_BUF_UNBUSY(bp)	do { } while (0) -#define XFS_BUF_ISBUSY(bp)	(1) -  #define XFS_BUF_ASYNC(bp)	((bp)->b_flags |= XBF_ASYNC)  #define XFS_BUF_UNASYNC(bp)	((bp)->b_flags &= ~XBF_ASYNC)  #define XFS_BUF_ISASYNC(bp)	((bp)->b_flags & XBF_ASYNC) diff --git a/fs/xfs/quota/xfs_dquot.c b/fs/xfs/quota/xfs_dquot.c index 784019d4a57..0e12861bd55 100644 --- a/fs/xfs/quota/xfs_dquot.c +++ b/fs/xfs/quota/xfs_dquot.c @@ -318,7 +318,6 @@ xfs_qm_init_dquot_blk(  	int		curid, i;  	ASSERT(tp); -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(xfs_buf_islocked(bp));  	d = (xfs_dqblk_t *)XFS_BUF_PTR(bp); @@ -534,7 +533,6 @@ xfs_qm_dqtobp(  			return XFS_ERROR(error);  	} -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(xfs_buf_islocked(bp));  	/* @@ -553,7 +551,6 @@ xfs_qm_dqtobp(  			xfs_trans_brelse(tp, bp);  			return XFS_ERROR(EIO);  		} -		XFS_BUF_BUSY(bp); /* We dirtied this */  	}  	*O_bpp = bp; @@ -622,7 +619,6 @@ xfs_qm_dqread(  	 * this particular dquot was repaired. We still aren't afraid to  	 * brelse it because we have the changes incore.  	 */ -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(xfs_buf_islocked(bp));  	xfs_trans_brelse(tp, bp); diff --git a/fs/xfs/xfs_buf_item.c b/fs/xfs/xfs_buf_item.c index 38417ab46fd..9e9b4a70360 100644 --- a/fs/xfs/xfs_buf_item.c +++ b/fs/xfs/xfs_buf_item.c @@ -371,7 +371,6 @@ xfs_buf_item_pin(  {  	struct xfs_buf_log_item	*bip = BUF_ITEM(lip); -	ASSERT(XFS_BUF_ISBUSY(bip->bli_buf));  	ASSERT(atomic_read(&bip->bli_refcount) > 0);  	ASSERT((bip->bli_flags & XFS_BLI_LOGGED) ||  	       (bip->bli_flags & XFS_BLI_STALE)); @@ -895,7 +894,6 @@ xfs_buf_attach_iodone(  {  	xfs_log_item_t	*head_lip; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(xfs_buf_islocked(bp));  	lip->li_cb = cb; diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index d1595e7ffd0..64682b6f9dc 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c @@ -1051,7 +1051,6 @@ xlog_alloc_log(xfs_mount_t	*mp,  	if (!bp)  		goto out_free_log;  	bp->b_iodone = xlog_iodone; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(xfs_buf_islocked(bp));  	log->l_xbuf = bp; @@ -1108,7 +1107,6 @@ xlog_alloc_log(xfs_mount_t	*mp,  		iclog->ic_callback_tail = &(iclog->ic_callback);  		iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize; -		ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));  		ASSERT(xfs_buf_islocked(iclog->ic_bp));  		init_waitqueue_head(&iclog->ic_force_wait);  		init_waitqueue_head(&iclog->ic_write_wait); @@ -1355,7 +1353,6 @@ xlog_sync(xlog_t		*log,  	XFS_BUF_SET_COUNT(bp, count);  	bp->b_fspriv = iclog;  	XFS_BUF_ZEROFLAGS(bp); -	XFS_BUF_BUSY(bp);  	XFS_BUF_ASYNC(bp);  	bp->b_flags |= XBF_SYNCIO; @@ -1402,7 +1399,6 @@ xlog_sync(xlog_t		*log,  					    (__psint_t)count), split);  		bp->b_fspriv = iclog;  		XFS_BUF_ZEROFLAGS(bp); -		XFS_BUF_BUSY(bp);  		XFS_BUF_ASYNC(bp);  		bp->b_flags |= XBF_SYNCIO;  		if (log->l_mp->m_flags & XFS_MOUNT_BARRIER) diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index a8e0827dbe7..4c8a892c095 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c @@ -178,7 +178,6 @@ xlog_bread_noalign(  	XFS_BUF_SET_ADDR(bp, log->l_logBBstart + blk_no);  	XFS_BUF_READ(bp); -	XFS_BUF_BUSY(bp);  	XFS_BUF_SET_COUNT(bp, BBTOB(nbblks));  	XFS_BUF_SET_TARGET(bp, log->l_mp->m_logdev_targp); @@ -266,7 +265,6 @@ xlog_bwrite(  	XFS_BUF_SET_ADDR(bp, log->l_logBBstart + blk_no);  	XFS_BUF_ZEROFLAGS(bp); -	XFS_BUF_BUSY(bp);  	XFS_BUF_HOLD(bp);  	xfs_buf_lock(bp);  	XFS_BUF_SET_COUNT(bp, BBTOB(nbblks)); diff --git a/fs/xfs/xfs_trans_buf.c b/fs/xfs/xfs_trans_buf.c index f9f1bf6ab4b..7dd62e26ce9 100644 --- a/fs/xfs/xfs_trans_buf.c +++ b/fs/xfs/xfs_trans_buf.c @@ -80,7 +80,6 @@ _xfs_trans_bjoin(  {  	struct xfs_buf_log_item	*bip; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == NULL);  	/* @@ -580,7 +579,6 @@ xfs_trans_bhold(xfs_trans_t	*tp,  {  	xfs_buf_log_item_t	*bip = bp->b_fspriv; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == tp);  	ASSERT(bip != NULL);  	ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); @@ -601,7 +599,6 @@ xfs_trans_bhold_release(xfs_trans_t	*tp,  {  	xfs_buf_log_item_t	*bip = bp->b_fspriv; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == tp);  	ASSERT(bip != NULL);  	ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); @@ -630,7 +627,6 @@ xfs_trans_log_buf(xfs_trans_t	*tp,  {  	xfs_buf_log_item_t	*bip = bp->b_fspriv; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == tp);  	ASSERT(bip != NULL);  	ASSERT((first <= last) && (last < XFS_BUF_COUNT(bp))); @@ -701,7 +697,6 @@ xfs_trans_binval(  {  	xfs_buf_log_item_t	*bip = bp->b_fspriv; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == tp);  	ASSERT(bip != NULL);  	ASSERT(atomic_read(&bip->bli_refcount) > 0); @@ -773,7 +768,6 @@ xfs_trans_inode_buf(  {  	xfs_buf_log_item_t	*bip = bp->b_fspriv; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == tp);  	ASSERT(bip != NULL);  	ASSERT(atomic_read(&bip->bli_refcount) > 0); @@ -797,7 +791,6 @@ xfs_trans_stale_inode_buf(  {  	xfs_buf_log_item_t	*bip = bp->b_fspriv; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == tp);  	ASSERT(bip != NULL);  	ASSERT(atomic_read(&bip->bli_refcount) > 0); @@ -822,7 +815,6 @@ xfs_trans_inode_alloc_buf(  {  	xfs_buf_log_item_t	*bip = bp->b_fspriv; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == tp);  	ASSERT(bip != NULL);  	ASSERT(atomic_read(&bip->bli_refcount) > 0); @@ -850,7 +842,6 @@ xfs_trans_dquot_buf(  {  	xfs_buf_log_item_t	*bip = bp->b_fspriv; -	ASSERT(XFS_BUF_ISBUSY(bp));  	ASSERT(bp->b_transp == tp);  	ASSERT(bip != NULL);  	ASSERT(type == XFS_BLF_UDQUOT_BUF ||  |