igb_uio: print IRQ as decimal number
authorTonghao Zhang <xiangxia.m.yue@gmail.com>
Tue, 23 Jan 2018 16:17:34 +0000 (08:17 -0800)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 5 Feb 2018 23:37:42 +0000 (00:37 +0100)
The kernel uses the '%d' or '%ld' to print irq num.
But igb_uio may use the '%lx', then the log may confuse
the user what irq num has been used. The log is show as
below.

igb_uio 0000:00:03.0: irq 24 for MSI/MSI-X
igb_uio 0000:00:03.0: uio device registered with irq 18

kernel version: 3.10.0-514.16.1.el7

For avoiding to be confused, change the igb_uio irq
print type.

Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com>
lib/librte_eal/linuxapp/igb_uio/igb_uio.c

index 9f0fb5e..4cae4dd 100644 (file)
@@ -282,7 +282,7 @@ igbuio_pci_enable_interrupts(struct rte_uio_pci_dev *udev)
                err = request_irq(udev->info.irq, igbuio_pci_irqhandler,
                                  udev->info.irq_flags, udev->info.name,
                                  udev);
-       dev_info(&udev->pdev->dev, "uio device registered with irq %lx\n",
+       dev_info(&udev->pdev->dev, "uio device registered with irq %ld\n",
                 udev->info.irq);
 
        return err;