From patchwork Thu Sep 3 08:28:12 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: 1356426 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bhv965kXTz9sTS; Thu, 3 Sep 2020 18:28:57 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1kDkby-0002dg-IC; Thu, 03 Sep 2020 08:28:50 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1kDkbx-0002dT-0K for kernel-team@lists.ubuntu.com; Thu, 03 Sep 2020 08:28:49 +0000 Received: from mail-pg1-f198.google.com ([209.85.215.198]) by youngberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1kDkbw-0002ec-K7 for kernel-team@lists.ubuntu.com; Thu, 03 Sep 2020 08:28:48 +0000 Received: by mail-pg1-f198.google.com with SMTP id n32so1345085pgb.22 for ; Thu, 03 Sep 2020 01:28:48 -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:subject:date:message-id:mime-version :content-transfer-encoding; bh=/hvLsGns1eb1+yuwshvXk38dKktEmDN3TF46aFFvmmQ=; b=qF0jTR9fGgsOBbK9UPiOp6v35Xxpgk9oHfrVm6G0x/ygP1iTBakBDO726uCknz2QbA l6gxKk37/M2WY3sZ/ltu8xRGMhGQ6SB88flkGaJgr61jJ2BLntz4NlGN24DVVvlobDmG 5xNPNDkwAKdKwBdYKATXc0kSKNBnADHB4ulnwSH47LiyAmhNrN7game1y5bFutQ162yN nuVa55FxVOuVcnt4mA7iLXXPvjDYhQnV1i33maLeQvw7FW86nc48+K1ev9BFgx1WzczW M1+NOtRcgP6KnF0+V1sIZfdKwP5HN8mcAmFqaOecB0Ns1R1z/txnryXwZsvfgxMAiWvg vgdQ== X-Gm-Message-State: AOAM531/APEhbPq/iDrUQM6FiJQE2bT53QuKQhMzvKSfecijnjMonNs3 QIb7Cp7rcFK/kAs0dS8APARdnDVO+UfkjCeXj1mgW10Gb0OJQgkvBq69z6Q01XkwsjiWebdZliZ 6PG+Lyn0aYH7WMcYksdzsV4xzrSYZf5ArVTvHwpyQ X-Received: by 2002:a17:90a:7f8a:: with SMTP id m10mr2303573pjl.47.1599121726916; Thu, 03 Sep 2020 01:28:46 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyqjo+SNw850lCx6YEfol5etNpUQAx4Pkk3YrkVkjj3EyMILs5BLSlPP1f7/MQLsks9aJ5fMA== X-Received: by 2002:a17:90a:7f8a:: with SMTP id m10mr2303553pjl.47.1599121726459; Thu, 03 Sep 2020 01:28:46 -0700 (PDT) Received: from localhost.localdomain (223-137-95-60.emome-ip.hinet.net. [223.137.95.60]) by smtp.gmail.com with ESMTPSA id k20sm2180847pfu.197.2020.09.03.01.28.44 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 03 Sep 2020 01:28:45 -0700 (PDT) From: Po-Hsu Lin To: kernel-team@lists.ubuntu.com Subject: [G][SRU][PATCH 0/1] Remove duplicated code in ip_defrag.sh of kselftests/net Date: Thu, 3 Sep 2020 16:28:12 +0800 Message-Id: <20200903082813.25646-1-po-hsu.lin@canonical.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" BugLink: https://bugs.launchpad.net/bugs/1894062 == SRU Justification == In Groovy, patch 6c6ab1256 "UBUNTU: SAUCE: selftests: net: ip_defrag: modprobe missing nf_defrag_ipv6 support" has been applied again with commit aba69d49 Therefore there are two lines with: modprobe -q nf_defrag_ipv6 == Fix == Revert the SAUCE patch can correct this, and it can make our code matches with the one upstream. == Regression Potential == Low, change limited to testing tools and it's only removing the duplicated code. Po-Hsu Lin (1): Revert "UBUNTU: SAUCE: selftests: net: ip_defrag: modprobe missing nf_defrag_ipv6 support" tools/testing/selftests/net/ip_defrag.sh | 2 -- 1 file changed, 2 deletions(-) Acked-by: Paolo Pisati