Message ID | VI1PR09MB4239579EE5A795C707FBE075E3EE9@VI1PR09MB4239.eurprd09.prod.outlook.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | mesh: Use correct net_id for received CTL messages | 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 |
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=632621 ---Test result--- Test Summary: CheckPatch PASS 1.39 seconds GitLint PASS 1.02 seconds Prep - Setup ELL PASS 42.96 seconds Build - Prep PASS 0.73 seconds Build - Configure PASS 8.59 seconds Build - Make PASS 1376.65 seconds Make Check PASS 11.85 seconds Make Check w/Valgrind PASS 442.86 seconds Make Distcheck PASS 229.18 seconds Build w/ext ELL - Configure PASS 8.63 seconds Build w/ext ELL - Make PASS 1371.84 seconds Incremental Build with patchesPASS 0.00 seconds --- Regards, Linux Bluetooth
diff --git a/mesh/net.c b/mesh/net.c index 8ff3ef32e..e8e6d3a61 100644 --- a/mesh/net.c +++ b/mesh/net.c @@ -2028,7 +2028,7 @@ static bool seg_rxed(struct mesh_net *net, bool frnd, uint32_t iv_index, return false; } -static bool ctl_received(struct mesh_net *net, uint16_t net_key_id, +static bool ctl_received(struct mesh_net *net, uint32_t net_key_id, uint32_t iv_index, uint8_t ttl, uint32_t seq, uint16_t src, uint16_t dst, @@ -2347,7 +2347,7 @@ static enum _relay_advice packet_received(void *user_data, net_seqZero, l_get_be32(msg + 3)); } else { - ctl_received(net, key_aid, iv_index, net_ttl, + ctl_received(net, net_key_id, iv_index, net_ttl, net_seq, net_src, net_dst, net_opcode, rssi, msg, app_msg_len);