xfs: report unrecognized log item type codes during recovery

When we're sorting recovered log items ahead of recovering them and
encounter a log item of unknown type, actually print the type code when
we're rejecting the whole transaction to aid in debugging.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
Darrick J. Wong 2020-04-21 14:16:52 -07:00
parent 0e698dfa28
commit 0d2d35a33e

View File

@ -1887,8 +1887,8 @@ xlog_recover_reorder_trans(
break; break;
default: default:
xfs_warn(log->l_mp, xfs_warn(log->l_mp,
"%s: unrecognized type of log operation", "%s: unrecognized type of log operation (%d)",
__func__); __func__, ITEM_TYPE(item));
ASSERT(0); ASSERT(0);
/* /*
* return the remaining items back to the transaction * return the remaining items back to the transaction