Bluetooth: ERTM timeouts need to be converted to jiffies
authorMat Martineau <mathewm@codeaurora.org>
Wed, 29 Jun 2011 21:35:21 +0000 (14:35 -0700)
committerJaikumar Ganesh <jaikumar@google.com>
Mon, 11 Jul 2011 18:59:26 +0000 (11:59 -0700)
ERTM timeouts are defined in milliseconds, but need to be converted
to jiffies when passed to mod_timer().

Signed-off-by: Mat Martineau <mathewm@codeaurora.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
net/bluetooth/l2cap_core.c

index 393f1a4b1c28702a87e8edf49ccd2868e09d38f6..d3e425de9fe58fa85ff6320e918e2482c8592a7e 100644 (file)
@@ -225,7 +225,7 @@ static void l2cap_set_timer(struct l2cap_chan *chan, struct timer_list *timer, l
 {
        BT_DBG("chan %p state %d timeout %ld", chan->sk, chan->state, timeout);
 
-       if (!mod_timer(timer, jiffies + timeout))
+       if (!mod_timer(timer, jiffies + msecs_to_jiffies(timeout)))
                chan_hold(chan);
 }