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:	Fri, 24 Apr 2015 19:41:30 +0300
From:	Sergei Shtylyov <sergei.shtylyov@...entembedded.com>
To:	Murali Karicheri <m-karicheri2@...com>
CC:	netdev@...r.kernel.org, davem@...emloft.net,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] net: netcp: remove call to netif_carrier_(on/off) for
 MAC to Phy interface

On 04/24/2015 06:18 PM, Murali Karicheri wrote:

>>> Currently when interface type is MAC to Phy, netif_carrier_(on/off)
>>> is called which is not needed as Phy lib already updates the carrier
>>> status to net stack. This is needed only for other interface types

>>> Signed-off-by: Murali Karicheri <m-karicheri2@...com>
>>> ---
>>>   drivers/net/ethernet/ti/netcp_ethss.c |    8 ++++++--
>>>   1 file changed, 6 insertions(+), 2 deletions(-)

>>> diff --git a/drivers/net/ethernet/ti/netcp_ethss.c
>>> b/drivers/net/ethernet/ti/netcp_ethss.c
>>> index 2bef655..0a1ef2e 100644
>>> --- a/drivers/net/ethernet/ti/netcp_ethss.c
>>> +++ b/drivers/net/ethernet/ti/netcp_ethss.c
>>> @@ -1765,7 +1765,9 @@ static void netcp_ethss_link_state_action(struct
>>> gbe_priv *gbe_dev,
>>>                        ALE_PORT_STATE,
>>>                        ALE_PORT_STATE_FORWARD);
>>>
>>> -        if (ndev && slave->open)
>>> +        if (ndev && slave->open &&
>>> +            ((slave->link_interface != SGMII_LINK_MAC_PHY) &&
>>> +            (slave->link_interface != XGMII_LINK_MAC_PHY)))

>>    You don't need extra parens around &&.

> You are right! I will fix it up and re-send.

    In fact, you don't need parens around != either.

> Mruali

[...]

WBR, Sergei

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ