]> Pileus Git - ~andy/linux/commitdiff
Bluetooth: Update MGMT and SMP timeout constants to use msecs_to_jiffies
authorMarcel Holtmann <marcel@holtmann.org>
Thu, 1 Mar 2012 22:32:37 +0000 (14:32 -0800)
committerJohan Hedberg <johan.hedberg@intel.com>
Thu, 1 Mar 2012 22:35:57 +0000 (00:35 +0200)
The MGMT and SMP timeout constants are always used in form of jiffies. So
just include the conversion from msecs in the define itself. This has the
advantage of making the code where the timeout is used more readable.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
net/bluetooth/mgmt.c
net/bluetooth/smp.c

index 7bd7d57a8775756e3beb0f0cff60932bf53e2524..40b3da3d5e623035c7dc1d867248040c2ee30955 100644 (file)
@@ -116,7 +116,7 @@ static const u16 mgmt_events[] = {
 #define INQUIRY_LEN_BREDR              0x08    /* TGAP(100) */
 #define INQUIRY_LEN_BREDR_LE           0x04    /* TGAP(100)/2 */
 
-#define SERVICE_CACHE_TIMEOUT (5 * 1000)
+#define CACHE_TIMEOUT  msecs_to_jiffies(2 * 1000)
 
 #define hdev_is_powered(hdev) (test_bit(HCI_UP, &hdev->flags) && \
                                !test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
@@ -1298,8 +1298,7 @@ static bool enable_service_cache(struct hci_dev *hdev)
                return false;
 
        if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
-               schedule_delayed_work(&hdev->service_cache,
-                               msecs_to_jiffies(SERVICE_CACHE_TIMEOUT));
+               schedule_delayed_work(&hdev->service_cache, CACHE_TIMEOUT);
                return true;
        }
 
index f6a6d8be3051f2195d00b68a4531dc7ecd401ae1..75937d73d8aebe0df98a598bf38f56d7045ed18c 100644 (file)
@@ -29,7 +29,7 @@
 #include <linux/scatterlist.h>
 #include <crypto/b128ops.h>
 
-#define SMP_TIMEOUT 30000 /* 30 seconds */
+#define SMP_TIMEOUT    msecs_to_jiffies(30000)
 
 static inline void swap128(u8 src[16], u8 dst[16])
 {
@@ -186,8 +186,7 @@ static void smp_send_cmd(struct l2cap_conn *conn, u8 code, u16 len, void *data)
        hci_send_acl(conn->hchan, skb, 0);
 
        cancel_delayed_work_sync(&conn->security_timer);
-       schedule_delayed_work(&conn->security_timer,
-                                       msecs_to_jiffies(SMP_TIMEOUT));
+       schedule_delayed_work(&conn->security_timer, SMP_TIMEOUT);
 }
 
 static __u8 authreq_to_seclevel(__u8 authreq)