From: Markus Elfring <Markus.Elfring@web.de>
To: Jiasheng Jiang <jiashengjiangcool@gmail.com>,
linux-scsi@vger.kernel.org,
GR-QLogic-Storage-Upstream@marvell.com,
James Bottomley <James.Bottomley@HansenPartnership.com>,
Javed Hasan <jhasan@marvell.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
Saurav Kashyap <skashyap@marvell.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
Arun Easi <arun.easi@cavium.com>,
Bart Van Assche <bvanassche@acm.org>,
Manish Rangankar <manish.rangankar@cavium.com>,
Nilesh Javali <nilesh.javali@cavium.com>
Subject: Re: [PATCH v2] scsi: qedf: Use kcalloc() and add check for bdt_info
Date: Sun, 2 Feb 2025 17:54:14 +0100 [thread overview]
Message-ID: <d5d13945-da84-4886-bdc7-9a3ac182b2be@web.de> (raw)
In-Reply-To: <20250131213516.7750-1-jiashengjiangcool@gmail.com>
…
> +++ b/drivers/scsi/qedf/qedf_io.c
…
@@ -254,9 +254,7 @@ struct qedf_cmd_mgr *qedf_cmd_mgr_alloc(struct qedf_ctx *qedf)
}
/* Allocate pool of io_bdts - one for each qedf_ioreq */
…
+ cmgr->io_bdt_pool = kcalloc(num_ios, sizeof(struct io_bdt *), GFP_KERNEL);
…
See also:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/coding-style.rst?h=v6.13#n941
Regards,
Markus
next prev parent reply other threads:[~2025-02-02 16:54 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-31 19:54 [PATCH] scsi: qedf: Use kzalloc() and add check for bdt_info Jiasheng Jiang
2025-01-31 20:32 ` Bart Van Assche
2025-01-31 21:35 ` [PATCH v2] scsi: qedf: Use kcalloc() " Jiasheng Jiang
2025-02-02 15:22 ` Markus Elfring
2025-02-02 16:54 ` Markus Elfring [this message]
2025-02-02 21:21 ` [PATCH] Replace kmalloc_array() with kcalloc() Jiasheng Jiang
2025-02-02 21:29 ` [PATCH] scsi: qedf: Add check for bdt_info Jiasheng Jiang
2025-02-02 21:32 ` [PATCH] scsi: qedf: Replace kmalloc_array() with kcalloc() Jiasheng Jiang
2025-02-03 7:20 ` [PATCH v3?] " Markus Elfring
2025-02-04 2:51 ` [PATCH v3] " Jiasheng Jiang
2025-02-04 2:52 ` [PATCH v3?] " Jiasheng Jiang
2025-02-04 8:05 ` [v3?] " Markus Elfring
2025-02-05 1:07 ` [PATCH v3 1/2] " Jiasheng Jiang
2025-02-05 1:07 ` [PATCH v3 2/2] scsi: qedf: Add check for bdt_info Jiasheng Jiang
2025-02-05 1:08 ` [v3?] scsi: qedf: Replace kmalloc_array() with kcalloc() Jiasheng Jiang
2025-02-05 8:11 ` Markus Elfring
2025-02-06 5:12 ` Jiasheng Jiang
2025-02-06 12:16 ` Markus Elfring
2025-02-06 5:25 ` [PATCH 0/2] scsi: qedf: Replace alloction API and add null check Jiasheng Jiang
2025-02-06 5:25 ` [PATCH 1/2] scsi: qedf: Replace kmalloc_array() with kcalloc() Jiasheng Jiang
2025-02-06 5:36 ` Greg KH
2025-02-06 5:38 ` Greg KH
2025-02-06 19:19 ` [PATCH v2 " Jiasheng Jiang
2025-02-06 19:20 ` [PATCH v2 2/2] scsi: qedf: Add check for bdt_info Jiasheng Jiang
2025-02-07 15:09 ` [PATCH v2 1/2] scsi: qedf: Replace kmalloc_array() with kcalloc() Greg KH
2025-02-07 15:45 ` [PATCH v3 " Jiasheng Jiang
2025-02-07 15:45 ` [PATCH v3 2/2] scsi: qedf: Add check for bdt_info Jiasheng Jiang
2025-02-07 15:46 ` [PATCH v2 1/2] scsi: qedf: Replace kmalloc_array() with kcalloc() Jiasheng Jiang
2025-02-06 5:25 ` [PATCH 2/2] scsi: qedf: Add check for bdt_info Jiasheng Jiang
2025-02-06 11:56 ` [PATCH v5? 0/2] scsi: qedf: Replace alloction API and add null check Markus Elfring
2025-02-05 2:01 ` [PATCH RESEND v3 1/2] scsi: qedf: Replace kmalloc_array() with kcalloc() Jiasheng Jiang
2025-02-05 2:01 ` [PATCH RESEND v3 2/2] scsi: qedf: Add check for bdt_info Jiasheng Jiang
2025-02-02 21:33 ` [PATCH v2] scsi: qedf: Use kcalloc() and add " Jiasheng Jiang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d5d13945-da84-4886-bdc7-9a3ac182b2be@web.de \
--to=markus.elfring@web.de \
--cc=GR-QLogic-Storage-Upstream@marvell.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=arun.easi@cavium.com \
--cc=bvanassche@acm.org \
--cc=jhasan@marvell.com \
--cc=jiashengjiangcool@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=manish.rangankar@cavium.com \
--cc=martin.petersen@oracle.com \
--cc=nilesh.javali@cavium.com \
--cc=skashyap@marvell.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox