* [PATCH BlueZ v1] emulator: Generate PA Sync Lost
@ 2025-11-06 23:08 Luiz Augusto von Dentz
2025-11-07 0:31 ` [BlueZ,v1] " bluez.test.bot
0 siblings, 1 reply; 2+ messages in thread
From: Luiz Augusto von Dentz @ 2025-11-06 23:08 UTC (permalink / raw)
To: linux-bluetooth
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This attempts to generate a PA Sync Lost whenever a PA is disabled and
there is a remote synced to it.
---
emulator/btdev.c | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/emulator/btdev.c b/emulator/btdev.c
index 839b4941ca05..c133248b2c7d 100644
--- a/emulator/btdev.c
+++ b/emulator/btdev.c
@@ -116,10 +116,12 @@ struct le_ext_adv {
struct le_per_adv {
struct btdev *dev;
+ struct btdev *remote;
uint8_t addr_type;
uint8_t addr[6];
uint8_t sid;
uint16_t sync_handle;
+ struct queue *syncs;
};
struct le_big {
@@ -5514,6 +5516,7 @@ static void le_pa_sync_estabilished(struct btdev *dev, struct btdev *remote,
sync_handle++;
per_adv->sync_handle = sync_handle;
+ per_adv->remote = remote;
ev.handle = cpu_to_le16(per_adv->sync_handle);
ev.sid = per_adv->sid;
@@ -5527,6 +5530,24 @@ static void le_pa_sync_estabilished(struct btdev *dev, struct btdev *remote,
send_pa(dev, remote, 0, per_adv->sync_handle);
}
+static void le_pa_sync_lost(struct le_per_adv *pa)
+{
+ struct bt_hci_evt_le_per_sync_lost ev;
+
+ memset(&ev, 0, sizeof(ev));
+ ev.handle = cpu_to_le16(pa->sync_handle);
+ le_meta_event(pa->dev, BT_HCI_EVT_LE_PA_SYNC_LOST, &ev, sizeof(ev));
+ free(pa);
+}
+
+static bool match_remote(const void *data, const void *match_data)
+{
+ const struct le_per_adv *pa = data;
+ const struct btdev *remote = match_data;
+
+ return pa->remote == remote;
+}
+
static int cmd_set_pa_enable(struct btdev *dev, const void *data, uint8_t len)
{
const struct bt_hci_cmd_le_set_pa_enable *cmd = data;
@@ -5554,6 +5575,14 @@ static int cmd_set_pa_enable(struct btdev *dev, const void *data, uint8_t len)
UINT_TO_PTR(INV_HANDLE)))
le_pa_sync_estabilished(remote, dev,
BT_HCI_ERR_SUCCESS);
+ else if (!remote->le_pa_enable) {
+ struct le_per_adv *pa;
+
+ pa = queue_remove_if(remote->le_per_adv, match_remote,
+ dev);
+ if (pa)
+ le_pa_sync_lost(pa);
+ }
}
return 0;
--
2.51.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [BlueZ,v1] emulator: Generate PA Sync Lost
2025-11-06 23:08 [PATCH BlueZ v1] emulator: Generate PA Sync Lost Luiz Augusto von Dentz
@ 2025-11-07 0:31 ` bluez.test.bot
0 siblings, 0 replies; 2+ messages in thread
From: bluez.test.bot @ 2025-11-07 0:31 UTC (permalink / raw)
To: linux-bluetooth, luiz.dentz
[-- Attachment #1: Type: text/plain, Size: 1428 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=1020667
---Test result---
Test Summary:
CheckPatch PENDING 0.29 seconds
GitLint PENDING 0.28 seconds
BuildEll PASS 20.09 seconds
BluezMake PASS 2566.32 seconds
MakeCheck PASS 20.37 seconds
MakeDistcheck PASS 184.52 seconds
CheckValgrind PASS 235.98 seconds
CheckSmatch WARNING 308.44 seconds
bluezmakeextell PASS 128.79 seconds
IncrementalBuild PENDING 0.29 seconds
ScanBuild PASS 907.31 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: CheckSmatch - WARNING
Desc: Run smatch tool with source
Output:
emulator/btdev.c:461:29: warning: Variable length array is used.
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-11-07 0:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-06 23:08 [PATCH BlueZ v1] emulator: Generate PA Sync Lost Luiz Augusto von Dentz
2025-11-07 0:31 ` [BlueZ,v1] " bluez.test.bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox