]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Bluetooth: mgmt: Fix wrong opcode in the response for add_adv cmd
authorTedd Ho-Jeong An <tedd.an@intel.com>
Mon, 26 Jul 2021 20:22:36 +0000 (13:22 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 15 Sep 2021 08:00:41 +0000 (10:00 +0200)
[ Upstream commit a25fca4d3c18766b6f7a3c95fa8faec23ef464c5 ]

This patch fixes the MGMT add_advertising command repsones with the
wrong opcode when it is trying to return the not supported error.

Fixes: cbbdfa6f33198 ("Bluetooth: Enable controller RPA resolution using Experimental feature")
Signed-off-by: Tedd Ho-Jeong An <tedd.an@intel.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/bluetooth/mgmt.c

index 470eaabb021f973bab82fc28153a2842f431c2af..6a9826164fd7f92182fdf5a4534d353f53f82549 100644 (file)
@@ -7725,7 +7725,7 @@ static int add_advertising(struct sock *sk, struct hci_dev *hdev,
         * advertising.
         */
        if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
-               return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
+               return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
                                       MGMT_STATUS_NOT_SUPPORTED);
 
        if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)