diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-23 21:33:16 +0200 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-23 22:02:27 +0200 |
commit | 9246a8693e74b3480913cf6e0c2d472267169990 (patch) | |
tree | 781529875341c6a4e95babb308aae1e5115dcc68 | |
parent | 4004b6d96a14edbd157a62ae25bf61022d7caccc (diff) | |
download | linux-3.10-9246a8693e74b3480913cf6e0c2d472267169990.tar.gz linux-3.10-9246a8693e74b3480913cf6e0c2d472267169990.tar.bz2 linux-3.10-9246a8693e74b3480913cf6e0c2d472267169990.zip |
Bluetooth: mgmt: Fix clear UUIDs response
We also need to send a proper response when clearing UUIDs. This patch
adds fixes the missing response for this use case.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | net/bluetooth/mgmt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 30a30b7b301..93f2c1348ad 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -1401,7 +1401,7 @@ static int remove_uuid(struct sock *sk, u16 index, void *data, u16 len) schedule_delayed_work(&hdev->service_cache, msecs_to_jiffies(SERVICE_CACHE_TIMEOUT)); - goto unlock; + goto update_class; } found = 0; @@ -1422,6 +1422,7 @@ static int remove_uuid(struct sock *sk, u16 index, void *data, u16 len) goto unlock; } +update_class: err = update_class(hdev); if (err < 0) goto unlock; |