xfs: print useful caller information in xfs_error_report
xfs_error_report used to just print the hex address of the caller; %pF will give us something more human-readable. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Jie Liu <jeff.liu@oracle.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
parent
ca23f8fdd6
commit
db9355c296
|
@ -156,7 +156,7 @@ xfs_error_report(
|
||||||
{
|
{
|
||||||
if (level <= xfs_error_level) {
|
if (level <= xfs_error_level) {
|
||||||
xfs_alert_tag(mp, XFS_PTAG_ERROR_REPORT,
|
xfs_alert_tag(mp, XFS_PTAG_ERROR_REPORT,
|
||||||
"Internal error %s at line %d of file %s. Caller 0x%p",
|
"Internal error %s at line %d of file %s. Caller %pF",
|
||||||
tag, linenum, filename, ra);
|
tag, linenum, filename, ra);
|
||||||
|
|
||||||
xfs_stack_trace();
|
xfs_stack_trace();
|
||||||
|
|
Loading…
Reference in New Issue