netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Baoquan He <baoquan.he@gmail.com>
To: Ding Tianhong <dingtianhong@huawei.com>
Cc: Hillf Danton <dhillf@gmail.com>,
	Cong Wang <xiyou.wangcong@gmail.com>,
	LKML <linux-kernel@vger.kernel.org>,
	Linux Kernel Network Developers <netdev@vger.kernel.org>
Subject: Re: 3.11-rc7:BUG: soft lockup
Date: Mon, 02 Sep 2013 20:09:02 +0800	[thread overview]
Message-ID: <52247FDE.80306@gmail.com> (raw)
In-Reply-To: <5224548C.8000603@huawei.com>

On 09/02/2013 05:04 PM, Ding Tianhong wrote:
> On 2013/9/2 16:24, Baoquan He wrote:
>> Hi Tianhong,
>>
>> I applied your patch and execute below cmd. 
>> Then keyboard inputting problems happened, 
>> I can't enter user/password correctly, then reboot again, it's OK now.
> Thanks for your work, I don't understand that the keyboard problem is the patch fault or your system problem, 
> if it is not happen again, I think the problem is fixed.

Yeah,  I will wait and see if it will happen again. Up to now, it's OK.

Thank you all for help.

Baoquan
Thanks

>
>> The original bug still can't be reproduced.
>>
>> make SUBDIRS=net/bridge/netfilter/
>> cp /net/bridge/netfilter/ebtables.ko
>> /lib/modules/3.11.0-rc7+/kernel/net/bridge/netfilter/ebtables.ko
>> depmod
>> modprobe ebtables.ko
>> reboot
>>
>> Baoquan
>> Thanks
>>
>>> please try this patch and give me the result, thanks.
>>>
>>> Return the correct value if mutex_lock_interruptible() failed, avoid
>>> confusion with that the modules is not exist, and deal with the return
>>> value in right way.
>>>
>>> if mutex_lock_interrupt() failed, sh
>>>
>>> Signed-off-by: root <root@linux-yocto.site>
>>> ---
>>>  net/bridge/netfilter/ebtables.c | 17 +++++++----------
>>>  1 file changed, 7 insertions(+), 10 deletions(-)
>>>
>>> diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c
>>> index ac78024..e7fe9f8 100644
>>> --- a/net/bridge/netfilter/ebtables.c
>>> +++ b/net/bridge/netfilter/ebtables.c
>>> @@ -322,17 +322,14 @@ static inline void *
>>>  find_inlist_lock_noload(struct list_head *head, const char *name, int *error,
>>>     struct mutex *mutex)
>>>  {
>>> -	struct {
>>> -		struct list_head list;
>>> -		char name[EBT_FUNCTION_MAXNAMELEN];
>>> -	} *e;
>>> +	struct ebt_table *e;
>>>  
>>>  	*error = mutex_lock_interruptible(mutex);
>>>  	if (*error != 0)
>>> -		return NULL;
>>> +		return ERR_PTR(-EINTR);
>>>  
>>>  	list_for_each_entry(e, head, list) {
>>> -		if (strcmp(e->name, name) == 0)
>>> +		 if (strcmp(e->name, name) == 0 && try_module_get(e->me))
>>>  			return e;
>>>  	}
>>>  	*error = -ENOENT;
>>> @@ -1005,7 +1002,7 @@ static int do_replace_finish(struct net *net, struct ebt_replace *repl,
>>>  		goto free_counterstmp;
>>>  
>>>  	t = find_table_lock(net, repl->name, &ret, &ebt_mutex);
>>> -	if (!t) {
>>> +	if (IS_ERR_OR_NULL(t)) {
>>>  		ret = -ENOENT;
>>>  		goto free_iterate;
>>>  	}
>>> @@ -1284,7 +1281,7 @@ static int do_update_counters(struct net *net, const char *name,
>>>  		return -ENOMEM;
>>>  
>>>  	t = find_table_lock(net, name, &ret, &ebt_mutex);
>>> -	if (!t)
>>> +	if (IS_ERR_OR_NULL(t))
>>>  		goto free_tmp;
>>>  
>>>  	if (num_counters != t->private->nentries) {
>>> @@ -1504,7 +1501,7 @@ static int do_ebt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
>>>  		return -EFAULT;
>>>  
>>>  	t = find_table_lock(net, tmp.name, &ret, &ebt_mutex);
>>> -	if (!t)
>>> +	if (IS_ERR_OR_NULL(t))
>>>  		return ret;
>>>  
>>>  	switch(cmd) {
>>> @@ -2319,7 +2316,7 @@ static int compat_do_ebt_get_ctl(struct sock *sk, int cmd,
>>>  		return -EFAULT;
>>>  
>>>  	t = find_table_lock(net, tmp.name, &ret, &ebt_mutex);
>>> -	if (!t)
>>> +	if (IS_ERR_OR_NULL(t))
>>>  		return ret;
>>>  
>>>  	xt_compat_lock(NFPROTO_BRIDGE);
>>
>> .
>>
>

      reply	other threads:[~2013-09-02 12:09 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <522055D7.70002@gmail.com>
2013-08-30 12:18 ` 3.11-rc7:BUG: soft lockup Cong Wang
2013-08-31  3:25   ` Hillf Danton
2013-09-02  6:06     ` Baoquan He
2013-09-02  6:57       ` Ding Tianhong
2013-09-02  7:44       ` Ding Tianhong
2013-09-02  8:24         ` Baoquan He
2013-09-02  9:04           ` Ding Tianhong
2013-09-02 12:09             ` Baoquan He [this message]

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=52247FDE.80306@gmail.com \
    --to=baoquan.he@gmail.com \
    --cc=dhillf@gmail.com \
    --cc=dingtianhong@huawei.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=xiyou.wangcong@gmail.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;
as well as URLs for NNTP newsgroup(s).