netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ben Hutchings <bhutchings@solarflare.com>
To: Jay Vosburgh <fubar@us.ibm.com>
Cc: Dan Carpenter <dan.carpenter@oracle.com>,
	Weiping Pan <wpan@redhat.com>,
	Andy Gospodarek <andy@greyhouse.net>, <netdev@vger.kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	<kernel-janitors@vger.kernel.org>
Subject: Re: [patch] bonding: comparing a u8 with -1 is always false
Date: Fri, 4 Nov 2011 20:35:20 +0000	[thread overview]
Message-ID: <1320438920.2753.16.camel@bwh-desktop> (raw)
In-Reply-To: <10444.1320436921@death>

On Fri, 2011-11-04 at 13:02 -0700, Jay Vosburgh wrote:
> Dan Carpenter <dan.carpenter@oracle.com> wrote:
> >slave->duplex is a u8 type so the in bond_info_show_slave() when we
> >check "if (slave->duplex == -1)", it's always false.
> >
> >Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> >
> >diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
> >index b2b9109..b0c5772 100644
> >--- a/drivers/net/bonding/bond_main.c
> >+++ b/drivers/net/bonding/bond_main.c
> >@@ -560,8 +560,8 @@ static int bond_update_speed_duplex(struct slave *slave)
> > 	u32 slave_speed;
> > 	int res;
> >
> >-	slave->speed = -1;
> >-	slave->duplex = -1;
> >+	slave->speed = SPEED_UNKNOWN;
> >+	slave->duplex = DUPLEX_UNKNOWN;
> >
> > 	res = __ethtool_get_settings(slave_dev, &ecmd);
> > 	if (res < 0)
> >diff --git a/drivers/net/bonding/bond_procfs.c b/drivers/net/bonding/bond_procfs.c
> >index 2acf0b0..ad284ba 100644
> >--- a/drivers/net/bonding/bond_procfs.c
> >+++ b/drivers/net/bonding/bond_procfs.c
> >@@ -158,12 +158,12 @@ static void bond_info_show_slave(struct seq_file *seq,
> > 	seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
> > 	seq_printf(seq, "MII Status: %s\n",
> > 		   (slave->link == BOND_LINK_UP) ?  "up" : "down");
> >-	if (slave->speed == -1)
> >+	if (slave->speed == SPEED_UNKNOWN)
> > 		seq_printf(seq, "Speed: %s\n", "Unknown");
> > 	else
> > 		seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
> 
> 	Since you #define SPEED_UNKNOWN to -1 (below), how does this
> actually change anything?  Did you mean 0xffff (because struct
> ethtool_cmd's speed is a u16)?

The speed in ethtool_cmd is 32 bits divided between two fields.

> 	Running on a moderately recent net-next (without the very recent
> change to bond_update_speed_duplex), I see that bonding indeed doesn't
> get the speed or duplex correct after a cable pull:
> 
> Slave Interface: eth2
> MII Status: down
> Speed: 100 Mbps
> Duplex: full
> 
> 	so perhaps a rational (unsigned-friendly) SPEED_UNKNOWN and
> DUPLEX_UNKNOWN are needed, but I'm not sure how this #define actually
> would change any behavior in the bonding case.

Agree that they should be defined somewhere.  The ethtool utility
recognises speed values of 0, (u16)(-1) and (u32)(-1) as 'unknown'.
Personally I think 0 makes more sense than (u32)(-1) but it doesn't
matter much.

> >-	if (slave->duplex == -1)
> >+	if (slave->duplex == DUPLEX_UNKNOWN)
> > 		seq_printf(seq, "Duplex: %s\n", "Unknown");
> > 	else
> > 		seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
> 
> 	This one might "work," but it seems to depend on the fact that
> the integral conversion of -1 to an 8 bit unsigned type will be 255
> (0xff).  I believe that's true (according to the ISO C copy I have
> handy), but I'm not sure that kind of implicit assumption should be
> built into the code.  At least not without some explanation.
[...]

It's true and does not need explanation.  Quite why anyone expected a
negative value to survive conversion to u8 and back to int, now that
deserves explanation...

Ben.

-- 
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.

  reply	other threads:[~2011-11-04 20:35 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-04 18:21 [patch] bonding: comparing a u8 with -1 is always false Dan Carpenter
2011-11-04 20:02 ` Jay Vosburgh
2011-11-04 20:35   ` Ben Hutchings [this message]
2011-11-04 20:53   ` Dan Carpenter
2011-11-04 22:37     ` David Miller

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=1320438920.2753.16.camel@bwh-desktop \
    --to=bhutchings@solarflare.com \
    --cc=andy@greyhouse.net \
    --cc=dan.carpenter@oracle.com \
    --cc=davem@davemloft.net \
    --cc=fubar@us.ibm.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=wpan@redhat.com \
    /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;
as well as URLs for NNTP newsgroup(s).