Netdev List
 help / color / mirror / Atom feed
From: Florian Fainelli <f.fainelli@gmail.com>
To: Heiner Kallweit <hkallweit1@gmail.com>,
	Andrew Lunn <andrew@lunn.ch>, David Miller <davem@davemloft.net>
Cc: "netdev@vger.kernel.org" <netdev@vger.kernel.org>
Subject: Re: [PATCH net-next] net: phy: convert further flags in struct phy_device to bit-field
Date: Thu, 24 May 2018 16:03:22 -0700	[thread overview]
Message-ID: <7a4cd053-74aa-17a9-1ce2-da4e3ae21809@gmail.com> (raw)
In-Reply-To: <d148e574-2e29-a52f-7da0-13ef1ead927a@gmail.com>

On 05/24/2018 01:15 PM, Heiner Kallweit wrote:
> This patch is a follow-up to 87e5808d52b6 ("net: phy: replace bool
> members in struct phy_device with bit-fields") and converts further
> flags to bit-fields.

This looks fine, but then you would also have to clean-up all code that
does phydev->asym_pause = 1 and phydev->pause = 1 to use true/false
instead, I am not sure there is much value in doing that for these
fields considering that they are exposed to drivers so there is a risk
of possible breakage.

Thanks!

> 
> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
> ---
>  include/linux/phy.h | 17 ++++++++---------
>  1 file changed, 8 insertions(+), 9 deletions(-)
> 
> diff --git a/include/linux/phy.h b/include/linux/phy.h
> index 6cd090984..cc66f2834 100644
> --- a/include/linux/phy.h
> +++ b/include/linux/phy.h
> @@ -418,21 +418,20 @@ struct phy_device {
>  	/* The most recently read link state */
>  	unsigned link:1;
>  
> +	/* forced speed & duplex (no autoneg)
> +	 * partner speed & duplex & pause (autoneg)
> +	 */
> +	unsigned pause:1;
> +	unsigned asym_pause:1;
> +	int speed;
> +	int duplex;
> +
>  	enum phy_state state;
>  
>  	u32 dev_flags;
>  
>  	phy_interface_t interface;
>  
> -	/*
> -	 * forced speed & duplex (no autoneg)
> -	 * partner speed & duplex & pause (autoneg)
> -	 */
> -	int speed;
> -	int duplex;
> -	int pause;
> -	int asym_pause;
> -
>  	/* Enabled Interrupts */
>  	u32 interrupts;
>  
> 


-- 
Florian

  reply	other threads:[~2018-05-24 23:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-24 20:15 [PATCH net-next] net: phy: convert further flags in struct phy_device to bit-field Heiner Kallweit
2018-05-24 23:03 ` Florian Fainelli [this message]
2018-05-25  6:22   ` Heiner Kallweit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7a4cd053-74aa-17a9-1ce2-da4e3ae21809@gmail.com \
    --to=f.fainelli@gmail.com \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=hkallweit1@gmail.com \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox