aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/l2cap.h
diff options
context:
space:
mode:
authorUlisses Furquim <ulisses@profusion.mobi>2012-01-30 15:26:28 -0500
committerJohan Hedberg <johan.hedberg@intel.com>2012-02-13 10:01:30 -0500
commit17cd3f374be6648bd46c86ff8f2a2511d3f416ee (patch)
tree18c382a43b943a164d0f6f60c4da9cc143c4fa03 /include/net/bluetooth/l2cap.h
parente72acc13c770a82b4ce4a07e9716f29320eae0f8 (diff)
Bluetooth: Remove usage of __cancel_delayed_work()
__cancel_delayed_work() is being used in some paths where we cannot sleep waiting for the delayed work to finish. However, that function might return while the timer is running and the work will be queued again. Replace the calls with safer cancel_delayed_work() version which spins until the timer handler finishes on other CPUs and cancels the delayed work. Signed-off-by: Ulisses Furquim <ulisses@profusion.mobi> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include/net/bluetooth/l2cap.h')
-rw-r--r--include/net/bluetooth/l2cap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
index e7a8cc7d07f4..42fdbb833254 100644
--- a/include/net/bluetooth/l2cap.h
+++ b/include/net/bluetooth/l2cap.h
@@ -614,7 +614,7 @@ static inline void l2cap_set_timer(struct l2cap_chan *chan,
614{ 614{
615 BT_DBG("chan %p state %d timeout %ld", chan, chan->state, timeout); 615 BT_DBG("chan %p state %d timeout %ld", chan, chan->state, timeout);
616 616
617 if (!__cancel_delayed_work(work)) 617 if (!cancel_delayed_work(work))
618 l2cap_chan_hold(chan); 618 l2cap_chan_hold(chan);
619 schedule_delayed_work(work, timeout); 619 schedule_delayed_work(work, timeout);
620} 620}
@@ -624,7 +624,7 @@ static inline bool l2cap_clear_timer(struct l2cap_chan *chan,
624{ 624{
625 bool ret; 625 bool ret;
626 626
627 ret = __cancel_delayed_work(work); 627 ret = cancel_delayed_work(work);
628 if (ret) 628 if (ret)
629 l2cap_chan_put(chan); 629 l2cap_chan_put(chan);
630 630