Commit b8843665 authored by Wagner Ferenc's avatar Wagner Ferenc Committed by Jeff Garzik

bonding: Purely cosmetic: rename a local variable

From: Wagner Ferenc <wferi@niif.hu>

Code for rendering multivalue sysfs files occurs three times
in this module.  Rename 'buffer' to 'buf' in the first, for
the sake of consistency.
Signed-off-by: default avatarFerenc Wagner <wferi@niif.hu>
Acked-by: default avatarJay Vosburgh <fubar@us.ibm.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 16cd0160
...@@ -74,7 +74,7 @@ struct rw_semaphore bonding_rwsem; ...@@ -74,7 +74,7 @@ struct rw_semaphore bonding_rwsem;
* "show" function for the bond_masters attribute. * "show" function for the bond_masters attribute.
* The class parameter is ignored. * 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; int res = 0;
struct bonding *bond; struct bonding *bond;
...@@ -86,13 +86,12 @@ static ssize_t bonding_show_bonds(struct class *cls, char *buffer) ...@@ -86,13 +86,12 @@ static ssize_t bonding_show_bonds(struct class *cls, char *buffer)
/* not enough space for another interface name */ /* not enough space for another interface name */
if ((PAGE_SIZE - res) > 10) if ((PAGE_SIZE - res) > 10)
res = PAGE_SIZE - 10; res = PAGE_SIZE - 10;
res += sprintf(buffer + res, "++more++ "); res += sprintf(buf + res, "++more++ ");
break; break;
} }
res += sprintf(buffer + res, "%s ", res += sprintf(buf + res, "%s ", bond->dev->name);
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)); up_read(&(bonding_rwsem));
return res; return res;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment