linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] Simplify the kobject_init function.
       [not found] <1342073375-27181-1-git-send-email-haodong@linux.vnet.ibm.com>
@ 2012-07-17 16:40 ` Greg KH
  2012-07-18  4:46   ` don
  0 siblings, 1 reply; 2+ messages in thread
From: Greg KH @ 2012-07-17 16:40 UTC (permalink / raw)
  To: Dong Hao; +Cc: linux-kernel

On Thu, Jul 12, 2012 at 02:09:35PM +0800, Dong Hao wrote:
> The printk() function at the end of function kobject_init() already had '\n',
> so remove it.
> 
> While the kobject has been initialized, assign error string and
> jump to error case directly.
> 
> Signed-off-by: Dong Hao<haodong@linux.vnet.ibm.com>
> ---
>  lib/kobject.c |    9 ++++-----
>  1 files changed, 4 insertions(+), 5 deletions(-)
> 
> diff --git a/lib/kobject.c b/lib/kobject.c
> index 05de4dc..7b8a09c 100644
> --- a/lib/kobject.c
> +++ b/lib/kobject.c
> @@ -278,14 +278,13 @@ void kobject_init(struct kobject *kobj, struct kobj_type *ktype)
>  		goto error;
>  	}
>  	if (!ktype) {
> -		err_str = "must have a ktype to be initialized properly!\n";
> +		err_str = "must have a ktype to be initialized properly!";
>  		goto error;
>  	}
>  	if (kobj->state_initialized) {
> -		/* do not error out as sometimes we can recover */
> -		printk(KERN_ERR "kobject (%p): tried to init an initialized "
> -		       "object, something is seriously wrong.\n", kobj);
> -		dump_stack();
> +		err_str = "tried to init an initialized "
> +			"object, something is seriously wrong.";
> +		goto error;

You were already told why this patch is incorrect, why are you resending
it two more times?  That's a bit annoying and rude, don't you think?

Sorry, I can't take this, please read the code you are modifying.

greg k-h

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

* Re: [PATCH] Simplify the kobject_init function.
  2012-07-17 16:40 ` [PATCH] Simplify the kobject_init function Greg KH
@ 2012-07-18  4:46   ` don
  0 siblings, 0 replies; 2+ messages in thread
From: don @ 2012-07-18  4:46 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel

于 2012年07月18日 00:40, Greg KH 写道:
> On Thu, Jul 12, 2012 at 02:09:35PM +0800, Dong Hao wrote:
>> The printk() function at the end of function kobject_init() already had '\n',
>> so remove it.
>>
>> While the kobject has been initialized, assign error string and
>> jump to error case directly.
>>
>> Signed-off-by: Dong Hao<haodong@linux.vnet.ibm.com>
>> ---
>>   lib/kobject.c |    9 ++++-----
>>   1 files changed, 4 insertions(+), 5 deletions(-)
>>
>> diff --git a/lib/kobject.c b/lib/kobject.c
>> index 05de4dc..7b8a09c 100644
>> --- a/lib/kobject.c
>> +++ b/lib/kobject.c
>> @@ -278,14 +278,13 @@ void kobject_init(struct kobject *kobj, struct kobj_type *ktype)
>>   		goto error;
>>   	}
>>   	if (!ktype) {
>> -		err_str = "must have a ktype to be initialized properly!\n";
>> +		err_str = "must have a ktype to be initialized properly!";
>>   		goto error;
>>   	}
>>   	if (kobj->state_initialized) {
>> -		/* do not error out as sometimes we can recover */
>> -		printk(KERN_ERR "kobject (%p): tried to init an initialized "
>> -		       "object, something is seriously wrong.\n", kobj);
>> -		dump_stack();
>> +		err_str = "tried to init an initialized "
>> +			"object, something is seriously wrong.";
>> +		goto error;
> You were already told why this patch is incorrect, why are you resending
> it two more times?  That's a bit annoying and rude, don't you think?
>
> Sorry, I can't take this, please read the code you are modifying.
>
> greg k-h
>
Greg, sorry for the noise caused by wrong configuration of email client.
Let me change it according to the given suggestion and come up with a
new version against the patch if you agree.



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

end of thread, other threads:[~2012-07-18  4:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1342073375-27181-1-git-send-email-haodong@linux.vnet.ibm.com>
2012-07-17 16:40 ` [PATCH] Simplify the kobject_init function Greg KH
2012-07-18  4:46   ` don

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).