@@ -448,43 +448,44 @@ krcCheckBusError_KERNEL
448448 & clDevCtrlStatus ) == NV_OK &&
449449 clDevCtrlStatusFlags != 0 )
450450 {
451- NV_PRINTF (LEVEL_ERROR ,
452- "PCI-E corelogic status has pending errors (CL_PCIE_DEV_CTRL_STATUS = %08X): \n" ,
451+ NV_PRINTF (LEVEL_INFO ,
452+ "PCI-E corelogic: Pending errors in DEV_CTRL_STATUS = %08X\n" ,
453453 clDevCtrlStatus );
454454
455455 clDevCtrlStatusFlags_Org = clDevCtrlStatusFlags ;
456456
457457 if (clDevCtrlStatusFlags &
458458 NV2080_CTRL_BUS_INFO_PCIE_LINK_ERRORS_CORR_ERROR )
459459 {
460- NV_PRINTF (LEVEL_ERROR , " _CORR_ERROR_DETECTED \n" );
460+ NV_PRINTF (LEVEL_INFO , "PCI-E corelogic: CORR_ERROR_DETECTED \n" );
461461 // not much interested in this one
462462 clDevCtrlStatusFlags &=
463463 ~NV2080_CTRL_BUS_INFO_PCIE_LINK_ERRORS_CORR_ERROR ;
464464 }
465465 if (clDevCtrlStatusFlags &
466466 NV2080_CTRL_BUS_INFO_PCIE_LINK_ERRORS_NON_FATAL_ERROR )
467467 {
468- NV_PRINTF (LEVEL_ERROR , " _NON_FATAL_ERROR_DETECTED \n" );
468+ NV_PRINTF (LEVEL_INFO , "PCI-E corelogic: NON_FATAL_ERROR_DETECTED \n" );
469469 }
470470 if (clDevCtrlStatusFlags &
471471 NV2080_CTRL_BUS_INFO_PCIE_LINK_ERRORS_FATAL_ERROR )
472472 {
473- NV_PRINTF (LEVEL_ERROR , " _FATAL_ERROR_DETECTED \n" );
473+ NV_PRINTF (LEVEL_ERROR , "PCI-E corelogic: FATAL_ERROR_DETECTED \n" );
474474 }
475475 if (clDevCtrlStatusFlags &
476476 NV2080_CTRL_BUS_INFO_PCIE_LINK_ERRORS_UNSUPP_REQUEST )
477477 {
478- NV_PRINTF (LEVEL_ERROR , " _UNSUPP_REQUEST_DETECTED \n" );
478+ NV_PRINTF (LEVEL_INFO , "PCI-E corelogic: UNSUPP_REQUEST_DETECTED \n" );
479479 }
480480 }
481481
482482 // Corelogic AER
483483 if (pCl != NULL && clPcieReadAerCapability (pGpu , pCl , & clAer ) == NV_OK &&
484- (clAer .UncorrErrStatusReg != 0 || clAer .RooErrStatus != 0 ))
484+ (clAer .UncorrErrStatusReg != 0 ||
485+ (clAer .RooErrStatus & ~CL_AER_ROOT_ERROR_STATUS_ERR_COR_SUBCLASS_MASK ) != 0 ))
485486 {
486487 NV_PRINTF (LEVEL_ERROR ,
487- "PCE-I Advanced Error Reporting Corelogic Info:\n" );
488+ "PCI-E Advanced Error Reporting Corelogic Info:\n" );
488489 NV_PRINTF (LEVEL_ERROR ,
489490 " Uncorr Error Status Register : %08X\n" ,
490491 clAer .UncorrErrStatusReg );
0 commit comments