From c3d3589b3e671fd709aef36f81c4c13d7cb8d324 Mon Sep 17 00:00:00 2001 From: Wagner Ferenc Date: Thu, 6 Dec 2007 23:40:31 -0800 Subject: [PATCH] --- yaml --- r: 74716 b: refs/heads/master c: 1dcdcd69549c8e439fbe97a94ff0332ed8a55558 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/net/bonding/bond_sysfs.c | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 7a32de48ac73..2a4fc1c4241a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b88436651b612be8c29b169af832d80f00f94b7f +refs/heads/master: 1dcdcd69549c8e439fbe97a94ff0332ed8a55558 diff --git a/trunk/drivers/net/bonding/bond_sysfs.c b/trunk/drivers/net/bonding/bond_sysfs.c index 5c31f5cec9f6..9de2c5284e27 100644 --- a/trunk/drivers/net/bonding/bond_sysfs.c +++ b/trunk/drivers/net/bonding/bond_sysfs.c @@ -91,7 +91,8 @@ static ssize_t bonding_show_bonds(struct class *cls, char *buf) } res += sprintf(buf + res, "%s ", bond->dev->name); } - if (res) buf[res-1] = '\n'; /* eat the leftover space */ + if (res) + buf[res-1] = '\n'; /* eat the leftover space */ up_read(&(bonding_rwsem)); return res; } @@ -239,7 +240,8 @@ static ssize_t bonding_show_slaves(struct device *d, res += sprintf(buf + res, "%s ", slave->dev->name); } read_unlock(&bond->lock); - if (res) buf[res-1] = '\n'; /* eat the leftover space */ + if (res) + buf[res-1] = '\n'; /* eat the leftover space */ return res; } @@ -705,7 +707,8 @@ static ssize_t bonding_show_arp_targets(struct device *d, res += sprintf(buf + res, "%u.%u.%u.%u ", NIPQUAD(bond->params.arp_targets[i])); } - if (res) buf[res-1] = '\n'; /* eat the leftover space */ + if (res) + buf[res-1] = '\n'; /* eat the leftover space */ return res; }