|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] Re: [PATCH v3] Use PHYSDEVOP_get_free_pirq to implement find
> @@ -611,9 +615,9 @@ int xen_map_pirq_gsi(unsigned pirq, unsigned gsi, int
> shareable, char *name)
>
> spin_lock(&irq_mapping_update_lock);
>
> - if ((pirq > nr_pirqs) || (gsi > nr_irqs)) {
> + if ((pirq > nr_irqs) || (gsi > nr_irqs)) {
> printk(KERN_WARNING "xen_map_pirq_gsi: %s %s is incorrect!\n",
> - pirq > nr_pirqs ? "nr_pirqs" :"",
> + pirq > nr_irqs ? "nr_pirqs" :"",
Seems odd to print "nr_pirqs" when that is out of the code.
> gsi > nr_irqs ? "nr_irqs" : "");
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|