Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_packages_modules_Bluetooth
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LMODroid
platform_packages_modules_Bluetooth
Commits
f8b7f344
Commit
f8b7f344
authored
2 years ago
by
Jakub Pawłowski
Committed by
Gerrit Code Review
2 years ago
Browse files
Options
Downloads
Plain Diff
Merge "CTKD from LE to Classic stability fix"
parents
a755e4cd
72d5fba8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
system/stack/smp/smp_l2c.cc
+20
-2
20 additions, 2 deletions
system/stack/smp/smp_l2c.cc
with
20 additions
and
2 deletions
system/stack/smp/smp_l2c.cc
+
20
−
2
View file @
f8b7f344
...
...
@@ -24,6 +24,7 @@
#define LOG_TAG "bluetooth"
#include
<base/logging.h>
#include
<string.h>
#include
"bt_target.h"
...
...
@@ -35,11 +36,10 @@
#include
"osi/include/log.h"
#include
"osi/include/osi.h"
// UNUSED_ATTR
#include
"smp_int.h"
#include
"stack/btm/btm_dev.h"
#include
"stack/include/bt_hdr.h"
#include
"types/raw_address.h"
#include
<base/logging.h>
static
void
smp_connect_callback
(
uint16_t
channel
,
const
RawAddress
&
bd_addr
,
bool
connected
,
uint16_t
reason
,
tBT_TRANSPORT
transport
);
...
...
@@ -250,6 +250,24 @@ static void smp_br_connect_callback(uint16_t channel, const RawAddress& bd_addr,
if
(
bd_addr
!=
p_cb
->
pairing_bda
)
return
;
/* Check if we already finished SMP pairing over LE, and are waiting to
* check if other side returns some errors. Connection/disconnection on
* Classic transport shouldn't impact that.
*/
tBTM_SEC_DEV_REC
*
p_dev_rec
=
btm_find_dev
(
p_cb
->
pairing_bda
);
if
(
smp_get_state
()
==
SMP_STATE_BOND_PENDING
&&
(
p_dev_rec
&&
p_dev_rec
->
is_link_key_known
())
&&
alarm_is_scheduled
(
p_cb
->
delayed_auth_timer_ent
))
{
/* If we were to not return here, we would reset SMP control block, and
* delayed_auth_timer_ent would never be executed. Even though we stored all
* keys, stack would consider device as not bonded. It would reappear after
* stack restart, when we re-read record from storage. Service discovery
* would stay broken.
*/
LOG_INFO
(
"Classic event after CTKD on LE transport"
);
return
;
}
if
(
connected
)
{
if
(
!
p_cb
->
connect_initialized
)
{
p_cb
->
connect_initialized
=
true
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment