Commit 6d4a8ecb authored by Dave Chinner's avatar Dave Chinner Committed by Dave Chinner

xfs: rename xfs_cmn_err_fsblock_zero()

The "cmn_err" part of the function name is no longer relevant. Rename
the function to xfs_alert_fsblock_zero() to match the new logging
API.
Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarAlex Elder <aelder@sgi.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
parent 53487786
...@@ -101,7 +101,7 @@ xfs_iomap_eof_align_last_fsb( ...@@ -101,7 +101,7 @@ xfs_iomap_eof_align_last_fsb(
} }
STATIC int STATIC int
xfs_cmn_err_fsblock_zero( xfs_alert_fsblock_zero(
xfs_inode_t *ip, xfs_inode_t *ip,
xfs_bmbt_irec_t *imap) xfs_bmbt_irec_t *imap)
{ {
...@@ -246,7 +246,7 @@ xfs_iomap_write_direct( ...@@ -246,7 +246,7 @@ xfs_iomap_write_direct(
} }
if (!(imap->br_startblock || XFS_IS_REALTIME_INODE(ip))) { if (!(imap->br_startblock || XFS_IS_REALTIME_INODE(ip))) {
error = xfs_cmn_err_fsblock_zero(ip, imap); error = xfs_alert_fsblock_zero(ip, imap);
goto error_out; goto error_out;
} }
...@@ -464,7 +464,7 @@ xfs_iomap_write_delay( ...@@ -464,7 +464,7 @@ xfs_iomap_write_delay(
} }
if (!(imap[0].br_startblock || XFS_IS_REALTIME_INODE(ip))) if (!(imap[0].br_startblock || XFS_IS_REALTIME_INODE(ip)))
return xfs_cmn_err_fsblock_zero(ip, &imap[0]); return xfs_alert_fsblock_zero(ip, &imap[0]);
*ret_imap = imap[0]; *ret_imap = imap[0];
return 0; return 0;
...@@ -614,7 +614,7 @@ xfs_iomap_write_allocate( ...@@ -614,7 +614,7 @@ xfs_iomap_write_allocate(
* covers at least part of the callers request * covers at least part of the callers request
*/ */
if (!(imap->br_startblock || XFS_IS_REALTIME_INODE(ip))) if (!(imap->br_startblock || XFS_IS_REALTIME_INODE(ip)))
return xfs_cmn_err_fsblock_zero(ip, imap); return xfs_alert_fsblock_zero(ip, imap);
if ((offset_fsb >= imap->br_startoff) && if ((offset_fsb >= imap->br_startoff) &&
(offset_fsb < (imap->br_startoff + (offset_fsb < (imap->br_startoff +
...@@ -724,7 +724,7 @@ xfs_iomap_write_unwritten( ...@@ -724,7 +724,7 @@ xfs_iomap_write_unwritten(
return XFS_ERROR(error); return XFS_ERROR(error);
if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip))) if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
return xfs_cmn_err_fsblock_zero(ip, &imap); return xfs_alert_fsblock_zero(ip, &imap);
if ((numblks_fsb = imap.br_blockcount) == 0) { if ((numblks_fsb = imap.br_blockcount) == 0) {
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment