Message ID | 2f67f1c5ed7de38b78a296c798f3d4afe9e3bd63.1644787831.git.christophe.jaillet@wanadoo.fr (mailing list archive) |
---|---|
State | Accepted |
Commit | 952b6d5f18594418963b70467a8cd115cfa37a5d |
Headers | show |
Series | Bluetooth: 6lowpan: No need to clear memory twice | 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/subjectprefix | success | PASS |
tedd_an/buildkernel | success | Build Kernel PASS |
tedd_an/buildkernel32 | success | Build Kernel32 PASS |
tedd_an/incremental_build | success | Pass |
tedd_an/testrunnersetup | success | Test Runner Setup PASS |
tedd_an/testrunnerl2cap-tester | success | Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerbnep-tester | success | Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermgmt-tester | success | Total: 493, Passed: 493 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerrfcomm-tester | success | Total: 10, Passed: 10 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersco-tester | success | Total: 12, Passed: 12 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersmp-tester | success | Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunneruserchan-tester | success | Total: 4, Passed: 4 (100.0%), Failed: 0, Not Run: 0 |
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=613897 ---Test result--- Test Summary: CheckPatch PASS 1.64 seconds GitLint PASS 1.05 seconds SubjectPrefix PASS 0.83 seconds BuildKernel PASS 34.58 seconds BuildKernel32 PASS 30.57 seconds Incremental Build with patchesPASS 41.25 seconds TestRunner: Setup PASS 541.75 seconds TestRunner: l2cap-tester PASS 15.24 seconds TestRunner: bnep-tester PASS 7.02 seconds TestRunner: mgmt-tester PASS 115.93 seconds TestRunner: rfcomm-tester PASS 8.80 seconds TestRunner: sco-tester PASS 8.81 seconds TestRunner: smp-tester PASS 8.72 seconds TestRunner: userchan-tester PASS 7.27 seconds --- Regards, Linux Bluetooth
Hi Christophe, > 'peer_addr' is a structure embedded in 'struct lowpan_peer'. So there is no > need to explicitly call memset(0) on it. It is already zeroed by kzalloc() > when 'peer' is allocated. > > Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> > --- > net/bluetooth/6lowpan.c | 1 - > 1 file changed, 1 deletion(-) patch has been applied to bluetooth-next tree. Regards Marcel
diff --git a/net/bluetooth/6lowpan.c b/net/bluetooth/6lowpan.c index 133d7ea063fb..8e8c07541153 100644 --- a/net/bluetooth/6lowpan.c +++ b/net/bluetooth/6lowpan.c @@ -641,7 +641,6 @@ static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan, return NULL; peer->chan = chan; - memset(&peer->peer_addr, 0, sizeof(struct in6_addr)); baswap((void *)peer->lladdr, &chan->dst);
'peer_addr' is a structure embedded in 'struct lowpan_peer'. So there is no need to explicitly call memset(0) on it. It is already zeroed by kzalloc() when 'peer' is allocated. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> --- net/bluetooth/6lowpan.c | 1 - 1 file changed, 1 deletion(-)