r8169: don't display tp->mmio_addr address
authorHeiner Kallweit <hkallweit1@gmail.com>
Tue, 17 Apr 2018 21:31:21 +0000 (23:31 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 19 Apr 2018 01:11:59 +0000 (21:11 -0400)
For security reasons since commit ad67b74d2469 "printk: hash addresses
printed with %p" %p doesn't display the full address any longer.
We could switch to %px, but I think the pointer address doesn't
provide a real benefit, so remove printing the hashed address.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/realtek/r8169.c

index fe838112143a36ca390f211cc09845cedc343f18..f81abbe2858d97c61a2dfaa766af79f6f817a464 100644 (file)
@@ -8344,8 +8344,8 @@ static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
        if (rc < 0)
                return rc;
 
-       netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
-                  rtl_chip_infos[chipset].name, tp->mmio_addr, dev->dev_addr,
+       netif_info(tp, probe, dev, "%s, %pM, XID %08x, IRQ %d\n",
+                  rtl_chip_infos[chipset].name, dev->dev_addr,
                   (u32)(RTL_R32(tp, TxConfig) & 0x9cf0f8ff),
                   pci_irq_vector(pdev, 0));
        if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {