From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Branden Subject: Re: [PATCH] ethtool: Add ETHTOOL_RESET support via --reset command Date: Tue, 5 Dec 2017 12:24:36 -0800 Message-ID: <769d00b2-a262-1018-fbac-95f7ea204339@broadcom.com> References: <1512069844-15664-1-git-send-email-scott.branden@broadcom.com> <43ab59b7-6670-23a5-b753-404e1337b33b@broadcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Cc: BCM Kernel Feedback , Steve Lin , Michael Chan , netdev@vger.kernel.org To: Gal Pressman , "John W. Linville" Return-path: Received: from mail-qt0-f193.google.com ([209.85.216.193]:37136 "EHLO mail-qt0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751112AbdLEUYm (ORCPT ); Tue, 5 Dec 2017 15:24:42 -0500 Received: by mail-qt0-f193.google.com with SMTP id f2so3882646qtj.4 for ; Tue, 05 Dec 2017 12:24:42 -0800 (PST) In-Reply-To: Content-Language: en-US Sender: netdev-owner@vger.kernel.org List-ID: On 17-12-05 12:21 AM, Gal Pressman wrote: > On 04-Dec-17 22:16, Scott Branden wrote: >> Hi Gal, >> >> I do not understand you're comment - questions inline >> >> >> On 17-12-03 12:07 AM, Gal Pressman wrote: >>> On 30-Nov-17 21:24, Scott Branden wrote: >>>> Add ETHTOOL_RESET support via --reset command. >>>> >>>> ie.  ethtool --reset DEVNAME >>>> >>>> flagnames currently match the ETH_RESET_xxx names: >>>> mgmt,irq,dma,filter,offload,mac,phy,ram,dedicated,all >>>> >>>> Alternatively, you can specific component bitfield directly using >>>> ethtool --reset DEVNAME flags %x >>>> >>>> Signed-off-by: Scott Branden >>>> --- >>>>   ethtool.8.in | 55 ++++++++++++++++++++++++++++++++++++++++++++- >>>>   ethtool.c    | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ >>>>   2 files changed, 127 insertions(+), 1 deletion(-) >>>> >>>> diff --git a/ethtool.8.in b/ethtool.8.in >>>> index 6ad3065..925cfe3 100644 >>>> --- a/ethtool.8.in >>>> +++ b/ethtool.8.in >>>> @@ -355,6 +355,20 @@ ethtool \- query or control network driver and hardware settings >>>>   .B ethtool \-\-get\-phy\-tunable >>>>   .I devname >>>>   .RB [ downshift ] >>>> +.HP >>>> +.B ethtool \-\-reset >>>> +.I devname >>>> +.BN flags >>>> +.B [mgmt] >>>> +.B [irq] >>>> +.B [dma] >>>> +.B [filter] >>>> +.B [offload] >>>> +.B [mac] >>>> +.B [phy] >>>> +.B [ram] >>>> +.B [dedicated] >>>> +.B [all] >>>>   . >>> Nit: >>> Usually, the brackets formatting is different than the keyword inside them. >> Could you please explain what the formatting should be then?  Any of the options listed are possible components that can be selected.  At least one must be chosen.  Should the brackets be removed then? > The brackets are fine, IMO .B [mgmt] should be replaced with .RB [ mgmt ]. > Looks better, and keeps us consistent with other flags (--get-phy-tunable for example). OK - I'll update.  Thanks. > >