From mboxrd@z Thu Jan 1 00:00:00 1970 From: Petr Machata Subject: Re: [PATCH net-next] selftests: net: Test headroom handling of ip6_gre devices Date: Fri, 25 May 2018 12:05:38 +0300 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Cc: Linux Kernel Network Developers , linux-kselftest@vger.kernel.org, David Miller , Shuah Khan To: William Tu Return-path: Received: from mail-db5eur01on0056.outbound.protection.outlook.com ([104.47.2.56]:39025 "EHLO EUR01-DB5-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S965284AbeEYJGA (ORCPT ); Fri, 25 May 2018 05:06:00 -0400 In-Reply-To: (William Tu's message of "Thu, 24 May 2018 09:19:53 -0700") Sender: netdev-owner@vger.kernel.org List-ID: William Tu writes: >> +cleanup() >> +{ >> + ip link del dev swp1 >> + ip link del dev swp3 >> + ip link del dev vh3 > I think we also need to do: > ip link del dev gt6 gt6 is removed in test_headroom, but for early-break sort of scenarios I guess we do want to have it in cleanup() as well. With 2>/dev/null, because most of the time it will have been cleaned up already. I'll send a v2 like that. >> +test_headroom() >> +{ >> + ip link add name gt6 "$@" >> + ip link set dev gt6 up >> + >> + sleep 1 >> + >> + tc filter add dev swp1 ingress pref 1000 matchall skip_hw \ >> + action mirred egress mirror dev gt6 >> + ping -I h1 192.0.2.2 -c 1 -w 2 &> /dev/null > > I increase ping count from 1 to 1000 > and after a while the program hangs when I try to ctrl+c > + cleanup > + ip link del dev swp1 > dmesg shows: > .... > [ 1256.002453] unregister_netdevice: waiting for swp1 to become free. > Usage count = 9 > [ 1266.082571] unregister_netdevice: waiting for swp1 to become free. > Usage count = 9 > [ 1276.163011] unregister_netdevice: waiting for swp1 to become free. > Usage count = 9 Interesting. Looks like another bug, the headroom issue would panic after the first packet (and only after the first packet--increasing ping count doesn't make it more likely to reproduce, rerunning the whole script does). Thanks, Petr