aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/core/net-sysfs.c27
1 files changed, 16 insertions, 11 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
index 221a64ab64f7..b21307b15b82 100644
--- a/net/core/net-sysfs.c
+++ b/net/core/net-sysfs.c
@@ -412,20 +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)) 423
425 return -ENOMEM; 424 /* pass ifindex to uevent.
426 425 * ifindex is useful as it won't change (interface name may change)
426 * and is what RtNetlink uses natively. */
427 retval = add_uevent_var(envp, num_envp, &i,
428 buf, size, &len,
429 "IFINDEX=%d", dev->ifindex);
430
431exit:
427 envp[i] = NULL; 432 envp[i] = NULL;
428 return 0; 433 return retval;
429} 434}
430#endif 435#endif
431 436