Commit c59dd74c authored by Thomas Gleixner's avatar Thomas Gleixner

net: ppp_async: semaphore cleanup

The usage of this "mutex" is non obvious and probably a completion in
some places. Make it a semaphore.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: David Miller <davem@davemloft.net>
parent d70dd771
......@@ -183,7 +183,7 @@ ppp_asynctty_open(struct tty_struct *tty)
tasklet_init(&ap->tsk, ppp_async_process, (unsigned long) ap);
atomic_set(&ap->refcnt, 1);
init_MUTEX_LOCKED(&ap->dead_sem);
semaphore_init_locked(&ap->dead_sem);
ap->chan.private = ap;
ap->chan.ops = &async_ops;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment