Message ID | 20240513203732.435344-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c7445d9736947163f0028bae0fd1ae2133bbbdbe |
Headers | show |
Series | [BlueZ,v1] mesh: Fix not setting rpl_dir as static | 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 | 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/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=852915 ---Test result--- Test Summary: CheckPatch PASS 0.46 seconds GitLint PASS 0.33 seconds BuildEll PASS 24.69 seconds BluezMake PASS 1678.68 seconds MakeCheck PASS 13.11 seconds MakeDistcheck PASS 176.37 seconds CheckValgrind PASS 246.07 seconds CheckSmatch PASS 352.98 seconds bluezmakeextell PASS 119.79 seconds IncrementalBuild PASS 1521.01 seconds ScanBuild PASS 994.87 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 Mon, 13 May 2024 16:37:32 -0400 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > rpl_dir shall be made static to be properly scoped. > --- > mesh/rpl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [BlueZ,v1] mesh: Fix not setting rpl_dir as static https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=c7445d973694 You are awesome, thank you!
diff --git a/mesh/rpl.c b/mesh/rpl.c index 1213ee66e745..fb225dddd62b 100644 --- a/mesh/rpl.c +++ b/mesh/rpl.c @@ -31,7 +31,7 @@ #include "mesh/util.h" #include "mesh/rpl.h" -const char *rpl_dir = "/rpl"; +static const char *rpl_dir = "/rpl"; bool rpl_put_entry(struct mesh_node *node, uint16_t src, uint32_t iv_index, uint32_t seq)
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> rpl_dir shall be made static to be properly scoped. --- mesh/rpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)