|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging-4.13] xen/domain: check IOMMU options doesn't contain unknown bits set
commit fa9e1f73bfc0033f21d3e53f3a366b9121141763
Author: Roger Pau Monné <roger.pau@xxxxxxxxxx>
AuthorDate: Tue Oct 20 14:55:11 2020 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Tue Oct 20 14:55:11 2020 +0200
xen/domain: check IOMMU options doesn't contain unknown bits set
Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx>
Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>
master commit: 59b27f360e3d9dc0378c1288e67a91fa41a77158
master date: 2020-10-02 08:38:50 +0200
---
xen/common/domain.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/xen/common/domain.c b/xen/common/domain.c
index e0dd88f0f4..ee9c604118 100644
--- a/xen/common/domain.c
+++ b/xen/common/domain.c
@@ -298,6 +298,12 @@ static int sanitise_domain_config(struct
xen_domctl_createdomain *config)
return -EINVAL;
}
+ if ( config->iommu_opts & ~XEN_DOMCTL_IOMMU_no_sharept )
+ {
+ dprintk(XENLOG_INFO, "Unknown IOMMU options %#x\n",
config->iommu_opts);
+ return -EINVAL;
+ }
+
if ( !(config->flags & XEN_DOMCTL_CDF_iommu) && config->iommu_opts )
{
dprintk(XENLOG_INFO,
--
generated by git-patchbot for /home/xen/git/xen.git#staging-4.13
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |