From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f65.google.com (mail-wr1-f65.google.com [209.85.221.65]) by dpdk.org (Postfix) with ESMTP id 579BC1B44C for ; Mon, 11 Feb 2019 20:02:50 +0100 (CET) Received: by mail-wr1-f65.google.com with SMTP id q18so5937554wrx.9 for ; Mon, 11 Feb 2019 11:02:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=8nVf8SupamxY+W9QE0XBj7gE8lBQL/y/Q9TG5Bhou9A=; b=PC0Za+9sd8zVzZ21bbPCcEG6LHRfRajGh9R1lTTU0zVfC7Ly3bQQ7t2X90ZQ8XFb3L 1dJpmQHUoffy+hsn2bCdRVK784fBfupV5suebR8OKFvwItMoC82opOngerPQJqsfqTzG 2VBn2q7iqiNCxmvU2nYuJirtyNDxPoFql413cGrw8Sa+vrp1kFBUSCgQ/iitXn1yGST8 mTohYTzRzseZ6/UVZuNq3fsJXeTF232PATpA0ffq46K8eYewj5tG2gA/pqWTlrskDk70 IMovEGwPW0H4uKabXmFQuD/bxBqvLF5vV4kSO7S+ROPPH5TDvCxno0/Dz1JlfIRn5duR 6BVg== 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:mime-version :content-transfer-encoding; bh=8nVf8SupamxY+W9QE0XBj7gE8lBQL/y/Q9TG5Bhou9A=; b=BZTd9CsBFmVuwnsXX7aJMDbjYEjIKxgQggeKa6oS31CwxqxEdA96h//NXezbHlSxHc N+Bl1Bi39e+BVAAMSOxNjI9z1Ugew11Y+CizzZFA+stlNlC5ZspY94N3UH3+KRjdl87Z FDsAC0/VXEiUiCnEl4tjao3ytOS4rKz8OQ6TH37uw5nc/+flHhvsq7JMH7HxRhipjKnH tpML/pxd/HgIHQ22dW4FkcEDzqriZtQ2fmNrsPfiCFEr3zzzcj8KC1oWP4pE6tjFYRue vHHGynBaExFwXkvCB1HIYd1cQHcwjY23KHCeA0asVUMO4mt0eF4xIYx+V9jgtBls/pp1 7WFA== X-Gm-Message-State: AHQUAuZ24/FwgdR5wEHbYjmWEOpUx1DhpgwPW1kiAwcmRyZRZhbPGfRB rVEmGWLVYqqZuYBS02IfVmsaLDze6j4= X-Google-Smtp-Source: AHgI3IZI/xnm4PcaVEP2SL1oLcifBoWhmNPoAoNEyNwfeoVGwKk+ZnoHFkizXaYsONSnCunrvK8TEA== X-Received: by 2002:adf:f28d:: with SMTP id k13mr29717523wro.78.1549911769744; Mon, 11 Feb 2019 11:02:49 -0800 (PST) Received: from localhost.localdomain (bzq-109-66-107-92.red.bezeqint.net. [109.66.107.92]) by smtp.gmail.com with ESMTPSA id y22sm30737666wrd.45.2019.02.11.11.02.48 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 11 Feb 2019 11:02:49 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Mon, 11 Feb 2019 21:02:43 +0200 Message-Id: <20190211190243.13553-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] test_plan: fix DPDK project name X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Feb 2019 19:02:50 -0000 The DPDK project moved to the Linux Foundation quite a time ago. https://www.linuxfoundation.org/Projects/dpdk/ This patch removes usage of "Intel DPDK" from several test plans. Signed-off-by: Rami Rosen --- test_plans/multiprocess_test_plan.rst | 4 ++-- test_plans/stability_test_plan.rst | 4 ++-- test_plans/unit_tests_eal_test_plan.rst | 2 +- test_plans/vmdq_test_plan.rst | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test_plans/multiprocess_test_plan.rst b/test_plans/multiprocess_test_plan.rst index 8598048..89abe6c 100644 --- a/test_plans/multiprocess_test_plan.rst +++ b/test_plans/multiprocess_test_plan.rst @@ -42,7 +42,7 @@ Description ----------- This test is a basic multi-process test which demonstrates the basics of sharing -information between Intel DPDK processes. The same application binary is run +information between DPDK processes. The same application binary is run twice - once as a primary instance, and once as a secondary instance. Messages are sent from primary to secondary and vice versa, demonstrating the processes are sharing memory and can communicate using rte_ring structures. @@ -58,7 +58,7 @@ to the device under test:: modprobe vfio-pci usertools/dpdk-devbind.py --bind=vfio-pci device_bus_id -Assuming that an Intel DPDK build has been set up and the multi-process sample +Assuming that a DPDK build has been set up and the multi-process sample applications have been built. Test Case: Basic operation diff --git a/test_plans/stability_test_plan.rst b/test_plans/stability_test_plan.rst index 578f99e..c051954 100644 --- a/test_plans/stability_test_plan.rst +++ b/test_plans/stability_test_plan.rst @@ -78,7 +78,7 @@ Test Case: Mix of different NIC types Check that a mix of different NIC types is supported. The system should recognize all the NICs that are part of the system and are supported by the -Intel DPDK PMD. Check that ports from NICs of different type can send and +DPDK PMD. Check that ports from NICs of different type can send and receive traffic at the same time. Recommended test configuration: testpmd application using a single logical core @@ -88,7 +88,7 @@ two 10GbE ports (e.g. Intel 82599 NIC). Test Case: Coexistence of kernel space drivers with Poll Mode Drivers ===================================================================== -Verify that Intel DPDK PMD running in user space can work with the kernel +Verify that DPDK PMD running in user space can work with the kernel space space NIC drivers. Recommended test configuration: testpmd application using a single logical core diff --git a/test_plans/unit_tests_eal_test_plan.rst b/test_plans/unit_tests_eal_test_plan.rst index 33b0f14..7b2cf62 100644 --- a/test_plans/unit_tests_eal_test_plan.rst +++ b/test_plans/unit_tests_eal_test_plan.rst @@ -286,7 +286,7 @@ Interrupts Multiprocess ============ -Validates that a secondary Intel DPDK instance can be run alongside a primary when the appropriate EAL command-line flags are passed. Also validates that secondary processes cannot interfere with primary processes by creating memory objects, such as mempools or rings. +Validates that a secondary DPDK instance can be run alongside a primary when the appropriate EAL command-line flags are passed. Also validates that secondary processes cannot interfere with primary processes by creating memory objects, such as mempools or rings. String ====== diff --git a/test_plans/vmdq_test_plan.rst b/test_plans/vmdq_test_plan.rst index f261f5f..1f19e6f 100644 --- a/test_plans/vmdq_test_plan.rst +++ b/test_plans/vmdq_test_plan.rst @@ -48,7 +48,7 @@ The feature itself works by: user priority field within the VLAN tag and MAC address. The VMDQ features are enabled in the ``vmdq`` example application -contained in the Intel DPDK, and this application should be used to validate +contained in the DPDK, and this application should be used to validate the feature. Prerequisites @@ -56,7 +56,7 @@ Prerequisites - All tests assume a linuxapp setup. - The port ids of the two 10G or 40G ports to be used for the testing are specified in the commandline. it use a portmask. -- The Intel DPDK is compiled for the appropriate target type in each case, and +- The DPDK is compiled for the appropriate target type in each case, and the VMDQ example application is compiled and linked with that DPDK instance - Two ports are connected to the test system, one to be used for packet -- 2.19.2