From patchwork Mon Sep 7 03:50:10 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Po-Hsu Lin X-Patchwork-Id: 1358552 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BlDnz4qbYz9sTR for ; Mon, 7 Sep 2020 13:50:31 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726567AbgIGDuZ (ORCPT ); Sun, 6 Sep 2020 23:50:25 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:49299 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726278AbgIGDuX (ORCPT ); Sun, 6 Sep 2020 23:50:23 -0400 Received: from mail-pf1-f200.google.com ([209.85.210.200]) by youngberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1kF8Ae-0005v3-A7 for netdev@vger.kernel.org; Mon, 07 Sep 2020 03:50:20 +0000 Received: by mail-pf1-f200.google.com with SMTP id o184so7732026pfb.12 for ; Sun, 06 Sep 2020 20:50:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=3g3V+QNt3GCtg2Hc+UJaZtxoWISK1rJHJzXJXHO3wbk=; b=VwGsXTRE8XWOc2KUEMOJUnsmC4vNW6uektgiexcKkvDGo7MPyWxC9DC7GdQWDBcIeW I/cJvNm0peL+JbrhoVJSk4Fk74wfRN07f7clpcUZ1B+ZQ7E3bfWMNgFmaCOgxVDbTXU4 T2qLgVSnGc8X/U3eXh3UOWhtIdUGkW4T3OYoV3mBQluoosK1ZVa4u5w7RVMV3IzDhjul crqTszSqN2uiluypzRrRxwZ5DEenquAkIeMRjCNezNbO2mrgZYyAChJFKGyHvqLkBXJP y9eMIubgKu1FMYm8jcy7gJkSjXKw4KRUCw8nv+yXoNlnJPAshTvCunxJuQUgSntSS3Cf k0vg== X-Gm-Message-State: AOAM53123cnFM9fLaGttkVcNxo9iRYNt/LHSFItPborz8N69ubzmQ91p Y0izY0pGD59SCbQCWo2Nj3OB7lJqk1YKIGc0qUV005dcVxmDNBqwiNIb6YXxNBSWj3t1u9sMTV6 f2SymhVaeoFeScU7iyfLJ72sW2PDSsMq6 X-Received: by 2002:aa7:8b02:: with SMTP id f2mr17326306pfd.59.1599450618942; Sun, 06 Sep 2020 20:50:18 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwiw6zva7WG2JalWfZO5CnnUA49jrjPIHrcrSaL3UTwr1qmqpBYYx79C1OGaVQ4e1GVoN+a1g== X-Received: by 2002:aa7:8b02:: with SMTP id f2mr17326293pfd.59.1599450618608; Sun, 06 Sep 2020 20:50:18 -0700 (PDT) Received: from Leggiero.taipei.internal (61-220-137-37.HINET-IP.hinet.net. [61.220.137.37]) by smtp.gmail.com with ESMTPSA id e1sm10828706pjv.17.2020.09.06.20.50.16 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 06 Sep 2020 20:50:17 -0700 (PDT) From: Po-Hsu Lin To: davem@davemloft.net, kuba@kernel.org, skhan@linuxfoundation.org Cc: po-hsu.lin@canonical.com, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: [PATCHv3] selftests: rtnetlink: load fou module for kci_test_encap_fou() test Date: Mon, 7 Sep 2020 11:50:10 +0800 Message-Id: <20200907035010.9154-1-po-hsu.lin@canonical.com> X-Mailer: git-send-email 2.17.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org The kci_test_encap_fou() test from kci_test_encap() in rtnetlink.sh needs the fou module to work. Otherwise it will fail with: $ ip netns exec "$testns" ip fou add port 7777 ipproto 47 RTNETLINK answers: No such file or directory Error talking to the kernel Add the CONFIG_NET_FOU into the config file as well. Which needs at least to be set as a loadable module. Signed-off-by: Po-Hsu Lin --- tools/testing/selftests/net/config | 1 + tools/testing/selftests/net/rtnetlink.sh | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/tools/testing/selftests/net/config b/tools/testing/selftests/net/config index 3b42c06b..c5e50ab 100644 --- a/tools/testing/selftests/net/config +++ b/tools/testing/selftests/net/config @@ -31,3 +31,4 @@ CONFIG_NET_SCH_ETF=m CONFIG_NET_SCH_NETEM=y CONFIG_TEST_BLACKHOLE_DEV=m CONFIG_KALLSYMS=y +CONFIG_NET_FOU=m diff --git a/tools/testing/selftests/net/rtnetlink.sh b/tools/testing/selftests/net/rtnetlink.sh index 7c38a90..a711b3e 100755 --- a/tools/testing/selftests/net/rtnetlink.sh +++ b/tools/testing/selftests/net/rtnetlink.sh @@ -520,6 +520,11 @@ kci_test_encap_fou() return $ksft_skip fi + if ! /sbin/modprobe -q -n fou; then + echo "SKIP: module fou is not found" + return $ksft_skip + fi + /sbin/modprobe -q fou ip -netns "$testns" fou add port 7777 ipproto 47 2>/dev/null if [ $? -ne 0 ];then echo "FAIL: can't add fou port 7777, skipping test" @@ -540,6 +545,7 @@ kci_test_encap_fou() return 1 fi + /sbin/modprobe -q -r fou echo "PASS: fou" }