summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorAshish Sharma <ashishsharma@google.com>2012-08-13 11:38:49 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-08-13 12:58:31 -0700
commit9a6bc3422c1f8f5cd599a851d0804bb22c193c2c (patch)
tree05568ed6c518721a2253284df1c1fd2ec9b5ce2c /net
parente15cb9927c7a8e16b4f95918d07d2e55f23adf6c (diff)
netfilter: xt_IDLETIMER: Rename INTERFACE to LABEL in netlink notification.
Signed-off-by: Ashish Sharma <ashishsharma@google.com>
Diffstat (limited to 'net')
-rw-r--r--net/netfilter/xt_IDLETIMER.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/netfilter/xt_IDLETIMER.c b/net/netfilter/xt_IDLETIMER.c
index 43a16d0bb629..bb4c3722be35 100644
--- a/net/netfilter/xt_IDLETIMER.c
+++ b/net/netfilter/xt_IDLETIMER.c
@@ -68,15 +68,15 @@ static DEFINE_MUTEX(list_mutex);
static struct kobject *idletimer_tg_kobj;
-static void notify_netlink_uevent(const char *iface, struct idletimer_tg *timer)
+static void notify_netlink_uevent(const char *label, struct idletimer_tg *timer)
{
- char iface_msg[NLMSG_MAX_SIZE];
+ char label_msg[NLMSG_MAX_SIZE];
char state_msg[NLMSG_MAX_SIZE];
- char *envp[] = { iface_msg, state_msg, NULL };
+ char *envp[] = { label_msg, state_msg, NULL };
int res;
- res = snprintf(iface_msg, NLMSG_MAX_SIZE, "INTERFACE=%s",
- iface);
+ res = snprintf(label_msg, NLMSG_MAX_SIZE, "LABEL=%s",
+ label);
if (NLMSG_MAX_SIZE <= res) {
pr_err("message too long (%d)", res);
return;
@@ -87,7 +87,7 @@ static void notify_netlink_uevent(const char *iface, struct idletimer_tg *timer)
pr_err("message too long (%d)", res);
return;
}
- pr_debug("putting nlmsg: <%s> <%s>\n", iface_msg, state_msg);
+ pr_debug("putting nlmsg: <%s> <%s>\n", label_msg, state_msg);
kobject_uevent_env(idletimer_tg_kobj, KOBJ_CHANGE, envp);
return;