mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 07:03:37 +02:00
netfilter: xt_IDLETIMER: Revert to retain the kernel API format.
Reverted Change-Id: Iaeca5dd2d7878c0733923ae03309a2a7b86979ca Change-Id: I0e0a4f60ec14330d8d8d1c5a508fa058d9919e07 Signed-off-by: Ashish Sharma <ashishsharma@google.com>
This commit is contained in:
parent
9f783de2f8
commit
e0a4e5b0e8
|
|
@ -68,15 +68,15 @@ static DEFINE_MUTEX(list_mutex);
|
|||
|
||||
static struct kobject *idletimer_tg_kobj;
|
||||
|
||||
static void notify_netlink_uevent(const char *label, struct idletimer_tg *timer)
|
||||
static void notify_netlink_uevent(const char *iface, struct idletimer_tg *timer)
|
||||
{
|
||||
char label_msg[NLMSG_MAX_SIZE];
|
||||
char iface_msg[NLMSG_MAX_SIZE];
|
||||
char state_msg[NLMSG_MAX_SIZE];
|
||||
char *envp[] = { label_msg, state_msg, NULL };
|
||||
char *envp[] = { iface_msg, state_msg, NULL };
|
||||
int res;
|
||||
|
||||
res = snprintf(label_msg, NLMSG_MAX_SIZE, "LABEL=%s",
|
||||
label);
|
||||
res = snprintf(iface_msg, NLMSG_MAX_SIZE, "INTERFACE=%s",
|
||||
iface);
|
||||
if (NLMSG_MAX_SIZE <= res) {
|
||||
pr_err("message too long (%d)", res);
|
||||
return;
|
||||
|
|
@ -87,7 +87,7 @@ static void notify_netlink_uevent(const char *label, struct idletimer_tg *timer)
|
|||
pr_err("message too long (%d)", res);
|
||||
return;
|
||||
}
|
||||
pr_debug("putting nlmsg: <%s> <%s>\n", label_msg, state_msg);
|
||||
pr_debug("putting nlmsg: <%s> <%s>\n", iface_msg, state_msg);
|
||||
kobject_uevent_env(idletimer_tg_kobj, KOBJ_CHANGE, envp);
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user