Message ID | 20221019203028.57090-1-frederic.danis@collabora.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 3153b0ecfe16a885994a30463a498bfeff5ca650 |
Headers | show |
Series | [BlueZ] shared/util: Increase debug trace buffer size | 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/setupell | success | Setup ELL PASS |
tedd_an/buildprep | success | Build Prep PASS |
tedd_an/build | success | Build Configuration PASS |
tedd_an/makecheck | success | Make Check PASS |
tedd_an/makecheckvalgrind | success | Make Check PASS |
tedd_an/makedistcheck | success | Make Distcheck PASS |
tedd_an/build_extell | success | Build External ELL PASS |
tedd_an/build_extell_make | success | Build Make with External ELL PASS |
tedd_an/scan_build | success | 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=686887 ---Test result--- Test Summary: CheckPatch PASS 1.04 seconds GitLint PASS 0.69 seconds Prep - Setup ELL PASS 27.86 seconds Build - Prep PASS 0.70 seconds Build - Configure PASS 8.79 seconds Build - Make PASS 885.94 seconds Make Check PASS 11.96 seconds Make Check w/Valgrind PASS 298.50 seconds Make Distcheck PASS 247.19 seconds Build w/ext ELL - Configure PASS 9.02 seconds Build w/ext ELL - Make PASS 88.93 seconds Incremental Build w/ patches PASS 0.00 seconds Scan Build PASS 545.81 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Wed, 19 Oct 2022 22:30:28 +0200 you wrote: > Most of the debug traces are longer than 78 characters, increase the buffer > to not lost trace's end > --- > src/shared/util.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [BlueZ] shared/util: Increase debug trace buffer size https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=3153b0ecfe16 You are awesome, thank you!
diff --git a/src/shared/util.c b/src/shared/util.c index e1e56459a..0a0308cb0 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -65,7 +65,7 @@ void *util_memdup(const void *src, size_t size) void util_debug_va(util_debug_func_t function, void *user_data, const char *format, va_list va) { - char str[78]; + char str[MAX_INPUT]; if (!function || !format) return;