Hi Luiz, On Mon, May 2, 2011 at 5:42 AM, Luiz Augusto von Dentz <luiz.dentz@xxxxxxxxx> wrote: > Hi Andre, > > On Sat, Apr 30, 2011 at 3:27 AM, Andre Guedes > <andre.guedes@xxxxxxxxxxxxx> wrote: >> This patch removes 'suspend' parameter from stop_discovery() in adapter.c. >> >> This parameter is useless since new a function (suspend_discovery) was >> created to suspend discovery sessions. >> --- >> src/adapter.c | 9 ++++----- >> 1 files changed, 4 insertions(+), 5 deletions(-) >> >> diff --git a/src/adapter.c b/src/adapter.c >> index 6a2a8c1..0279494 100644 >> --- a/src/adapter.c >> +++ b/src/adapter.c >> @@ -700,12 +700,11 @@ static GSList *remove_bredr(GSList *all) >> return le; >> } >> >> -static void stop_discovery(struct btd_adapter *adapter, gboolean suspend) >> +static void stop_discovery(struct btd_adapter *adapter) >> { >> pending_remote_name_cancel(adapter); >> >> - if (suspend == FALSE) >> - adapter->found_devices = remove_bredr(adapter->found_devices); >> + adapter->found_devices = remove_bredr(adapter->found_devices); >> >> if (adapter->oor_devices) { >> g_slist_free(adapter->oor_devices); >> @@ -762,7 +761,7 @@ static void session_remove(struct session_req *req) >> >> DBG("Stopping discovery"); >> >> - stop_discovery(adapter, FALSE); >> + stop_discovery(adapter); >> } >> } >> >> @@ -2537,7 +2536,7 @@ int btd_adapter_stop(struct btd_adapter *adapter) >> /* check pending requests */ >> reply_pending_requests(adapter); >> >> - stop_discovery(adapter, FALSE); >> + stop_discovery(adapter); >> >> if (adapter->disc_sessions) { >> g_slist_foreach(adapter->disc_sessions, (GFunc) session_free, >> -- > > What happened with stop_discovery called within suspend_discovery? We > need to avoid cleaning up the list of found devices otherwise we won't > be able to send DeviceDisappeared properly when discovery got resume. > At patch 08/16 I create a new function to suspend the discovery procedure (see suspend_discovery() in adapter.c). It was done because using the same function to perform stop or suspend discovery started to get a little bit confusing. > -- > Luiz Augusto von Dentz > Computer Engineer > -- Andre Guedes -- 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