diff options
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r-- | net/tipc/node.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c index 89f8ac73bf65..009a81631280 100644 --- a/net/tipc/node.c +++ b/net/tipc/node.c | |||
@@ -153,7 +153,7 @@ static void tipc_node_link_down(struct tipc_node *n, int bearer_id, | |||
153 | bool delete); | 153 | bool delete); |
154 | static void node_lost_contact(struct tipc_node *n, struct sk_buff_head *inputq); | 154 | static void node_lost_contact(struct tipc_node *n, struct sk_buff_head *inputq); |
155 | static void tipc_node_delete(struct tipc_node *node); | 155 | static void tipc_node_delete(struct tipc_node *node); |
156 | static void tipc_node_timeout(unsigned long data); | 156 | static void tipc_node_timeout(struct timer_list *t); |
157 | static void tipc_node_fsm_evt(struct tipc_node *n, int evt); | 157 | static void tipc_node_fsm_evt(struct tipc_node *n, int evt); |
158 | static struct tipc_node *tipc_node_find(struct net *net, u32 addr); | 158 | static struct tipc_node *tipc_node_find(struct net *net, u32 addr); |
159 | static void tipc_node_put(struct tipc_node *node); | 159 | static void tipc_node_put(struct tipc_node *node); |
@@ -361,7 +361,7 @@ struct tipc_node *tipc_node_create(struct net *net, u32 addr, u16 capabilities) | |||
361 | goto exit; | 361 | goto exit; |
362 | } | 362 | } |
363 | tipc_node_get(n); | 363 | tipc_node_get(n); |
364 | setup_timer(&n->timer, tipc_node_timeout, (unsigned long)n); | 364 | timer_setup(&n->timer, tipc_node_timeout, 0); |
365 | n->keepalive_intv = U32_MAX; | 365 | n->keepalive_intv = U32_MAX; |
366 | hlist_add_head_rcu(&n->hash, &tn->node_htable[tipc_hashfn(addr)]); | 366 | hlist_add_head_rcu(&n->hash, &tn->node_htable[tipc_hashfn(addr)]); |
367 | list_for_each_entry_rcu(temp_node, &tn->node_list, list) { | 367 | list_for_each_entry_rcu(temp_node, &tn->node_list, list) { |
@@ -500,9 +500,9 @@ void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port) | |||
500 | 500 | ||
501 | /* tipc_node_timeout - handle expiration of node timer | 501 | /* tipc_node_timeout - handle expiration of node timer |
502 | */ | 502 | */ |
503 | static void tipc_node_timeout(unsigned long data) | 503 | static void tipc_node_timeout(struct timer_list *t) |
504 | { | 504 | { |
505 | struct tipc_node *n = (struct tipc_node *)data; | 505 | struct tipc_node *n = from_timer(n, t, timer); |
506 | struct tipc_link_entry *le; | 506 | struct tipc_link_entry *le; |
507 | struct sk_buff_head xmitq; | 507 | struct sk_buff_head xmitq; |
508 | int bearer_id; | 508 | int bearer_id; |