lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 11 Oct 2013 08:35:44 -0700
From:	Greg KH <gregkh@...uxfoundation.org>
To:	"ethan.zhao" <ethan.kernel@...il.com>
Cc:	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] drivers/base/core.c: always output device renaming
 messages.

On Fri, Oct 11, 2013 at 10:58:18AM +0800, ethan.zhao wrote:
> From: "ethan.zhao" <ethan.kernel@...il.com>
> 
> While loading ixgbevf driver,every vf detected will be output as the
> same name 'eth4':
> 
>  ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver -
>  version 2.8.7
>  Copyright (c) 2009-2012 Intel Corporation.
>  ixgbevf 0000:20:10.0: enabling device (0000 -> 0002)
>  ixgbe 0000:20:00.0 eth0: VF Reset msg received from vf 0
>  ixgbevf 0000:20:10.0: irq 199 for MSI/MSI-X
>  ixgbevf 0000:20:10.0: irq 200 for MSI/MSI-X
>  ixgbevf: eth%d: ixgbevf_init_interrupt_scheme: Multiqueue Disabled: Rx Queue
>  count = 1, Tx Queue count = 1

What is that message?  That's not good, "eth%d"?

>  ixgbevf: eth4: ixgbevf_probe: Intel(R) X540 Virtual Function
>  aa:bb:cc:dd:ee:f1
>  ixgbevf: eth4: ixgbevf_probe: LRO is disabled
>  ixgbevf: eth4: ixgbevf_probe: GRO is enabled
>  ixgbevf: eth4: ixgbevf_probe: Intel(R) 10 Gigabit PCI Express Virtual
>  Function Network Driver
>  ixgbevf 0000:20:10.2: enabling device (0000 -> 0002)
>  ixgbe 0000:20:00.0 eth0: VF Reset msg received from vf 1
>  ixgbevf 0000:20:10.2: irq 201 for MSI/MSI-X
>  ixgbevf 0000:20:10.2: irq 202 for MSI/MSI-X
>  ixgbevf: eth%d: ixgbevf_init_interrupt_scheme: Multiqueue Disabled: Rx Queue
>  count = 1, Tx Queue count = 1
>  ixgbevf: eth4: ixgbevf_probe: Intel(R) X540 Virtual Function
>  aa:bb:cc:dd:ee:f2
>  ixgbevf: eth4: ixgbevf_probe: LRO is disabled
>  ixgbevf: eth4: ixgbevf_probe: GRO is enabled
>  ixgbevf: eth4: ixgbevf_probe: Intel(R) 10 Gigabit PCI Express Virtual
> 
> But if we view the NICs with ifconfig, found no NIC named 'eth4', the cause is
> udev has renamed the 'eth4' to 'eth10', 'eth10' one by one. because no renaming
> messages output, that is confusing.
> So we need always output renaming messages in device_name() instead of pr_debug().
> After applied this patch, it is much clearer:

How is journald tracking this today, without this extra message sent to
the kernel log?  It knows what devices are renamed to what somehow.

I really don't want to clutter up the syslog for things that aren't
needed, and as userspace was the one that told the kernel to rename the
device, why does the kernel have to spit it back out again to userspace?
That seems redundant, don't you think?

>  ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver -
>  version 2.8.7
>  Copyright (c) 2009-2012 Intel Corporation.
>  ixgbevf 0000:20:10.0: enabling device (0000 -> 0002)
>  ixgbe 0000:20:00.0 eth0: VF Reset msg received from vf 0
>  ixgbevf 0000:20:10.0: Multiqueue Disabled: Rx Queue count = 1, Tx Queue count
>  = 1
>  ixgbevf: eth4: ixgbevf_probe: Intel(R) X540 Virtual Function
>  net eth4: 'eth4' renaming to 'eth8'

A bit redundant, "eth4" shows up twice.

>  aa:bb:cc:dd:ee:11
>  ixgbevf: eth8: ixgbevf_probe: LRO is disabled
>  ixgbevf: eth8: ixgbevf_probe: GRO is enabled
>  ixgbevf: eth8: ixgbevf_probe: Intel(R) 10 Gigabit PCI Express Virtual
>  Function Network Driver
>  ixgbevf 0000:20:10.2: enabling device (0000 -> 0002)
>  ixgbe 0000:20:00.0 eth0: VF Reset msg received from vf 1
>  ixgbevf 0000:20:10.2: Multiqueue Disabled: Rx Queue count = 1, Tx Queue count
>  = 1
>  ixgbevf: eth4: ixgbevf_probe: Intel(R) X540 Virtual Function
>  net eth4: 'eth4' renaming to 'eth9'
>  aa:bb:cc:dd:ee:12
>  ixgbevf: eth9: ixgbevf_probe: LRO is disabled
>  ixgbevf: eth9: ixgbevf_probe: GRO is enabled
>  ixgbevf: eth9: ixgbevf_probe: Intel(R) 10 Gigabit PCI Express Virtual
>  Function Network Driver
> 
> Signed-off-by: ethan.zhao <ethan.kernel@...il.com>
> ---
>  drivers/base/core.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/base/core.c b/drivers/base/core.c
> index 2d1c6ba..9a98794 100644
> --- a/drivers/base/core.c
> +++ b/drivers/base/core.c
> @@ -1904,8 +1904,7 @@ int device_rename(struct device *dev, const char *new_name)
>  	if (!dev)
>  		return -EINVAL;
>  
> -	pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev),
> -		 __func__, new_name);
> +	dev_info(dev, "'%s' renaming to '%s'\n", dev_name(dev), new_name);

How about:
	dev_dbg(dev, "renaming to '%s'\n", new_name);

should be all that is needed, right?  Good call on pointing out that we
don't need to use pr_debug() here, don't know why I never noticed
that...

That way, if you really want to know this information, you can
dynamically turn on that line to be printed out, no need to clutter up
everyone else's logs.

Care to redo this?

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ