diff mbox series

nbd: use kmalloc instead of kzalloc when allocating recv_thread_args

Message ID 1547718955-870-1-git-send-email-laoar.shao@gmail.com (mailing list archive)
State New, archived
Headers show
Series nbd: use kmalloc instead of kzalloc when allocating recv_thread_args | expand

Commit Message

Yafang Shao Jan. 17, 2019, 9:55 a.m. UTC
As all the members of recv_thread_args will be set before queue_work(),
we don't need to use kzalloc() here.

Signed-off-by: Yafang Shao <laoar.shao@gmail.com>
---
 drivers/block/nbd.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c
index 08696f5..1656a60 100644
--- a/drivers/block/nbd.c
+++ b/drivers/block/nbd.c
@@ -983,7 +983,7 @@  static int nbd_reconnect_socket(struct nbd_device *nbd, unsigned long arg)
 	if (!sock)
 		return err;
 
-	args = kzalloc(sizeof(*args), GFP_KERNEL);
+	args = kmalloc(sizeof(*args), GFP_KERNEL);
 	if (!args) {
 		sockfd_put(sock);
 		return -ENOMEM;
@@ -1166,7 +1166,7 @@  static int nbd_start_device(struct nbd_device *nbd)
 	for (i = 0; i < num_connections; i++) {
 		struct recv_thread_args *args;
 
-		args = kzalloc(sizeof(*args), GFP_KERNEL);
+		args = kmalloc(sizeof(*args), GFP_KERNEL);
 		if (!args) {
 			sock_shutdown(nbd);
 			return -ENOMEM;