This patch fixes autoconnect issue, however there is also race hazard in Android Gatt framework. If app uses autoconnect while connecting, direct flag is set to false. Then bt_gatt_add_autoconnect should be called to add this app's id to autoconnect_apps queue. --- android/gatt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/android/gatt.c b/android/gatt.c index 4da959f..72a27ab 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -1972,6 +1972,7 @@ static bool trigger_connection(struct app_connection *conn, bool direct) if (direct) return connect_le(conn->device) == 0; + bt_gatt_add_autoconnect(conn->app->id, &conn->device->bdaddr); return auto_connect_le(conn->device); case DEVICE_CONNECTED: notify_app_connect_status(conn, GATT_SUCCESS); -- 1.9.1 -- 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