X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=net%2Fx25%2Fx25_timer.c;h=d3e3e54db936a738d13de9756799796b40dc9dc3;hb=2a345099a4fbe551a1982630b3d89c85fa5a341d;hp=71ff3088f6fe325cb7321df423566ce59e420b5e;hpb=aad61439e6a00bdb72cb649e11f6e166590c5f66;p=~andy%2Flinux diff --git a/net/x25/x25_timer.c b/net/x25/x25_timer.c index 71ff3088f6f..d3e3e54db93 100644 --- a/net/x25/x25_timer.c +++ b/net/x25/x25_timer.c @@ -3,7 +3,7 @@ * * This is ALPHA test software. This code may break your machine, * randomly fail to work with new releases, misbehave and/or generally - * screw up. It might even work. + * screw up. It might even work. * * This code REQUIRES 2.1.15 or higher * @@ -33,9 +33,7 @@ void x25_init_timers(struct sock *sk) { struct x25_sock *x25 = x25_sk(sk); - init_timer(&x25->timer); - x25->timer.data = (unsigned long)sk; - x25->timer.function = &x25_timer_expiry; + setup_timer(&x25->timer, x25_timer_expiry, (unsigned long)sk); /* initialized by sock_init_data */ sk->sk_timer.data = (unsigned long)sk; @@ -99,8 +97,8 @@ static void x25_heartbeat_expiry(unsigned long param) { struct sock *sk = (struct sock *)param; - bh_lock_sock(sk); - if (sock_owned_by_user(sk)) /* can currently only occur in state 3 */ + bh_lock_sock(sk); + if (sock_owned_by_user(sk)) /* can currently only occur in state 3 */ goto restart_heartbeat; switch (x25_sk(sk)->state) {