Commit dbcd861f authored by Joerg Roedel's avatar Joerg Roedel

iommu/vt-d: Do not re-use domain-ids from the old kernel

Mark all domain-ids we find as reserved, so that there could
be no collision between domains from the previous kernel and
our domains in the IOMMU TLB.
Tested-by: default avatarZhenHua Li <zhen-hual@hp.com>
Tested-by: default avatarBaoquan He <bhe@redhat.com>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent 091d42e4
...@@ -273,6 +273,11 @@ static inline void context_set_domain_id(struct context_entry *context, ...@@ -273,6 +273,11 @@ static inline void context_set_domain_id(struct context_entry *context,
context->hi |= (value & ((1 << 16) - 1)) << 8; context->hi |= (value & ((1 << 16) - 1)) << 8;
} }
static inline int context_domain_id(struct context_entry *c)
{
return((c->hi >> 8) & 0xffff);
}
static inline void context_clear_entry(struct context_entry *context) static inline void context_clear_entry(struct context_entry *context)
{ {
context->lo = 0; context->lo = 0;
...@@ -2802,7 +2807,7 @@ static int copy_context_table(struct intel_iommu *iommu, ...@@ -2802,7 +2807,7 @@ static int copy_context_table(struct intel_iommu *iommu,
int bus, bool ext) int bus, bool ext)
{ {
struct context_entry *old_ce = NULL, *new_ce = NULL, ce; struct context_entry *old_ce = NULL, *new_ce = NULL, ce;
int tbl_idx, pos = 0, idx, devfn, ret = 0; int tbl_idx, pos = 0, idx, devfn, ret = 0, did;
phys_addr_t old_ce_phys; phys_addr_t old_ce_phys;
tbl_idx = ext ? bus * 2 : bus; tbl_idx = ext ? bus * 2 : bus;
...@@ -2857,6 +2862,10 @@ static int copy_context_table(struct intel_iommu *iommu, ...@@ -2857,6 +2862,10 @@ static int copy_context_table(struct intel_iommu *iommu,
if (!context_present(&ce)) if (!context_present(&ce))
continue; continue;
did = context_domain_id(&ce);
if (did >= 0 && did < cap_ndoms(iommu->cap))
set_bit(did, iommu->domain_ids);
new_ce[idx] = ce; new_ce[idx] = ce;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment