|
@@ -1319,7 +1319,6 @@ static ssize_t bonding_show_mii_status(struct device *d,
|
|
|
}
|
|
|
static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
|
|
|
|
|
|
-
|
|
|
/*
|
|
|
* Show current 802.3ad aggregator ID.
|
|
|
*/
|
|
@@ -1333,7 +1332,7 @@ static ssize_t bonding_show_ad_aggregator(struct device *d,
|
|
|
if (bond->params.mode == BOND_MODE_8023AD) {
|
|
|
struct ad_info ad_info;
|
|
|
count = sprintf(buf, "%d\n",
|
|
|
- (bond_3ad_get_active_agg_info(bond, &ad_info))
|
|
|
+ bond_3ad_get_active_agg_info(bond, &ad_info)
|
|
|
? 0 : ad_info.aggregator_id);
|
|
|
}
|
|
|
|
|
@@ -1355,7 +1354,7 @@ static ssize_t bonding_show_ad_num_ports(struct device *d,
|
|
|
if (bond->params.mode == BOND_MODE_8023AD) {
|
|
|
struct ad_info ad_info;
|
|
|
count = sprintf(buf, "%d\n",
|
|
|
- (bond_3ad_get_active_agg_info(bond, &ad_info))
|
|
|
+ bond_3ad_get_active_agg_info(bond, &ad_info)
|
|
|
? 0 : ad_info.ports);
|
|
|
}
|
|
|
|
|
@@ -1377,7 +1376,7 @@ static ssize_t bonding_show_ad_actor_key(struct device *d,
|
|
|
if (bond->params.mode == BOND_MODE_8023AD) {
|
|
|
struct ad_info ad_info;
|
|
|
count = sprintf(buf, "%d\n",
|
|
|
- (bond_3ad_get_active_agg_info(bond, &ad_info))
|
|
|
+ bond_3ad_get_active_agg_info(bond, &ad_info)
|
|
|
? 0 : ad_info.actor_key);
|
|
|
}
|
|
|
|
|
@@ -1399,7 +1398,7 @@ static ssize_t bonding_show_ad_partner_key(struct device *d,
|
|
|
if (bond->params.mode == BOND_MODE_8023AD) {
|
|
|
struct ad_info ad_info;
|
|
|
count = sprintf(buf, "%d\n",
|
|
|
- (bond_3ad_get_active_agg_info(bond, &ad_info))
|
|
|
+ bond_3ad_get_active_agg_info(bond, &ad_info)
|
|
|
? 0 : ad_info.partner_key);
|
|
|
}
|
|
|
|