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-prev] [day] [month] [year] [list]
Date:	Wed, 17 Jun 2015 16:53:40 +0200
From:	Gregory CLEMENT <gregory.clement@...e-electrons.com>
To:	Andrew Lunn <andrew@...n.ch>, Joe Perches <joe@...ches.com>
CC:	Jason Cooper <jason@...edaemon.net>,
	Sebastian Hesselbarth <sebastian.hesselbarth@...il.com>,
	Russell King <linux@....linux.org.uk>,
	linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] ARM: orion5x: Use vsprintf %pM extension

Hi Andrew, Joe,

On 15/06/2015 05:28, Andrew Lunn wrote:
> On Sun, Jun 14, 2015 at 07:01:30PM -0700, Joe Perches wrote:
>> Format mac addresses with the normal kernel extension.
>>
>> Signed-off-by: Joe Perches <joe@...ches.com>
> 
> Acked-by: Andrew Lunn <andrew@...n.ch>

applied on mvebu/cleanup-4.3

Thanks,

Gregory
> 
> 	  Andrew
> 
>> ---
>>  arch/arm/mach-orion5x/dns323-setup.c | 4 +---
>>  arch/arm/mach-orion5x/tsx09-common.c | 4 +---
>>  2 files changed, 2 insertions(+), 6 deletions(-)
>>
>> diff --git a/arch/arm/mach-orion5x/dns323-setup.c b/arch/arm/mach-orion5x/dns323-setup.c
>> index 09d2a26..f267e58 100644
>> --- a/arch/arm/mach-orion5x/dns323-setup.c
>> +++ b/arch/arm/mach-orion5x/dns323-setup.c
>> @@ -236,9 +236,7 @@ static int __init dns323_read_mac_addr(void)
>>  	}
>>  
>>  	iounmap(mac_page);
>> -	printk("DNS-323: Found ethernet MAC address: ");
>> -	for (i = 0; i < 6; i++)
>> -		printk("%.2x%s", addr[i], (i < 5) ? ":" : ".\n");
>> +	printk("DNS-323: Found ethernet MAC address: %pM\n", addr);
>>  
>>  	memcpy(dns323_eth_data.mac_addr, addr, 6);
>>  
>> diff --git a/arch/arm/mach-orion5x/tsx09-common.c b/arch/arm/mach-orion5x/tsx09-common.c
>> index 7189827..24b2959 100644
>> --- a/arch/arm/mach-orion5x/tsx09-common.c
>> +++ b/arch/arm/mach-orion5x/tsx09-common.c
>> @@ -101,9 +101,7 @@ static int __init qnap_tsx09_check_mac_addr(const char *addr_str)
>>  		addr[i] = byte;
>>  	}
>>  
>> -	printk(KERN_INFO "tsx09: found ethernet mac address ");
>> -	for (i = 0; i < 6; i++)
>> -		printk("%.2x%s", addr[i], (i < 5) ? ":" : ".\n");
>> +	printk(KERN_INFO "tsx09: found ethernet mac address %pM\n", addr);
>>  
>>  	memcpy(qnap_tsx09_eth_data.mac_addr, addr, 6);
>>  
>>
>>


-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
--
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