From: Johan Hedberg Date: Wed, 22 Feb 2012 13:38:48 +0000 (+0200) Subject: Bluetooth: mgmt: Fix clearing of hdev->eir X-Git-Tag: upstream/snapshot3+hdmi~7954^2~112^2~78 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c80da27e868f6ffbe1c6588937aa4e7aeab21dec;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git Bluetooth: mgmt: Fix clearing of hdev->eir The hdev->eir buffer needs to be cleared when clearing the EIR data. Otherwise subsequent attempts at setting the EIR to something valid again may fail because the code thinks that the EIR hasn't changed. Signed-off-by: Johan Hedberg Acked-by: Marcel Holtmann --- diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index bdaadb2..08c657d 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -3400,6 +3400,8 @@ static int clear_eir(struct hci_dev *hdev) if (!(hdev->features[6] & LMP_EXT_INQ)) return 0; + memset(hdev->eir, 0, sizeof(hdev->eir)); + memset(&cp, 0, sizeof(cp)); return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);