All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
To: Cong Wang <xiyou.wangcong@gmail.com>, netdev@vger.kernel.org
Subject: Re: [Patch net-next] vxlan: do not exit on error in vxlan_stop()
Date: Wed, 08 Apr 2015 20:03:09 -0300	[thread overview]
Message-ID: <5525B3AD.4040300@gmail.com> (raw)
In-Reply-To: <1428529710-19798-1-git-send-email-xiyou.wangcong@gmail.com>

On 04/08/15 18:48, Cong Wang wrote:
> We need to clean up vxlan despite vxlan_igmp_leave() fails.
>
> This fixes the following kernel warning:
>
>   WARNING: CPU: 0 PID: 6 at lib/debugobjects.c:263 debug_print_object+0x7c/0x8d()
>   ODEBUG: free active (active state 0) object type: timer_list hint: vxlan_cleanup+0x0/0xd0
>   CPU: 0 PID: 6 Comm: kworker/u8:0 Not tainted 4.0.0-rc7+ #953
>   Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
>   Workqueue: netns cleanup_net
>    0000000000000009 ffff88011955f948 ffffffff81a25f5a 00000000253f253e
>    ffff88011955f998 ffff88011955f988 ffffffff8107608e 0000000000000000
>    ffffffff814deba2 ffff8800d4e94000 ffffffff82254c30 ffffffff81fbe455
>   Call Trace:
>    [<ffffffff81a25f5a>] dump_stack+0x4c/0x65
>    [<ffffffff8107608e>] warn_slowpath_common+0x9c/0xb6
>    [<ffffffff814deba2>] ? debug_print_object+0x7c/0x8d
>    [<ffffffff81076116>] warn_slowpath_fmt+0x46/0x48
>    [<ffffffff814deba2>] debug_print_object+0x7c/0x8d
>    [<ffffffff81666bf1>] ? vxlan_fdb_destroy+0x5b/0x5b
>    [<ffffffff814dee02>] __debug_check_no_obj_freed+0xc3/0x15f
>    [<ffffffff814df728>] debug_check_no_obj_freed+0x12/0x16
>    [<ffffffff8117ae4e>] slab_free_hook+0x64/0x6c
>    [<ffffffff8114deaa>] ? kvfree+0x31/0x33
>    [<ffffffff8117dc66>] kfree+0x101/0x1ac
>    [<ffffffff8114deaa>] kvfree+0x31/0x33
>    [<ffffffff817d4137>] netdev_freemem+0x18/0x1a
>    [<ffffffff817e8b52>] netdev_release+0x2e/0x32
>    [<ffffffff815b4163>] device_release+0x5a/0x92
>    [<ffffffff814bd4dd>] kobject_cleanup+0x49/0x5e
>    [<ffffffff814bd3ff>] kobject_put+0x45/0x49
>    [<ffffffff817d3fc1>] netdev_run_todo+0x26f/0x283
>    [<ffffffff817d4873>] ? rollback_registered_many+0x20f/0x23b
>    [<ffffffff817e0c80>] rtnl_unlock+0xe/0x10
>    [<ffffffff817d4af0>] default_device_exit_batch+0x12a/0x139
>    [<ffffffff810aadfa>] ? wait_woken+0x8f/0x8f
>    [<ffffffff817c8e14>] ops_exit_list+0x2b/0x57
>    [<ffffffff817c9b21>] cleanup_net+0x154/0x1e7
>    [<ffffffff8108b05d>] process_one_work+0x255/0x4ad
>    [<ffffffff8108af69>] ? process_one_work+0x161/0x4ad
>    [<ffffffff8108b4b1>] worker_thread+0x1cd/0x2ab
>    [<ffffffff8108b2e4>] ? process_scheduled_works+0x2f/0x2f
>    [<ffffffff81090686>] kthread+0xd4/0xdc
>    [<ffffffff8109eca3>] ? local_clock+0x19/0x22
>    [<ffffffff810905b2>] ? __kthread_parkme+0x83/0x83
>    [<ffffffff81a31c48>] ret_from_fork+0x58/0x90
>    [<ffffffff810905b2>] ? __kthread_parkme+0x83/0x83
>
> For the long-term, we should handle NETDEV_{UP,DOWN} event
> from the lower device of a tunnel device.
>
> Fixes: 56ef9c909b40 ("vxlan: Move socket initialization to within rtnl scope")
> Cc: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
> ---
>   drivers/net/vxlan.c | 5 +----
>   1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
> index 682838b..577c9b0 100644
> --- a/drivers/net/vxlan.c
> +++ b/drivers/net/vxlan.c
> @@ -2256,11 +2256,8 @@ static int vxlan_stop(struct net_device *dev)
>   	int ret = 0;
>
>   	if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
> -	    !vxlan_group_used(vn, vxlan)) {
> +	    !vxlan_group_used(vn, vxlan))
>   		ret = vxlan_igmp_leave(vxlan);
> -		if (ret)
> -			return ret;
> -	}
>
>   	del_timer_sync(&vxlan->age_timer);
>
>

We could remove ret handling entirely, as nobody will check for that 
return value anyway. A pity, but..

Anyway, I'm good with the change as is. Thanks Cong.

Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>

   Marcelo

  reply	other threads:[~2015-04-08 23:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-08 21:48 [Patch net-next] vxlan: do not exit on error in vxlan_stop() Cong Wang
2015-04-08 23:03 ` Marcelo Ricardo Leitner [this message]
2015-04-09  2:48 ` David Miller

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=5525B3AD.4040300@gmail.com \
    --to=marcelo.leitner@gmail.com \
    --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 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.