From patchwork Mon Jun 18 21:35:54 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 41234 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7A38B2C37; Mon, 18 Jun 2018 23:36:02 +0200 (CEST) Received: from mail-pl0-f50.google.com (mail-pl0-f50.google.com [209.85.160.50]) by dpdk.org (Postfix) with ESMTP id 57E592C0C for ; Mon, 18 Jun 2018 23:36:00 +0200 (CEST) Received: by mail-pl0-f50.google.com with SMTP id t12-v6so9727719plo.7 for ; Mon, 18 Jun 2018 14:36:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=+YMaSnCW2Agvsfgb2kvagSf78Lrl/k4g1XA2ybrponI=; b=0QRwfrITWEI/afYXTUMiVP7XyoeOTPNRSejoTZ5iw+niDSRT1NrUoHGEdUlyK4WFWp saCpK+daqiJ/4XDFR4Ej7EbJ29CbnF0B29/bcJiRDxISnGYcBVcVZ/GMNczi8eYJxqxo 8mxw8hiDu2sDK2KtgTTDm98CfLJd+L4rkAHY94NYPctlbWkjiSkD38dHN/CGER7Yq6Tl FFPMgfqN+gxt09YnUPewLoS+aH0KjxpxOya5sHsbFC0uNbsEhttKuXX700wXLU0tr/Ux 6iiF3/WT72JuD8tqzuVpYt3YH41BtglcPcER1D8ntp4W3JGmP6ldvQw2eXhH+3WomvV2 4J7Q== 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=+YMaSnCW2Agvsfgb2kvagSf78Lrl/k4g1XA2ybrponI=; b=SSkzuYDw0AjNjJGVnlPmzrDCCFt2Lq92zXJeqOWG4I0KUr/Bjp+FFCoJB1FDfo+5DF NgzJIGdY1kc0sv7alawJNrCHSDTFZ+90LI8rI9kiC3DpHccj6hh4nJyp/IRX09iF1M6u RBWJmKcVTTEfztgJTuukRoc3NLBs+gEnjnhBx9l2JuFtrRhEaH/vICezi/vwHAGWJi9w 6E/n6ROG/ulBHzdM0ZmIJBqTr3sVy4aOzxXwnPBu+dhV6GBIpyYt0hhYYrYOn2TOhmQ1 0pU9uNAZfQs8CyygruPvv4bGm/D+h8eqFZXHk3fqFNEkdTWboQTQsASJOlo7IUqfy5O7 k3Hw== X-Gm-Message-State: APt69E0E2gBoOGJwoY+ni+4YXi1wq878eFxpUWnjGI/cOuF0A50LIhoY 6ynm5TL3sbYBqay+4vvwbQxXRTG9QOg= X-Google-Smtp-Source: ADUXVKLET7vsEHs+JqWSQoBCFSDoMgSTF+yqWqaXU3a4+eoz1b10Iv8Me0/O0SW3SuACxHSOsyBdCw== X-Received: by 2002:a17:902:57d8:: with SMTP id g24-v6mr15856342plj.116.1529357759131; Mon, 18 Jun 2018 14:35:59 -0700 (PDT) Received: from xeon-e3.lan (204-195-35-107.wavecable.com. [204.195.35.107]) by smtp.gmail.com with ESMTPSA id n70-v6sm34246969pfh.140.2018.06.18.14.35.58 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 18 Jun 2018 14:35:58 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Mon, 18 Jun 2018 14:35:54 -0700 Message-Id: <20180618213557.15209-1-stephen@networkplumber.org> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH v3 0/3] use RFC addresses for testing X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" These patches get rid of the custom addresses used in testpmd and l3fwd, and instead uses values that are in the existing RFC's. Stephen Hemminger (3): testpmd: add ability to set tx IP and UDP parameters examples/l3fwd: use reserved IPv4/IPv6 addresses examples/l3fwd: format the IP addresses for printing app/test-pmd/parameters.c | 49 +++++++++++++++++++++++++++ app/test-pmd/testpmd.h | 6 ++++ app/test-pmd/txonly.c | 18 +++++----- doc/guides/testpmd_app_ug/run_app.rst | 9 +++++ examples/l3fwd/l3fwd_lpm.c | 49 +++++++++++++++------------ 5 files changed, 102 insertions(+), 29 deletions(-)