From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D340926ED37 for ; Tue, 14 Apr 2026 00:00:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776124815; cv=none; b=Ju/4r9Yni6QWUZAmTKX73Q7TF6OrfJiuGv5AIwKHZ1plg1dvdglre2iwYcJTSTpUJ2gluHXBcyZ8d6JsDcZCSJ6Jramz2XFKTdmBYJ0Ap0o7O3JOh4rpCgorNePP9EmFoBHaw6OsrOqhHNhN0YDW1MhP1cN4uAYw/+YGlG2hhqs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776124815; c=relaxed/simple; bh=kFyfZfnVR+Envy0zTDLbT0E/ED/giUx0bH3sC01QXKc=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=IWQQujZf8IhpAijAQs3E5t89nz1gk1ZHM8VxCqPenugOm/Vpo2Sitb+XeSAaZ8dp+rJ1DM43wQDFcGg9nIvIQ6gyO/6KqW1JKhsSJoSrb/21TJMhxydEDsA4dK6H73R+tpFXLAFzHFVHdDhc65lahjfSTtcInZTIPMTLU2/Y3DI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=orzh+HD6; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="orzh+HD6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0E8EFC2BCAF; Tue, 14 Apr 2026 00:00:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776124815; bh=kFyfZfnVR+Envy0zTDLbT0E/ED/giUx0bH3sC01QXKc=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=orzh+HD6lCjaJfUqKUxyzLI+fi1YBeR0X0SPJTNCc3EobtcK0XaEH/6+QyNcC+jQG hhEwJxT4wm+kDp6aDPd7GJGnH1Qkiq8ducYC5CpFNqwllk7WT5BGcg1UsevRtasofh P4ghVBjbVT5+fWtOMIkrsIuvaeWdAbhujz9ATROLSZx5VfuNUPXtURX484kRPc0SZ5 JTwwGjJJZCKU7HWuXPAclqTvQyMzae7/dDiYZqqraO+ddxisGTKyF9FfheztKsZOU0 OAHiM0tvXmFo24LGuCMT9wneJYXlyFuhBaMffk4cCDsrKVKVgHHzVHppL0vp1weeAt 8iBLhHCtuAT9A== Date: Mon, 13 Apr 2026 17:00:14 -0700 From: Jakub Kicinski To: Antonio Quartulli Cc: netdev@vger.kernel.org, ralf@mandelbit.com, Sabrina Dubroca , Paolo Abeni , Andrew Lunn , "David S. Miller" , Eric Dumazet Subject: Re: [PATCH net-next 2/5] selftests: ovpn: fail notification check on mismatch Message-ID: <20260413170014.12316e9b@kernel.org> In-Reply-To: <20260412221121.410365-3-antonio@openvpn.net> References: <20260412221121.410365-1-antonio@openvpn.net> <20260412221121.410365-3-antonio@openvpn.net> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Mon, 13 Apr 2026 00:11:18 +0200 Antonio Quartulli wrote: > compare_ntfs doesn't fail when expected and received notification > streams diverge. > > Fix this bug by trackink the diff exit status explicitly and return it > to the caller so notification mismatches propagate as test failures. Hm, this series nicely cleans up test_mark.sh failures but test_tcp.sh now always fails on debug (slow) kernel builds with: # TAP version 13 # 1..12 # ok 1 setup network topology # ok 2 run baseline data traffic # ok 3 run LAN traffic behind peer1 # ok 4 run iperf throughput # ok 5 run key rollout # ok 6 query peers # ok 7 query missing peer fails # ok 8 peer lifecycle and key queries # ok 9 delete peer while traffic # ok 10 delete stale keys # ok 11 check timeout behavior # Checking notifications for peer 3... failed # 1,9d0 # < { # < "name": "peer-del-ntf", # < "msg": { # < "peer": { # < "del-reason": "expired", # < "id": 12 # < } # < } # < } # validate listener output for peer 3: command failed with rc=1: ovpn_compare_ntfs 3 # not ok 12 validate notification output # # Totals: pass:11 fail:1 xfail:0 xpass:0 skip:0 error:0 Similar failure in test_symmetric_id_tcp.sh Only the debug kernels tho, non-debug kernels seem to pass. So probably some race / slowness. More runs if you want to compare https://netdev.bots.linux.dev/contest.html?executor=vmksft-net-extra-dbg&test=test-tcp-sh This series landed in net-next-2026-04-13--06-00