Message ID | 20221027232528.1996093-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 98f18bb78b7def72f9c4038ba3944cd53f2009c9 |
Headers | show |
Series | Bluetooth: Add CONFIG_BT_LE_L2CAP_ECRED | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/checkpatch | success | Checkpatch PASS |
tedd_an/gitlint | success | Gitlint PASS |
tedd_an/subjectprefix | success | PASS |
tedd_an/buildkernel | success | Build Kernel PASS |
tedd_an/buildkernel32 | success | Build Kernel32 PASS |
tedd_an/incremental_build | success | Pass |
tedd_an/testrunnersetup | success | Test Runner Setup PASS |
tedd_an/testrunnerl2cap-tester | success | Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunneriso-tester | success | Total: 55, Passed: 55 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerbnep-tester | success | Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermgmt-tester | success | Total: 494, Passed: 494 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerrfcomm-tester | success | Total: 11, Passed: 11 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersco-tester | success | Total: 12, Passed: 12 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerioctl-tester | success | Total: 28, Passed: 28 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermesh-tester | success | Total: 10, Passed: 10 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersmp-tester | success | Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunneruserchan-tester | success | Total: 4, Passed: 4 (100.0%), Failed: 0, Not Run: 0 |
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=689611 ---Test result--- Test Summary: CheckPatch PASS 1.83 seconds GitLint PASS 1.05 seconds SubjectPrefix PASS 0.88 seconds BuildKernel PASS 34.27 seconds BuildKernel32 PASS 31.02 seconds Incremental Build with patchesPASS 46.58 seconds TestRunner: Setup PASS 514.95 seconds TestRunner: l2cap-tester PASS 17.48 seconds TestRunner: iso-tester PASS 16.75 seconds TestRunner: bnep-tester PASS 6.64 seconds TestRunner: mgmt-tester PASS 106.88 seconds TestRunner: rfcomm-tester PASS 10.50 seconds TestRunner: sco-tester PASS 9.95 seconds TestRunner: ioctl-tester PASS 11.37 seconds TestRunner: mesh-tester PASS 8.19 seconds TestRunner: smp-tester PASS 10.02 seconds TestRunner: userchan-tester PASS 6.99 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Thu, 27 Oct 2022 16:25:28 -0700 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This adds CONFIG_BT_LE_L2CAP_ECRED which can be used to enable L2CAP > Enhanced Credit Flow Control Mode by default, previously it was only > possible to set it via module parameter (e.g. bluetooth.enable_ecred=1). > > Since L2CAP ECRED mode is required by the likes of EATT which is > recommended for LE Audio this enables it by default. > > [...] Here is the summary with links: - Bluetooth: Add CONFIG_BT_LE_L2CAP_ECRED https://git.kernel.org/bluetooth/bluetooth-next/c/98f18bb78b7d You are awesome, thank you!
diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig index ae3bdc6dfc92..da7cac0a1b71 100644 --- a/net/bluetooth/Kconfig +++ b/net/bluetooth/Kconfig @@ -78,6 +78,17 @@ config BT_LE Bluetooth Low Energy includes support low-energy physical layer available with Bluetooth version 4.0 or later. +config BT_LE_L2CAP_ECRED + bool "Bluetooth L2CAP Enhanced Credit Flow Control" + depends on BT_LE + default y + help + Bluetooth Low Energy L2CAP Enhanced Credit Flow Control available with + Bluetooth version 5.2 or later. + + This can be overridden by passing bluetooth.enable_ecred=[1|0] + on the kernel commandline. + config BT_6LOWPAN tristate "Bluetooth 6LoWPAN support" depends on BT_LE && 6LOWPAN diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 1fbe087d6ae4..ef725ed41303 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -45,7 +45,7 @@ #define LE_FLOWCTL_MAX_CREDITS 65535 bool disable_ertm; -bool enable_ecred; +bool enable_ecred = IS_ENABLED(CONFIG_BT_LE_L2CAP_ECRED); static u32 l2cap_feat_mask = L2CAP_FEAT_FIXED_CHAN | L2CAP_FEAT_UCD;