Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 74715
b: refs/heads/master
c: b884366
h: refs/heads/master
i:
  74713: a6e9ad5
  74711: 1c366b2
v: v3
  • Loading branch information
Wagner Ferenc authored and Jeff Garzik committed Dec 7, 2007
1 parent b9052b5 commit cf77f5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 16cd0160d5e7e22c2818b30bf1a1d4c262a8df8a
refs/heads/master: b88436651b612be8c29b169af832d80f00f94b7f
9 changes: 4 additions & 5 deletions trunk/drivers/net/bonding/bond_sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ struct rw_semaphore bonding_rwsem;
* "show" function for the bond_masters attribute.
* The class parameter is ignored.
*/
static ssize_t bonding_show_bonds(struct class *cls, char *buffer)
static ssize_t bonding_show_bonds(struct class *cls, char *buf)
{
int res = 0;
struct bonding *bond;
Expand All @@ -86,13 +86,12 @@ static ssize_t bonding_show_bonds(struct class *cls, char *buffer)
/* not enough space for another interface name */
if ((PAGE_SIZE - res) > 10)
res = PAGE_SIZE - 10;
res += sprintf(buffer + res, "++more++ ");
res += sprintf(buf + res, "++more++ ");
break;
}
res += sprintf(buffer + res, "%s ",
bond->dev->name);
res += sprintf(buf + res, "%s ", bond->dev->name);
}
if (res) buffer[res-1] = '\n'; /* eat the leftover space */
if (res) buf[res-1] = '\n'; /* eat the leftover space */
up_read(&(bonding_rwsem));
return res;
}
Expand Down

0 comments on commit cf77f5f

Please sign in to comment.