# HG changeset patch # User Jan Beulich # Date 1354118456 -3600 # Node ID 836697b197462f89a4d296da9482d1719dcc0836 # Parent 1fce7522daa6bab9fce93b95adf592193c904097 IOMMU: imply "verbose" from "debug" I think that generally enabling debugging code without also enabling verbose output is rather pointless; if someone really wants this, they can always pass e.g. "iommu=debug,no-verbose". Signed-off-by: Jan Beulich Acked-by: Keir Fraser --- a/xen/drivers/passthrough/iommu.c +++ b/xen/drivers/passthrough/iommu.c @@ -91,7 +91,11 @@ static void __init parse_iommu_param(cha else if ( !strcmp(s, "intremap") ) iommu_intremap = val; else if ( !strcmp(s, "debug") ) + { iommu_debug = val; + if ( val ) + iommu_verbose = 1; + } else if ( !strcmp(s, "amd-iommu-perdev-intremap") ) amd_iommu_perdev_intremap = val; else if ( !strcmp(s, "dom0-passthrough") )