Message ID | 20250206-upstream-v2-1-ffb66c7f9544@amlogic.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [BlueZ,bluez,v2] gatt: expanded maximum GATT channels to 6 | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/ScanBuild | success | Scan Build PASS |
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=931037 ---Test result--- Test Summary: CheckPatch PENDING 0.19 seconds GitLint PENDING 0.28 seconds BuildEll PASS 20.18 seconds BluezMake PASS 1430.34 seconds MakeCheck PASS 13.46 seconds MakeDistcheck PASS 161.06 seconds CheckValgrind PASS 213.54 seconds CheckSmatch PASS 282.03 seconds bluezmakeextell PASS 97.35 seconds IncrementalBuild PENDING 0.27 seconds ScanBuild PASS 854.88 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
diff --git a/src/main.c b/src/main.c index d13ada2af..50346abbb 100644 --- a/src/main.c +++ b/src/main.c @@ -1119,7 +1119,7 @@ static void parse_gatt(GKeyFile *config) parse_config_u16(config, "GATT", "ExchangeMTU", &btd_opts.gatt_mtu, BT_ATT_DEFAULT_LE_MTU, BT_ATT_MAX_LE_MTU); parse_config_u8(config, "GATT", "Channels", &btd_opts.gatt_channels, - 1, 5); + 1, 6); parse_config_bool(config, "GATT", "Client", &btd_opts.gatt_client); parse_gatt_export(config); } diff --git a/src/main.conf b/src/main.conf index 60ab60edc..749ed6d25 100644 --- a/src/main.conf +++ b/src/main.conf @@ -264,7 +264,8 @@ #ExchangeMTU = 517 # Number of ATT channels -# Possible values: 1-5 (1 disables EATT) +# Possible values: 1-6 (1 disables EATT) +# The ATT channels contains ATT connection(1) and L2CAP CB connection(1-5) # Default to 1 #Channels = 1