diff options
author | Eric Rannaud <eric.rannaud@gmail.com> | 2007-03-31 01:23:12 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-04-27 13:57:29 -0400 |
commit | bf62456eb91f3d2ef0736081583d09b0b3c8b7ea (patch) | |
tree | 851c2559ae11835e19763b7c7c54393f0ae0d5f6 /net | |
parent | bdc4960a0b4831a24276b65f1f7afdfc57f2f5cf (diff) |
uevent: use add_uevent_var() instead of open coding it
Make use of add_uevent_var() instead of (often incorrectly) open coding it.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Eric Rannaud <eric.rannaud@gmail.com>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/net-sysfs.c | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c index e441ec7988c1..b21307b15b82 100644 --- a/net/core/net-sysfs.c +++ b/net/core/net-sysfs.c | |||
@@ -412,31 +412,25 @@ static int netdev_uevent(struct device *d, char **envp, | |||
412 | int num_envp, char *buf, int size) | 412 | int num_envp, char *buf, int size) |
413 | { | 413 | { |
414 | struct net_device *dev = to_net_dev(d); | 414 | struct net_device *dev = to_net_dev(d); |
415 | int i = 0; | 415 | int retval, len = 0, i = 0; |
416 | int n; | ||
417 | 416 | ||
418 | /* pass interface to uevent. */ | 417 | /* pass interface to uevent. */ |
419 | envp[i++] = buf; | 418 | retval = add_uevent_var(envp, num_envp, &i, |
420 | n = snprintf(buf, size, "INTERFACE=%s", dev->name) + 1; | 419 | buf, size, &len, |
421 | buf += n; | 420 | "INTERFACE=%s", dev->name); |
422 | size -= n; | 421 | if (retval) |
423 | 422 | goto exit; | |
424 | if ((size <= 0) || (i >= num_envp)) | ||
425 | return -ENOMEM; | ||
426 | 423 | ||
427 | /* pass ifindex to uevent. | 424 | /* pass ifindex to uevent. |
428 | * ifindex is useful as it won't change (interface name may change) | 425 | * ifindex is useful as it won't change (interface name may change) |
429 | * and is what RtNetlink uses natively. */ | 426 | * and is what RtNetlink uses natively. */ |
430 | envp[i++] = buf; | 427 | retval = add_uevent_var(envp, num_envp, &i, |
431 | n = snprintf(buf, size, "IFINDEX=%d", dev->ifindex) + 1; | 428 | buf, size, &len, |
432 | buf += n; | 429 | "IFINDEX=%d", dev->ifindex); |
433 | size -= n; | ||
434 | |||
435 | if ((size <= 0) || (i >= num_envp)) | ||
436 | return -ENOMEM; | ||
437 | 430 | ||
431 | exit: | ||
438 | envp[i] = NULL; | 432 | envp[i] = NULL; |
439 | return 0; | 433 | return retval; |
440 | } | 434 | } |
441 | #endif | 435 | #endif |
442 | 436 | ||