Bluetooth: Fix expected key count debug logs
authorJohan Hedberg <johan.hedberg@intel.com>
Fri, 7 Mar 2014 13:04:13 +0000 (15:04 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 7 Mar 2014 17:49:12 +0000 (09:49 -0800)
The debug logs for reporting a discrepancy between the expected amount
of keys and the actually received amount of keys got these value mixed
up. This patch fixes the issue.

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

index 98e9df3556e71504063b4ac3c59d4f6775cb2451..f2397e7ad3855a3d4074b5f98b1d18f528335102 100644 (file)
@@ -2351,7 +2351,7 @@ static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
                                        sizeof(struct mgmt_link_key_info);
        if (expected_len != len) {
                BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
-                      len, expected_len);
+                      expected_len, len);
                return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
                                  MGMT_STATUS_INVALID_PARAMS);
        }
@@ -4427,7 +4427,7 @@ static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
        expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
        if (expected_len != len) {
                BT_ERR("load_irks: expected %u bytes, got %u bytes",
-                      len, expected_len);
+                      expected_len, len);
                return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
                                  MGMT_STATUS_INVALID_PARAMS);
        }
@@ -4507,7 +4507,7 @@ static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
                                        sizeof(struct mgmt_ltk_info);
        if (expected_len != len) {
                BT_ERR("load_keys: expected %u bytes, got %u bytes",
-                      len, expected_len);
+                      expected_len, len);
                return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
                                  MGMT_STATUS_INVALID_PARAMS);
        }
This page took 0.028302 seconds and 5 git commands to generate.