All of lore.kernel.org
 help / color / mirror / Atom feed
From: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
To: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Cc: Dong Hao <haodong@linux.vnet.ibm.com>,
	gregkh@linuxfoundation.org, shangw@linux.vnet.ibm.com,
	weiyang@linux.vnet.ibm.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/3] lib/kobject: WARN_ON corresponds to BUG_ON
Date: Tue, 19 Mar 2013 15:05:23 +0800	[thread overview]
Message-ID: <51480E33.7030708@linux.vnet.ibm.com> (raw)
In-Reply-To: <51480DA7.7000403@linux.vnet.ibm.com>

On 03/19/2013 03:03 PM, Xiao Guangrong wrote:
> On 03/19/2013 02:47 PM, Dong Hao wrote:
>> From: Dong Hao <haodong@linux.vnet.ibm.com>
>>
>> WARN_ON corresponds to BUG_ON and also gets more info.
> 
> Change the log like this:
> like the comments said, double initialize a kobj is wrong
> but can be recoverd, using WARN_ON to warn the developer also
> it can get more info.
> 
> (Or you refine the code by yourself.)

s/code/comment

> 
>>
>> Signed-off-by: Dong Hao <haodong@linux.vnet.ibm.com>
>> ---
>>  lib/kobject.c |    2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/lib/kobject.c b/lib/kobject.c
>> index ff9b3c3..f7d9f31 100644
>> --- a/lib/kobject.c
>> +++ b/lib/kobject.c
>> @@ -281,7 +281,7 @@ void kobject_init(struct kobject *kobj, struct kobj_type *ktype)
>>  		/* 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();
>> +		WARN_ON(1);
>>  	}
>>
>>  	kobject_init_internal(kobj);
>>
> 


  reply	other threads:[~2013-03-19  7:05 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-19  6:46 [PATCH 1/3] lib/kobject: simplify the kobject_init function Dong Hao
2013-03-19  6:47 ` [PATCH 2/3] lib/kobject: Panic when kobj or ktype is not properly assigned Dong Hao
2013-03-19  6:58   ` Xiao Guangrong
2013-03-19 13:29   ` Greg KH
2013-03-19  6:47 ` [PATCH 3/3] lib/kobject: WARN_ON corresponds to BUG_ON Dong Hao
2013-03-19  7:03   ` Xiao Guangrong
2013-03-19  7:05     ` Xiao Guangrong [this message]
2013-03-19 13:31   ` Greg KH
2013-03-19 13:31 ` [PATCH 1/3] lib/kobject: simplify the kobject_init function Greg KH

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=51480E33.7030708@linux.vnet.ibm.com \
    --to=xiaoguangrong@linux.vnet.ibm.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=haodong@linux.vnet.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=shangw@linux.vnet.ibm.com \
    --cc=weiyang@linux.vnet.ibm.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.