[PATCH BlueZ 10/14] Disable RSSI monitor when device is removed

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



---
 proximity/monitor.c |   19 +++++++++++++++----
 1 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/proximity/monitor.c b/proximity/monitor.c
index 2b5acd5..eea77cb 100644
--- a/proximity/monitor.c
+++ b/proximity/monitor.c
@@ -80,6 +80,7 @@ struct monitor {
 	uint16_t immediatehandle;	/* Immediate Alert Value Handle */
 	guint immediateto;		/* Reset Immediate Alert to "none" */
 	guint attioid;
+	gboolean rssimon;		/* RSSI monitor enabled/disabled */
 };
 
 static inline int create_filename(char *buf, size_t size,
@@ -193,6 +194,7 @@ static void tx_power_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
 {
 	struct monitor *monitor = user_data;
 	struct btd_device *device = monitor->device;
+	struct btd_adapter *adapter = device_get_adapter(device);
 	uint8_t value;
 	int vlen;
 	int8_t low = -20, high = -40;
@@ -211,9 +213,9 @@ static void tx_power_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
 	DBG("Tx Power Level: %02x", (int8_t) value);
 
 	device_get_address(device, &dba);
-	btd_adapter_enable_rssi_monitor(device_get_adapter(device), &dba,
-					low, high, monitor_rssi_alert,
-					monitor);
+	monitor->rssimon = btd_adapter_enable_rssi_monitor(adapter, &dba,
+						low, high, monitor_rssi_alert,
+						monitor);
 }
 
 static void tx_power_handle_cb(GSList *characteristics, guint8 status,
@@ -550,12 +552,21 @@ static GDBusSignalTable monitor_signals[] = {
 static void monitor_destroy(gpointer user_data)
 {
 	struct monitor *monitor = user_data;
+	struct btd_device *device = monitor->device;
 
 	if (monitor->immediateto)
 		g_source_remove(monitor->immediateto);
 
+	if (monitor->rssimon) {
+		struct btd_adapter *adapter = device_get_adapter(device);
+		bdaddr_t dba;
+
+		device_get_address(device, &dba);
+		btd_adapter_disable_rssi_monitor(adapter, &dba);
+	}
+
 	if (monitor->attioid)
-		btd_device_remove_attio_callback(monitor->device,
+		btd_device_remove_attio_callback(device,
 						monitor->attioid);
 	if (monitor->attrib)
 		g_attrib_unref(monitor->attrib);
-- 
1.7.6

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux