* [PATCH BlueZ] core/adapter: Fix not updating names of connected devices
@ 2016-12-12 14:24 Luiz Augusto von Dentz
0 siblings, 0 replies; only message in thread
From: Luiz Augusto von Dentz @ 2016-12-12 14:24 UTC (permalink / raw)
To: linux-bluetooth
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
If there is a device found event for a connected device let it update
the name as the device may still be temporary but it might be useful to
display a proper name while profile connections or paring are pending.
---
src/adapter.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/adapter.c b/src/adapter.c
index d951307..3dac7d6 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -5631,10 +5631,11 @@ static void update_found_devices(struct btd_adapter *adapter,
device_store_cached_name(dev, eir_data.name);
/*
- * If no client has requested discovery, then only update
- * already paired devices (skip temporary ones).
+ * Only skip devices that are not connected, are temporary and there
+ * is no active discovery session ongoing.
*/
- if (device_is_temporary(dev) && !adapter->discovery_list) {
+ if (!btd_device_is_connected(dev) && (device_is_temporary(dev) &&
+ !adapter->discovery_list)) {
eir_data_free(&eir_data);
return;
}
--
2.9.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-12-12 14:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-12 14:24 [PATCH BlueZ] core/adapter: Fix not updating names of connected devices Luiz Augusto von Dentz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).