Re: [PATCH 2/3] net/bonding: Return nothing for not applicable values

From: Jay Vosburgh
Date: Wed Nov 28 2007 - 20:13:46 EST



>The previous code returned '\n' (that is, a single empty line)
>from most files, with one exception (xmit_hash_policy), where
>it returned 'NA\n'. This patch consolidates each file to return
>nothing at all if not applicable, not even a '\n'.
>
>I find this behaviour more usual, more useful, more efficient
>and shorter to code from both sides.
[...]
>+ if ((bond->params.mode == BOND_MODE_XOR) ||
>+ (bond->params.mode == BOND_MODE_8023AD)) {
> count = sprintf(buf, "%s %d\n",
> xmit_hashtype_tbl[bond->params.xmit_policy].modename,
> bond->params.xmit_policy);

Rather than this (returning nothing if not in xor or 802.3ad
mode), I'd prefer to see this always return whatever the xmit policy is
(regardless of the mode), and remove the mode test from
bonding_store_xmit_hash().

This would be consistent with the way the arp_ip_target option
is treated: the actual value is always displayed, even if it is not
used, and it is legal to change the value, regardless of the mode.

Other than this, I'm fine with the changes.

-J

---
-Jay Vosburgh, IBM Linux Technology Center, fubar@xxxxxxxxxx
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/