RE: [PATCH net-next V5 3/9] liquidio CN23XX: Mailbox support
From: Vatsavayi, Raghu <hidden>
Date: 2016-11-10 18:00:00
Thanks. Will you please let me know if any more changes that you need, I will include all those in next version. If this the only change then please do confirm, so that I can mail you next patch soon with this change. Regards Raghu.
-----Original Message----- From: David Miller [mailto:davem@davemloft.net] Sent: Thursday, November 10, 2016 9:19 AM To: Vatsavayi, Raghu Cc: netdev@vger.kernel.org; Vatsavayi, Raghu; Chickles, Derek; Burla, Satananda; Manlunas, Felix Subject: Re: [PATCH net-next V5 3/9] liquidio CN23XX: Mailbox support From: Raghu Vatsavayi <redacted> Date: Wed, 9 Nov 2016 15:13:46 -0800quoted
+ dev_info(&oct->pci_dev->dev, + "PF changed VF's MAC address to%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx\n",quoted
+ mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);We have a standard mechanism to print network addresses, including MAC ones, via the %pXXX format specifier. In this case you should use "%pM" or "%pm" depending upon whether you want the address printed with colon separators or not.