From: Sudha Bheemanna Date: Thu, 8 Sep 2016 10:51:01 +0000 (+0530) Subject: Bluetooth: Fix issue in the Set LE privacy function. X-Git-Tag: accepted/tizen/unified/x/20240220.145856~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd5c3dc6d138a8cbf04863c9cf81803eea7efe35;p=platform%2Fkernel%2Flinux-starfive.git Bluetooth: Fix issue in the Set LE privacy function. This patch fixes not to check the hdev power before setting LE Privacy. Change-Id: I344ea13b1d90527e3e7554ec616cdc640b85159c Signed-off-by: Sudha Bheemanna Signed-off-by: Seung-Woo Kim Signed-off-by: Amit Purwar Signed-off-by: Wootak Jung --- diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 4f1c159be1b8..49ec40347aca 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -7031,9 +7031,14 @@ static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data, return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY, MGMT_STATUS_INVALID_PARAMS); +#ifndef TIZEN_BT + /* commenting out since set privacy command is always rejected + * if this condition is enabled. + */ if (hdev_is_powered(hdev)) return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY, MGMT_STATUS_REJECTED); +#endif hci_dev_lock(hdev);