mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-03 12:52:52 +00:00
fs/ocfs2/cluster: use setup_timer
Use setup_timer() instead of init_timer() to simplify the code. Link: http://lkml.kernel.org/r/5e75bf07beb91e092d5aa36c36769949a480456a.1489060564.git.geliangtang@gmail.com Signed-off-by: Geliang Tang <geliangtang@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
accce8e7e8
commit
667b8a37f3
1 changed files with 2 additions and 3 deletions
|
@ -450,9 +450,8 @@ static struct o2net_sock_container *sc_alloc(struct o2nm_node *node)
|
||||||
INIT_WORK(&sc->sc_shutdown_work, o2net_shutdown_sc);
|
INIT_WORK(&sc->sc_shutdown_work, o2net_shutdown_sc);
|
||||||
INIT_DELAYED_WORK(&sc->sc_keepalive_work, o2net_sc_send_keep_req);
|
INIT_DELAYED_WORK(&sc->sc_keepalive_work, o2net_sc_send_keep_req);
|
||||||
|
|
||||||
init_timer(&sc->sc_idle_timeout);
|
setup_timer(&sc->sc_idle_timeout, o2net_idle_timer,
|
||||||
sc->sc_idle_timeout.function = o2net_idle_timer;
|
(unsigned long)sc);
|
||||||
sc->sc_idle_timeout.data = (unsigned long)sc;
|
|
||||||
|
|
||||||
sclog(sc, "alloced\n");
|
sclog(sc, "alloced\n");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue