mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Duan Jiong <duanj.fnst@cn.fujitsu.com>
To: Joe Perches <joe@perches.com>
Cc: perex@perex.cz, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ALSA: emu10k1: casting (void *) value returned by kcalloc is useless
Date: Thu, 05 Sep 2013 18:10:36 +0800	[thread overview]
Message-ID: <5228589C.2060508@cn.fujitsu.com> (raw)
In-Reply-To: <1378361546.1944.8.camel@joe-AO722>

于 2013年09月05日 14:12, Joe Perches 写道:
> On Thu, 2013-09-05 at 13:57 +0800, Duan Jiong wrote:
>> From: Duan Jiong <duanj.fnst@cn.fujitsu.com>
>>
>> Casting (void *) value returned by kcalloc is useless
>> as mentioned in Documentation/CodingStyle, Chap 14.
> 
> __user is an important marker that is lost here.
> 
>> diff --git a/sound/pci/emu10k1/emufx.c b/sound/pci/emu10k1/emufx.c
> []
>> @@ -1183,9 +1183,8 @@ static int _snd_emu10k1_audigy_init_efx(struct snd_emu10k1 *emu)
>>  	mm_segment_t seg;
>>  
>>  	if ((icode = kzalloc(sizeof(*icode), GFP_KERNEL)) == NULL ||
>> -	    (icode->gpr_map = (u_int32_t __user *)
>> -	     kcalloc(512 + 256 + 256 + 2 * 1024, sizeof(u_int32_t),
>> -		     GFP_KERNEL)) == NULL ||
>> +	    (icode->gpr_map = kcalloc(512 + 256 + 256 + 2 * 1024,
>> +				sizeof(u_int32_t), GFP_KERNEL)) == NULL ||
>>  	    (controls = kcalloc(SND_EMU10K1_GPR_CONTROLS,
>>  				sizeof(*controls), GFP_KERNEL)) == NULL) {
>>  		err = -ENOMEM;
> 
> I think this would be clearer as
> 
> 	err = -ENOMEM;
> 	icode = kzalloc(sizeof(*icode), GFP_KERNEL)
> 	if (!icode)
> 		goto err;
> 	icode->gpr_map = (__user)kcalloc(512 + 256 + 256 + 2 * 1024,
> 					 sizeof(u_int32_t), GFP_KERNEL);
> 	if (!icode->gpr_map)
> 		goto err;
> 	controls = kcalloc(SND_EMU10K1_GPR_CONTROLS,
> 			    sizeof(*controls), GFP_KERNEL);
> 	if (!controls)
> 		goto err;
> 

Maybe it should keep the original style, because i do as you said, and
error messages appear during compiling the kernel.

Thanks,
  Duan


  reply	other threads:[~2013-09-05 10:11 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-05  5:57 Duan Jiong
2013-09-05  6:12 ` Joe Perches
2013-09-05 10:10   ` Duan Jiong [this message]
2013-09-05 10:18     ` Joe Perches

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=5228589C.2060508@cn.fujitsu.com \
    --to=duanj.fnst@cn.fujitsu.com \
    --cc=joe@perches.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=perex@perex.cz \
    /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

all inboxes | Powered by JetHome®