diff options
| author | Nathan Scott <nathans@sgi.com> | 2006-06-09 15:29:40 +1000 | 
|---|---|---|
| committer | Nathan Scott <nathans@sgi.com> | 2006-06-09 15:29:40 +1000 | 
| commit | b65745205fc00d8c7722ec74e9bd955f3861c7e2 (patch) | |
| tree | 524f5bacfcdf54828e97b5368eb35de938651ada /fs/xfs/xfs_rtalloc.c | |
| parent | 9c48876a05b6fbe41f1933fae3529c268d78cad0 (diff) | |
| download | olio-linux-3.10-b65745205fc00d8c7722ec74e9bd955f3861c7e2.tar.xz olio-linux-3.10-b65745205fc00d8c7722ec74e9bd955f3861c7e2.zip  | |
[XFS] Portability changes: remove prdev, stick to one diagnostic
interface.
SGI-PV: 953338
SGI-Modid: xfs-linux-melb:xfs-kern:26103a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
| -rw-r--r-- | fs/xfs/xfs_rtalloc.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index f5944c8b378..af290cf37ac 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -2404,10 +2404,10 @@ xfs_rtprint_range(  {  	xfs_extlen_t	i;		/* block number in the extent */ -	printk("%Ld: ", (long long)start); +	cmn_err(CE_DEBUG, "%Ld: ", (long long)start);  	for (i = 0; i < len; i++) -		printk("%d", xfs_rtcheck_bit(mp, tp, start + i, 1)); -	printk("\n"); +		cmn_err(CE_DEBUG, "%d", xfs_rtcheck_bit(mp, tp, start + i, 1)); +	cmn_err(CE_DEBUG, "\n");  }  /* @@ -2431,17 +2431,17 @@ xfs_rtprint_summary(  			(void)xfs_rtget_summary(mp, tp, l, i, &sumbp, &sb, &c);  			if (c) {  				if (!p) { -					printk("%Ld-%Ld:", 1LL << l, +					cmn_err(CE_DEBUG, "%Ld-%Ld:", 1LL << l,  						XFS_RTMIN((1LL << l) +  							  ((1LL << l) - 1LL),  							 mp->m_sb.sb_rextents));  					p = 1;  				} -				printk(" %Ld:%d", (long long)i, c); +				cmn_err(CE_DEBUG, " %Ld:%d", (long long)i, c);  			}  		}  		if (p) -			printk("\n"); +			cmn_err(CE_DEBUG, "\n");  	}  	if (sumbp)  		xfs_trans_brelse(tp, sumbp);  |