Re: [E1000-devel] [PATCH] Be explict with what we are !'ing in ixgbe_sfp_config_module_task()

2009-04-08 Thread Brandeburg, Jesse
Tony Breeds wrote:
 GCC warns:
 drivers/net/ixgbe/ixgbe_main.c: In function
 'ixgbe_sfp_config_module_task': 
 drivers/net/ixgbe/ixgbe_main.c:3920: warning: suggest parentheses
 around operand of '!' or change '' to '' or '!' to '~' 
 
 Which I think is right.  Bracket to remove ambiguity.
 
 Signed-off-by: Tony Breeds t...@bakeyournoodle.com
 ---
  drivers/net/ixgbe/ixgbe_main.c |2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)
 
 diff --git a/drivers/net/ixgbe/ixgbe_main.c
 b/drivers/net/ixgbe/ixgbe_main.c 
 index 9ef128a..9099634 100644
 --- a/drivers/net/ixgbe/ixgbe_main.c
 +++ b/drivers/net/ixgbe/ixgbe_main.c
 @@ -3917,7 +3917,7 @@ static void ixgbe_sfp_config_module_task(struct
   work_struct *work) }
   hw-mac.ops.setup_sfp(hw);
 
 - if (!adapter-flags  IXGBE_FLAG_IN_SFP_LINK_TASK)
 + if (!(adapter-flags  IXGBE_FLAG_IN_SFP_LINK_TASK))
   /* This will also work for DA Twinax connections */
   schedule_work(adapter-multispeed_fiber_task);
   adapter-flags = ~IXGBE_FLAG_IN_SFP_MOD_TASK;

you're extremely correct, thanks!

Acked-by: Jesse Brandeburg jesse.brandeb...@intel.com
--
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
___
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel


Re: [E1000-devel] [PATCH] Be explict with what we are !'ing in ixgbe_sfp_config_module_task()

2009-04-08 Thread Jeff Kirsher
On Tue, Apr 7, 2009 at 9:44 PM, Tony Breeds t...@bakeyournoodle.com wrote:
 GCC warns:
 drivers/net/ixgbe/ixgbe_main.c: In function 'ixgbe_sfp_config_module_task':
 drivers/net/ixgbe/ixgbe_main.c:3920: warning: suggest parentheses around 
 operand of '!' or change '' to '' or '!' to '~'

 Which I think is right.  Bracket to remove ambiguity.

 Signed-off-by: Tony Breeds t...@bakeyournoodle.com
 ---

Thanks, I will add it to my queue of ixgbe patches.
Remember to CC netdev mailing list for networking patches.

-- 
Cheers,
Jeff

--
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
___
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel


Re: [E1000-devel] [PATCH] Be explict with what we are !'ing in ixgbe_sfp_config_module_task()

2009-04-08 Thread Tony Breeds
On Wed, Apr 08, 2009 at 07:26:08PM -0700, Jeff Kirsher wrote:

 Thanks, I will add it to my queue of ixgbe patches.

Thanks.

 Remember to CC netdev mailing list for networking patches.

I did but due to a misconfiguration on my latop all the lisst on
vger.kernel.org rejected the messsages and I didn't get a bounce :(

I think I've fix it now though.

Yours Tony

--
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
___
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel


[E1000-devel] [PATCH] Be explict with what we are !'ing in ixgbe_sfp_config_module_task()

2009-04-07 Thread Tony Breeds
GCC warns:
drivers/net/ixgbe/ixgbe_main.c: In function 'ixgbe_sfp_config_module_task':
drivers/net/ixgbe/ixgbe_main.c:3920: warning: suggest parentheses around 
operand of '!' or change '' to '' or '!' to '~'

Which I think is right.  Bracket to remove ambiguity.

Signed-off-by: Tony Breeds t...@bakeyournoodle.com
---
 drivers/net/ixgbe/ixgbe_main.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c
index 9ef128a..9099634 100644
--- a/drivers/net/ixgbe/ixgbe_main.c
+++ b/drivers/net/ixgbe/ixgbe_main.c
@@ -3917,7 +3917,7 @@ static void ixgbe_sfp_config_module_task(struct 
work_struct *work)
}
hw-mac.ops.setup_sfp(hw);
 
-   if (!adapter-flags  IXGBE_FLAG_IN_SFP_LINK_TASK)
+   if (!(adapter-flags  IXGBE_FLAG_IN_SFP_LINK_TASK))
/* This will also work for DA Twinax connections */
schedule_work(adapter-multispeed_fiber_task);
adapter-flags = ~IXGBE_FLAG_IN_SFP_MOD_TASK;
-- 
1.6.0.6


--
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
___
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel