]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Bluetooth: Fix incorrect status handling in LE PHY UPDATE event
authorAyush Garg <ayush.garg@samsung.com>
Wed, 17 Mar 2021 11:22:14 +0000 (16:52 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 May 2021 08:29:28 +0000 (10:29 +0200)
[ Upstream commit 87df8bcccd2cede62dfb97dc3d4ca1fe66cb4f83 ]

Skip updation of tx and rx PHYs values, when PHY Update
event's status is not successful.

Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/bluetooth/hci_event.c

index 7a3e42e7523509ab492a5d1cf270e62aeae872d2..82f4973a011d924c2cfe1c4e162ce715699836b2 100644 (file)
@@ -5912,7 +5912,7 @@ static void hci_le_phy_update_evt(struct hci_dev *hdev, struct sk_buff *skb)
 
        BT_DBG("%s status 0x%2.2x", hdev->name, ev->status);
 
-       if (!ev->status)
+       if (ev->status)
                return;
 
        hci_dev_lock(hdev);