[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] VT-d: drop pointless uses of __func__
commit 223b03d1a6996386e238338a029e4b61532605cc Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Aug 25 09:03:51 2016 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Aug 25 09:03:51 2016 +0200 VT-d: drop pointless uses of __func__ Debugging message text already includes file name and line number, so also logging function names is redundant. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> Acked-by: Kevin Tian <kevin.tian@xxxxxxxxx> --- xen/drivers/passthrough/vtd/intremap.c | 31 ++++++++++++++----------------- xen/drivers/passthrough/vtd/iommu.c | 7 ++++--- 2 files changed, 18 insertions(+), 20 deletions(-) diff --git a/xen/drivers/passthrough/vtd/intremap.c b/xen/drivers/passthrough/vtd/intremap.c index 7c11565..bfd468b 100644 --- a/xen/drivers/passthrough/vtd/intremap.c +++ b/xen/drivers/passthrough/vtd/intremap.c @@ -242,8 +242,8 @@ static int remap_entry_to_ioapic_rte( if ( index < 0 || index > IREMAP_ENTRY_NR - 1 ) { dprintk(XENLOG_ERR VTDPREFIX, - "%s: index (%d) for remap table is invalid !\n", - __func__, index); + "IO-APIC index (%d) for remap table is invalid\n", + index); return -EFAULT; } @@ -255,8 +255,8 @@ static int remap_entry_to_ioapic_rte( if ( iremap_entry->val == 0 ) { dprintk(XENLOG_ERR VTDPREFIX, - "%s: index (%d) get an empty entry!\n", - __func__, index); + "IO-APIC index (%d) has an empty entry\n", + index); unmap_vtd_domain_page(iremap_entries); spin_unlock_irqrestore(&ir_ctrl->iremap_lock, flags); return -EFAULT; @@ -301,9 +301,8 @@ static int ioapic_rte_to_remap_entry(struct iommu *iommu, if ( index > IREMAP_ENTRY_NR - 1 ) { dprintk(XENLOG_ERR VTDPREFIX, - "%s: intremap index (%d) is larger than" - " the maximum index (%d)!\n", - __func__, index, IREMAP_ENTRY_NR - 1); + "IO-APIC intremap index (%d) larger than maximum index (%d)\n", + index, IREMAP_ENTRY_NR - 1); spin_unlock_irqrestore(&ir_ctrl->iremap_lock, flags); return -EFAULT; } @@ -500,8 +499,8 @@ static int remap_entry_to_msi_msg( if ( index >= IREMAP_ENTRY_NR ) { dprintk(XENLOG_ERR VTDPREFIX, - "%s: index (%d) for remap table is invalid !\n", - __func__, index); + "MSI index (%d) for remap table is invalid\n", + index); return -EFAULT; } @@ -513,8 +512,8 @@ static int remap_entry_to_msi_msg( if ( iremap_entry->val == 0 ) { dprintk(XENLOG_ERR VTDPREFIX, - "%s: index (%d) get an empty entry!\n", - __func__, index); + "MSI index (%d) has an empty entry\n", + index); unmap_vtd_domain_page(iremap_entries); spin_unlock_irqrestore(&ir_ctrl->iremap_lock, flags); return -EFAULT; @@ -585,9 +584,8 @@ static int msi_msg_to_remap_entry( if ( index > IREMAP_ENTRY_NR - 1 ) { dprintk(XENLOG_ERR VTDPREFIX, - "%s: intremap index (%d) is larger than" - " the maximum index (%d)!\n", - __func__, index, IREMAP_ENTRY_NR - 1); + "MSI intremap index (%d) larger than maximum index (%d)!\n", + index, IREMAP_ENTRY_NR - 1); for ( i = 0; i < nr; ++i ) msi_desc[i].remap_index = -1; spin_unlock_irqrestore(&ir_ctrl->iremap_lock, flags); @@ -689,9 +687,8 @@ int __init intel_setup_hpet_msi(struct msi_desc *msi_desc) if ( msi_desc->remap_index >= IREMAP_ENTRY_NR ) { dprintk(XENLOG_ERR VTDPREFIX, - "%s: intremap index (%d) is larger than" - " the maximum index (%d)!\n", - __func__, msi_desc->remap_index, IREMAP_ENTRY_NR - 1); + "HPET intremap index (%d) larger than maximum index (%d)!\n", + msi_desc->remap_index, IREMAP_ENTRY_NR - 1); msi_desc->remap_index = -1; rc = -ENXIO; } diff --git a/xen/drivers/passthrough/vtd/iommu.c b/xen/drivers/passthrough/vtd/iommu.c index ce19362..48f120b 100644 --- a/xen/drivers/passthrough/vtd/iommu.c +++ b/xen/drivers/passthrough/vtd/iommu.c @@ -129,11 +129,12 @@ static int context_get_domain_id(struct context_entry *context, dom_index = context_domain_id(*context); - if ( dom_index < nr_dom && iommu->domid_map) + if ( dom_index < nr_dom && iommu->domid_map ) domid = iommu->domid_map[dom_index]; else - dprintk(XENLOG_DEBUG VTDPREFIX, "%s: dom_index %lu exceeds nr_dom %lu or iommu has no domid_map\n", - __func__, dom_index, nr_dom); + dprintk(XENLOG_DEBUG VTDPREFIX, + "dom_index %lu exceeds nr_dom %lu or iommu has no domid_map\n", + dom_index, nr_dom); } return domid; } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |