iommu/vt-d: Remove two WARN_ON in domain_context_mapping_one()
authorYanfei Xu <yanfei.xu@intel.com>
Wed, 14 Jun 2023 02:47:04 +0000 (10:47 +0800)
committerJoerg Roedel <jroedel@suse.de>
Fri, 16 Jun 2023 14:38:32 +0000 (16:38 +0200)
commit3f13f72787bcd15792c01a34c2aed8bdf38397bb
treee281e8aaf23652d41ad574b3548666c3e59ec676
parenta0e9911ac14baf46d8a8bea322c5bd7b3845825c
iommu/vt-d: Remove two WARN_ON in domain_context_mapping_one()

Remove the WARN_ON(did == 0) as the domain id 0 is reserved and
set once the domain_ids is allocated. So iommu_init_domains will
never return 0.

Remove the WARN_ON(!table) as this pointer will be accessed in
the following code, if empty "table" really happens, the kernel
will report a NULL pointer reference warning at the first place.

Signed-off-by: Yanfei Xu <yanfei.xu@intel.com>
Link: https://lore.kernel.org/r/20230605112659.308981-3-yanfei.xu@intel.com
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/intel/iommu.c