Re: [PATCH 1/4] staging: sep: Solves some problems reported by checkpatch

2014-07-21 Thread Greg KH
On Sat, Jul 19, 2014 at 07:34:39PM +0200, LABBE Corentin wrote:
 Signed-off-by: LABBE Corentin clabbe.montj...@gmail.com
 ---
  drivers/staging/sep/sep_main.c | 15 ---
  1 file changed, 8 insertions(+), 7 deletions(-)

_which_ specific problems are fixed here?

Please be specific and provide a valid changelog entry in the body of
the email, changelogs without any information other than the subject:
are generally frowned apon.

Can you please fix this up and resend?

thanks,

greg k-h
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[PATCH 1/4] staging: sep: Solves some problems reported by checkpatch

2014-07-19 Thread LABBE Corentin
Signed-off-by: LABBE Corentin clabbe.montj...@gmail.com
---
 drivers/staging/sep/sep_main.c | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/sep/sep_main.c b/drivers/staging/sep/sep_main.c
index 75ca15e..177e4b9 100644
--- a/drivers/staging/sep/sep_main.c
+++ b/drivers/staging/sep/sep_main.c
@@ -155,7 +155,7 @@ struct sep_queue_info *sep_queue_status_add(
unsigned long lck_flags;
struct sep_queue_info *my_elem = NULL;
 
-   my_elem = kzalloc(sizeof(struct sep_queue_info), GFP_KERNEL);
+   my_elem = kzalloc(sizeof(*my_elem), GFP_KERNEL);
 
if (!my_elem)
return NULL;
@@ -1006,8 +1006,8 @@ static int sep_crypto_dma(
return -ENOMEM;
}
 
-   sep_dma = kmalloc(sizeof(struct sep_dma_map) *
-   count_mapped, GFP_ATOMIC);
+   sep_dma = kmalloc_array(count_mapped, sizeof(struct sep_dma_map),
+   GFP_ATOMIC);
 
if (sep_dma == NULL) {
dev_dbg(sep-pdev-dev, Cannot allocate dma_maps\n);
@@ -1070,7 +1070,8 @@ static int sep_crypto_lli(
 
sep_map = *maps;
 
-   sep_lli = kmalloc(sizeof(struct sep_lli_entry) * nbr_ents, GFP_ATOMIC);
+   sep_lli = kmalloc_array(nbr_ents, sizeof(struct sep_lli_entry),
+   GFP_ATOMIC);
 
if (sep_lli == NULL) {
dev_dbg(sep-pdev-dev, Cannot allocate lli_maps\n);
@@ -3398,7 +3399,7 @@ static ssize_t sep_create_dcb_dmatables_context(struct 
sep_device *sep,
}
 
/* Allocate thread-specific memory for DCB */
-   *dcb_region = kzalloc(num_dcbs * sizeof(struct sep_dcblock),
+   *dcb_region = kcalloc(num_dcbs, sizeof(struct sep_dcblock),
  GFP_KERNEL);
if (!(*dcb_region)) {
error = -ENOMEM;
@@ -3480,7 +3481,7 @@ int sep_create_dcb_dmatables_context_kernel(struct 
sep_device *sep,
current-pid, num_dcbs);
 
/* Allocate thread-specific memory for DCB */
-   *dcb_region = kzalloc(num_dcbs * sizeof(struct sep_dcblock),
+   *dcb_region = kcalloc(num_dcbs, sizeof(struct sep_dcblock),
  GFP_KERNEL);
if (!(*dcb_region)) {
error = -ENOMEM;
@@ -4090,7 +4091,7 @@ static int sep_probe(struct pci_dev *pdev,
}
 
/* Allocate the sep_device structure for this device */
-   sep_dev = kzalloc(sizeof(struct sep_device), GFP_ATOMIC);
+   sep_dev = kzalloc(sizeof(*sep_dev), GFP_ATOMIC);
if (sep_dev == NULL) {
error = -ENOMEM;
goto end_function_disable_device;
-- 
1.8.5.5

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel