From patchwork Sun Feb 28 21:17:38 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bill Fischofer X-Patchwork-Id: 63164 Delivered-To: patch@linaro.org Received: by 10.112.199.169 with SMTP id jl9csp927443lbc; Sun, 28 Feb 2016 13:26:43 -0800 (PST) X-Received: by 10.55.75.77 with SMTP id y74mr15007541qka.19.1456694356690; Sun, 28 Feb 2016 13:19:16 -0800 (PST) Return-Path: Received: from lists.linaro.org (lists.linaro.org. [54.225.227.206]) by mx.google.com with ESMTP id u124si23297589qka.69.2016.02.28.13.19.16; Sun, 28 Feb 2016 13:19:16 -0800 (PST) Received-SPF: pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) client-ip=54.225.227.206; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) smtp.mailfrom=lng-odp-bounces@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id 4F9F0617E5; Sun, 28 Feb 2016 21:19:13 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by lists.linaro.org (Postfix) with ESMTP id 57D296178E; Sun, 28 Feb 2016 21:19:13 +0000 (UTC) X-Original-To: lng-odp@lists.linaro.org Delivered-To: lng-odp@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id EC44A6178E; Sun, 28 Feb 2016 21:17:45 +0000 (UTC) Received: from mail-ob0-f173.google.com (mail-ob0-f173.google.com [209.85.214.173]) by lists.linaro.org (Postfix) with ESMTPS id 8951161759 for ; Sun, 28 Feb 2016 21:17:45 +0000 (UTC) Received: by mail-ob0-f173.google.com with SMTP id ts10so119141492obc.1 for ; Sun, 28 Feb 2016 13:17:45 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=QnI+q8MnXvyhnwIlNw7JZjk8TfrN+umXhb05rDbaAfc=; b=cPFD6DA/BqGl2kaS2l9hJfJ29JiTSbtAwp+x1/7D7btieRdT69gW652TfaoZafbWvq +OkdGjTzjmj1mGSv9TvUn1u+UW04PZRGPhybljPNraFQEKFchQXY9cHpVevRhyVmxx88 ScIWJASvxHHz46zPIVCv1z4o9kfCjNeozW9QIeLJtAIs5MUsFYJKEqPygKCwQ0fhdV0x UTsgwb1UxyWB99VljodV43YRWp4CUS4KQGLYhUvBGGdnU/j33M1kpSDgnjALdWW6YLOi Hw/zcK57+rRXDps1t/Ti2M/58rPFgglpwrKuXUtbyOzQziwdWE7sW6NeKJKUnn7ivOsl S6aQ== X-Gm-Message-State: AD7BkJIXswljbkrU41SZSKtInMG7UKid/Bg81GTWj5ki/z2ga40K2nWWzZqoZJ8GZ9rMW5t3CnE= X-Received: by 10.182.120.162 with SMTP id ld2mr9822026obb.66.1456694265058; Sun, 28 Feb 2016 13:17:45 -0800 (PST) Received: from Ubuntu15.localdomain (cpe-66-68-129-43.austin.res.rr.com. [66.68.129.43]) by smtp.gmail.com with ESMTPSA id y128sm15688222oie.10.2016.02.28.13.17.43 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 28 Feb 2016 13:17:43 -0800 (PST) From: Bill Fischofer To: lng-odp@lists.linaro.org Date: Sun, 28 Feb 2016 15:17:38 -0600 Message-Id: <1456694259-30225-2-git-send-email-bill.fischofer@linaro.org> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1456694259-30225-1-git-send-email-bill.fischofer@linaro.org> References: <1456694259-30225-1-git-send-email-bill.fischofer@linaro.org> X-Topics: patch Subject: [lng-odp] [API-NEXT PATCH 2/3] doc: images: add additional svg images used for PktIO chapter X-BeenThere: lng-odp@lists.linaro.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "The OpenDataPlane \(ODP\) List" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: lng-odp-bounces@lists.linaro.org Sender: "lng-odp" Signed-off-by: Bill Fischofer --- doc/images/pktin_direct_recv.svg | 69 +++++++++++++++++++++++++++++++++++++++ doc/images/pktin_queue_recv.svg | 4 +++ doc/images/pktin_sched_cls.svg | 4 +++ doc/images/pktin_sched_recv.svg | 4 +++ doc/images/pktout_direct_send.svg | 4 +++ doc/images/pktout_queue_send.svg | 4 +++ 6 files changed, 89 insertions(+) create mode 100644 doc/images/pktin_direct_recv.svg create mode 100644 doc/images/pktin_queue_recv.svg create mode 100644 doc/images/pktin_sched_cls.svg create mode 100644 doc/images/pktin_sched_recv.svg create mode 100644 doc/images/pktout_direct_send.svg create mode 100644 doc/images/pktout_queue_send.svg diff --git a/doc/images/pktin_direct_recv.svg b/doc/images/pktin_direct_recv.svg new file mode 100644 index 0000000..af495d7 --- /dev/null +++ b/doc/images/pktin_direct_recv.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/images/pktin_queue_recv.svg b/doc/images/pktin_queue_recv.svg new file mode 100644 index 0000000..d31715e --- /dev/null +++ b/doc/images/pktin_queue_recv.svg @@ -0,0 +1,4 @@ + + + + diff --git a/doc/images/pktin_sched_cls.svg b/doc/images/pktin_sched_cls.svg new file mode 100644 index 0000000..c35dd55 --- /dev/null +++ b/doc/images/pktin_sched_cls.svg @@ -0,0 +1,4 @@ + + + + diff --git a/doc/images/pktin_sched_recv.svg b/doc/images/pktin_sched_recv.svg new file mode 100644 index 0000000..4736e2f --- /dev/null +++ b/doc/images/pktin_sched_recv.svg @@ -0,0 +1,4 @@ + + + + diff --git a/doc/images/pktout_direct_send.svg b/doc/images/pktout_direct_send.svg new file mode 100644 index 0000000..d4e68b3 --- /dev/null +++ b/doc/images/pktout_direct_send.svg @@ -0,0 +1,4 @@ + + + + diff --git a/doc/images/pktout_queue_send.svg b/doc/images/pktout_queue_send.svg new file mode 100644 index 0000000..bf9c5ee --- /dev/null +++ b/doc/images/pktout_queue_send.svg @@ -0,0 +1,4 @@ + + + +