소스 검색

intel-iommu: Make "Unknown DMAR structure" message more informative

We might as well print the type of the DMAR structure we don't know how
to handle when skipping it.  Then someone getting this message has a
chance of telling whether the structure is just bogus, or if there
really is something valid that the kernel doesn't know how to handle.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Roland Dreier 16 년 전
부모
커밋
4de75cf939
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      drivers/pci/dmar.c

+ 2 - 1
drivers/pci/dmar.c

@@ -461,7 +461,8 @@ parse_dmar_table(void)
 			break;
 			break;
 		default:
 		default:
 			printk(KERN_WARNING PREFIX
 			printk(KERN_WARNING PREFIX
-				"Unknown DMAR structure type\n");
+				"Unknown DMAR structure type %d\n",
+				entry_header->type);
 			ret = 0; /* for forward compatibility */
 			ret = 0; /* for forward compatibility */
 			break;
 			break;
 		}
 		}