Message ID | 20221006145927.32731-2-isak.westin@loytec.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 95bf980b015ee4cb549568d18dd4db6c3f74aa4a |
Headers | show |
Series | Mesh: Fixes for PTS issues | 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/incremental_build | success | 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=683513 ---Test result--- Test Summary: CheckPatch PASS 6.47 seconds GitLint PASS 4.32 seconds Prep - Setup ELL PASS 27.73 seconds Build - Prep PASS 0.73 seconds Build - Configure PASS 8.76 seconds Build - Make PASS 867.47 seconds Make Check PASS 11.56 seconds Make Check w/Valgrind PASS 295.55 seconds Make Distcheck PASS 242.61 seconds Build w/ext ELL - Configure PASS 8.79 seconds Build w/ext ELL - Make PASS 85.61 seconds Incremental Build w/ patches PASS 602.70 seconds Scan Build PASS 518.24 seconds --- Regards, Linux Bluetooth
diff --git a/mesh/node.c b/mesh/node.c index e81aa82fe..cf4ed140e 100644 --- a/mesh/node.c +++ b/mesh/node.c @@ -1270,8 +1270,8 @@ static bool add_local_node(struct mesh_node *node, uint16_t unicast, bool kr, MESH_STATUS_SUCCESS) return false; - if (!mesh_config_net_key_set_phase(node->cfg, net_key_idx, - KEY_REFRESH_PHASE_TWO)) + if (mesh_net_key_refresh_phase_set(node->net, net_key_idx, + KEY_REFRESH_PHASE_TWO) != MESH_STATUS_SUCCESS) return false; }