Message ID | 20230425204729.3943583-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [BlueZ,1/7] media: Fix not storing Preferred Delay properly | 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/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | fail | BlueZ Make Check FAIL: |
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/IncrementalBuild | success | Incremental Build 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=743154 ---Test result--- Test Summary: CheckPatch FAIL 3.54 seconds GitLint PASS 1.82 seconds BuildEll PASS 26.72 seconds BluezMake PASS 771.20 seconds MakeCheck FAIL 11.44 seconds MakeDistcheck PASS 154.02 seconds CheckValgrind PASS 245.93 seconds CheckSmatch PASS 329.77 seconds bluezmakeextell PASS 99.34 seconds IncrementalBuild PASS 4381.54 seconds ScanBuild PASS 999.98 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script Output: [BlueZ,6/7] shared/lc3: Update configuration to use iovec ERROR:SPACING: need consistent spacing around '>>' (ctx:WxV) #124: FILE: src/shared/lc3.h:56: + LC3_IOV(0x02, LC3_FREQ, _freq, _freq >>8, \ ^ /github/workspace/src/src/13223798.patch total: 1 errors, 0 warnings, 125 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/13223798.patch has style problems, please review. NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. ############################## Test: MakeCheck - FAIL Desc: Run Bluez Make Check Output: make[3]: *** [Makefile:11261: test-suite.log] Error 1 make[2]: *** [Makefile:11369: check-TESTS] Error 2 make[1]: *** [Makefile:11777: check-am] Error 2 make: *** [Makefile:11779: check] Error 2 --- Regards, Linux Bluetooth
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=743154 ---Test result--- Test Summary: CheckPatch FAIL 4.01 seconds GitLint PASS 1.94 seconds BuildEll PASS 37.01 seconds BluezMake PASS 1276.07 seconds MakeCheck FAIL 14.14 seconds MakeDistcheck PASS 211.72 seconds CheckValgrind PASS 346.42 seconds CheckSmatch PASS 474.73 seconds bluezmakeextell PASS 141.60 seconds IncrementalBuild PASS 7451.95 seconds ScanBuild PASS 1514.41 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script Output: [BlueZ,6/7] shared/lc3: Update configuration to use iovec ERROR:SPACING: need consistent spacing around '>>' (ctx:WxV) #124: FILE: src/shared/lc3.h:56: + LC3_IOV(0x02, LC3_FREQ, _freq, _freq >>8, \ ^ /github/workspace/src/src/13223798.patch total: 1 errors, 0 warnings, 125 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/13223798.patch has style problems, please review. NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. ############################## Test: MakeCheck - FAIL Desc: Run Bluez Make Check Output: make[3]: *** [Makefile:11261: test-suite.log] Error 1 make[2]: *** [Makefile:11369: check-TESTS] Error 2 make[1]: *** [Makefile:11777: check-am] Error 2 make: *** [Makefile:11779: check] Error 2 --- Regards, Linux Bluetooth
diff --git a/profiles/audio/media.c b/profiles/audio/media.c index 540e91bc6706..23c63f4172dd 100644 --- a/profiles/audio/media.c +++ b/profiles/audio/media.c @@ -1477,11 +1477,11 @@ static int parse_properties(DBusMessageIter *props, const char **uuid, } else if (strcasecmp(key, "PreferredMinimumDelay") == 0) { if (var != DBUS_TYPE_UINT16) return -EINVAL; - dbus_message_iter_get_basic(&value, &qos->pd_min); + dbus_message_iter_get_basic(&value, &qos->ppd_min); } else if (strcasecmp(key, "PreferredMaximumDelay") == 0) { if (var != DBUS_TYPE_UINT16) return -EINVAL; - dbus_message_iter_get_basic(&value, &qos->pd_max); + dbus_message_iter_get_basic(&value, &qos->ppd_max); } dbus_message_iter_next(props);
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> Preferred Delay properties were being stored as qos->pd_* instead of qos->ppd_*. --- profiles/audio/media.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)