diff mbox series

[BlueZ,1/4] mesh: Correct size of friend cache

Message ID 20221004082530.25719-2-isak.westin@loytec.com (mailing list archive)
State Accepted
Commit e9a8e884109c1fb3ee075115cb28312dd2716669
Headers show
Series Mesh: Fixes for friendship procedures | expand

Checks

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/incremental_build success Pass
tedd_an/scan_build success Pass

Commit Message

Isak Westin Oct. 4, 2022, 8:25 a.m. UTC
The cache size communicated to the Low Power node should be the same as
the cache size actually used.
---
 mesh/friend.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com Oct. 4, 2022, 9:32 a.m. UTC | #1
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=682931

---Test result---

Test Summary:
CheckPatch                    PASS      2.69 seconds
GitLint                       PASS      1.83 seconds
Prep - Setup ELL              PASS      32.77 seconds
Build - Prep                  PASS      0.79 seconds
Build - Configure             PASS      10.20 seconds
Build - Make                  PASS      1074.82 seconds
Make Check                    PASS      12.10 seconds
Make Check w/Valgrind         PASS      347.39 seconds
Make Distcheck                PASS      287.27 seconds
Build w/ext ELL - Configure   PASS      10.21 seconds
Build w/ext ELL - Make        PASS      104.52 seconds
Incremental Build w/ patches  PASS      492.04 seconds
Scan Build                    PASS      642.46 seconds



---
Regards,
Linux Bluetooth
diff mbox series

Patch

diff --git a/mesh/friend.c b/mesh/friend.c
index 6c63032ac..5b73da689 100644
--- a/mesh/friend.c
+++ b/mesh/friend.c
@@ -25,7 +25,7 @@ 
 
 #define MAX_FRND_GROUPS		20
 #define FRND_RELAY_WINDOW	250		/* 250 ms */
-#define FRND_CACHE_SIZE		16
+#define FRND_CACHE_SIZE		FRND_CACHE_MAX
 #define FRND_SUB_LIST_SIZE	8
 
 #define RESPONSE_DELAY		(100 - 12)	/*  100  ms - 12ms hw delay */