linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/1] Bluetooth: hci_sync: Enable events for BIS capable device
@ 2023-06-29 13:45 Claudia Draghicescu
  2023-06-29 13:45 ` [PATCH v3 1/1] Bluetooth: hci_sync: Enable events for BIS capable devices Claudia Draghicescu
  2023-06-29 19:24 ` [PATCH v3 0/1] " patchwork-bot+bluetooth
  0 siblings, 2 replies; 4+ messages in thread
From: Claudia Draghicescu @ 2023-06-29 13:45 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: iulia.tanasescu, Claudia Draghicescu

In the case of a Synchronized Receiver capable device, enable at start-up the
events for PA reports, PA Sync Established and Big Info Adv reports.

Claudia Draghicescu (1):
  Bluetooth: hci_sync: Enable events for BIS capable devices

 net/bluetooth/hci_sync.c | 3 +++
 1 file changed, 3 insertions(+)


base-commit: e63d8ed98082395ca509163f386f5b04f53872b3
-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v3 1/1] Bluetooth: hci_sync: Enable events for BIS capable devices
  2023-06-29 13:45 [PATCH v3 0/1] Bluetooth: hci_sync: Enable events for BIS capable device Claudia Draghicescu
@ 2023-06-29 13:45 ` Claudia Draghicescu
  2023-06-29 14:36   ` Bluetooth: hci_sync: Enable events for BIS capable device bluez.test.bot
  2023-06-29 19:24 ` [PATCH v3 0/1] " patchwork-bot+bluetooth
  1 sibling, 1 reply; 4+ messages in thread
From: Claudia Draghicescu @ 2023-06-29 13:45 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: iulia.tanasescu, Claudia Draghicescu

In the case of a Synchronized Receiver capable device, enable at start-up the
events for PA reports, PA Sync Established and Big Info Adv reports.

Signed-off-by: Claudia Draghicescu <claudia.rosu@nxp.com>
---
 net/bluetooth/hci_sync.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
index afb8e970e62c..73b49d0c1e11 100644
--- a/net/bluetooth/hci_sync.c
+++ b/net/bluetooth/hci_sync.c
@@ -4135,10 +4135,13 @@ static int hci_le_set_event_mask_sync(struct hci_dev *hdev)
 	}
 
 	if (bis_capable(hdev)) {
+		events[1] |= 0x20;	/* LE PA Report */
+		events[1] |= 0x40;	/* LE PA Sync Established */
 		events[3] |= 0x04;	/* LE Create BIG Complete */
 		events[3] |= 0x08;	/* LE Terminate BIG Complete */
 		events[3] |= 0x10;	/* LE BIG Sync Established */
 		events[3] |= 0x20;	/* LE BIG Sync Loss */
+		events[4] |= 0x02;	/* LE BIG Info Advertising Report */
 	}
 
 	return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EVENT_MASK,
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: Bluetooth: hci_sync: Enable events for BIS capable device
  2023-06-29 13:45 ` [PATCH v3 1/1] Bluetooth: hci_sync: Enable events for BIS capable devices Claudia Draghicescu
@ 2023-06-29 14:36   ` bluez.test.bot
  0 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2023-06-29 14:36 UTC (permalink / raw)
  To: linux-bluetooth, claudia.rosu

[-- Attachment #1: Type: text/plain, Size: 2213 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=761243

---Test result---

Test Summary:
CheckPatch                    FAIL      0.99 seconds
GitLint                       PASS      0.25 seconds
SubjectPrefix                 PASS      0.07 seconds
BuildKernel                   PASS      39.51 seconds
CheckAllWarning               PASS      43.33 seconds
CheckSparse                   PASS      48.93 seconds
CheckSmatch                   PASS      131.35 seconds
BuildKernel32                 PASS      37.67 seconds
TestRunnerSetup               PASS      531.43 seconds
TestRunner_l2cap-tester       PASS      19.55 seconds
TestRunner_iso-tester         PASS      28.30 seconds
TestRunner_bnep-tester        PASS      6.62 seconds
TestRunner_mgmt-tester        PASS      146.37 seconds
TestRunner_rfcomm-tester      PASS      10.72 seconds
TestRunner_sco-tester         PASS      9.91 seconds
TestRunner_ioctl-tester       PASS      11.47 seconds
TestRunner_mesh-tester        PASS      8.51 seconds
TestRunner_smp-tester         PASS      9.64 seconds
TestRunner_userchan-tester    PASS      6.91 seconds
IncrementalBuild              PASS      34.60 seconds

Details
##############################
Test: CheckPatch - FAIL
Desc: Run checkpatch.pl script
Output:
[v3,1/1] Bluetooth: hci_sync: Enable events for BIS capable devices
WARNING: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#93: 
In the case of a Synchronized Receiver capable device, enable at start-up the

total: 0 errors, 1 warnings, 0 checks, 13 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
      mechanically convert to the typical style using --fix or --fix-inplace.

/github/workspace/src/src/13297055.patch has style problems, please review.

NOTE: Ignored message types: UNKNOWN_COMMIT_ID

NOTE: If any of the errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.




---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 0/1] Bluetooth: hci_sync: Enable events for BIS capable device
  2023-06-29 13:45 [PATCH v3 0/1] Bluetooth: hci_sync: Enable events for BIS capable device Claudia Draghicescu
  2023-06-29 13:45 ` [PATCH v3 1/1] Bluetooth: hci_sync: Enable events for BIS capable devices Claudia Draghicescu
@ 2023-06-29 19:24 ` patchwork-bot+bluetooth
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2023-06-29 19:24 UTC (permalink / raw)
  To: Claudia Draghicescu; +Cc: linux-bluetooth, iulia.tanasescu

Hello:

This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Thu, 29 Jun 2023 16:45:17 +0300 you wrote:
> In the case of a Synchronized Receiver capable device, enable at start-up the
> events for PA reports, PA Sync Established and Big Info Adv reports.
> 
> Claudia Draghicescu (1):
>   Bluetooth: hci_sync: Enable events for BIS capable devices
> 
>  net/bluetooth/hci_sync.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> [...]

Here is the summary with links:
  - [v3,1/1] Bluetooth: hci_sync: Enable events for BIS capable devices
    https://git.kernel.org/bluetooth/bluetooth-next/c/e006be3454c9

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-06-29 19:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-29 13:45 [PATCH v3 0/1] Bluetooth: hci_sync: Enable events for BIS capable device Claudia Draghicescu
2023-06-29 13:45 ` [PATCH v3 1/1] Bluetooth: hci_sync: Enable events for BIS capable devices Claudia Draghicescu
2023-06-29 14:36   ` Bluetooth: hci_sync: Enable events for BIS capable device bluez.test.bot
2023-06-29 19:24 ` [PATCH v3 0/1] " patchwork-bot+bluetooth

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).