diff options
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 54a6f114240..51814c32edd 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
@@ -3533,7 +3533,9 @@ xlog_verify_iclog(xlog_t *log, | |||
3533 | } | 3533 | } |
3534 | } | 3534 | } |
3535 | if (clientid != XFS_TRANSACTION && clientid != XFS_LOG) | 3535 | if (clientid != XFS_TRANSACTION && clientid != XFS_LOG) |
3536 | cmn_err(CE_WARN, "xlog_verify_iclog: invalid clientid %d op 0x%p offset 0x%x", clientid, ophead, field_offset); | 3536 | cmn_err(CE_WARN, "xlog_verify_iclog: " |
3537 | "invalid clientid %d op 0x%p offset 0x%lx", | ||
3538 | clientid, ophead, (unsigned long)field_offset); | ||
3537 | 3539 | ||
3538 | /* check length */ | 3540 | /* check length */ |
3539 | field_offset = (__psint_t) | 3541 | field_offset = (__psint_t) |