public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: hci_conn: Use kzalloc for kmalloc+memset
@ 2022-11-11 16:23 Deepak R Varma
  2022-11-11 17:25 ` bluez.test.bot
  0 siblings, 1 reply; 2+ messages in thread
From: Deepak R Varma @ 2022-11-11 16:23 UTC (permalink / raw)
  To: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	linux-bluetooth, netdev, linux-kernel
  Cc: drv

Use of kzalloc preferred over combination of kmalloc & memset. Issue
identified using coccicheck.

Signed-off-by: Deepak R Varma <drv@mailo.com>
---
 net/bluetooth/hci_conn.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
index 7a59c4487050..287d313aa312 100644
--- a/net/bluetooth/hci_conn.c
+++ b/net/bluetooth/hci_conn.c
@@ -824,11 +824,10 @@ static int hci_le_terminate_big(struct hci_dev *hdev, u8 big, u8 bis)

 	bt_dev_dbg(hdev, "big 0x%2.2x bis 0x%2.2x", big, bis);

-	d = kmalloc(sizeof(*d), GFP_KERNEL);
+	d = kzalloc(sizeof(*d), GFP_KERNEL);
 	if (!d)
 		return -ENOMEM;

-	memset(d, 0, sizeof(*d));
 	d->big = big;
 	d->bis = bis;

@@ -861,11 +860,10 @@ static int hci_le_big_terminate(struct hci_dev *hdev, u8 big, u16 sync_handle)

 	bt_dev_dbg(hdev, "big 0x%2.2x sync_handle 0x%4.4x", big, sync_handle);

-	d = kmalloc(sizeof(*d), GFP_KERNEL);
+	d = kzalloc(sizeof(*d), GFP_KERNEL);
 	if (!d)
 		return -ENOMEM;

-	memset(d, 0, sizeof(*d));
 	d->big = big;
 	d->sync_handle = sync_handle;

--
2.34.1




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* RE: Bluetooth: hci_conn: Use kzalloc for kmalloc+memset
  2022-11-11 16:23 [PATCH] Bluetooth: hci_conn: Use kzalloc for kmalloc+memset Deepak R Varma
@ 2022-11-11 17:25 ` bluez.test.bot
  0 siblings, 0 replies; 2+ messages in thread
From: bluez.test.bot @ 2022-11-11 17:25 UTC (permalink / raw)
  To: linux-bluetooth, drv

[-- Attachment #1: Type: text/plain, Size: 1262 bytes --]

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=694573

---Test result---

Test Summary:
CheckPatch                    PASS      0.91 seconds
GitLint                       PASS      0.47 seconds
SubjectPrefix                 PASS      0.30 seconds
BuildKernel                   PASS      48.47 seconds
BuildKernel32                 PASS      42.93 seconds
Incremental Build with patchesPASS      67.14 seconds
TestRunner: Setup             PASS      695.23 seconds
TestRunner: l2cap-tester      PASS      21.64 seconds
TestRunner: iso-tester        PASS      22.88 seconds
TestRunner: bnep-tester       PASS      8.53 seconds
TestRunner: mgmt-tester       PASS      139.53 seconds
TestRunner: rfcomm-tester     PASS      13.29 seconds
TestRunner: sco-tester        PASS      12.53 seconds
TestRunner: ioctl-tester      PASS      14.65 seconds
TestRunner: mesh-tester       PASS      10.41 seconds
TestRunner: smp-tester        PASS      12.32 seconds
TestRunner: userchan-tester   PASS      8.81 seconds



---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-11-11 17:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-11 16:23 [PATCH] Bluetooth: hci_conn: Use kzalloc for kmalloc+memset Deepak R Varma
2022-11-11 17:25 ` bluez.test.bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox