From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qg0-f42.google.com (mail-qg0-f42.google.com [209.85.192.42]) by dpdk.org (Postfix) with ESMTP id BAE932716; Mon, 7 Mar 2016 21:46:27 +0100 (CET) Received: by mail-qg0-f42.google.com with SMTP id w104so106928371qge.1; Mon, 07 Mar 2016 12:46:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=BuG4MtDdHEau2XHWDHFIDYxffGcfopfY3OLnKIXx4lo=; b=isCUuPoVPD5jyv+Ja7KGCpnS7PBu5xt0dXo2TOSmDulnuy257+tOnTGWJQI9Aqkd9A rPVVVPuZPBciGFT6OZKlQhYQjkBxajNObynqd2kZ/z4IXS3QXLSn9xd9IYKdmGNNgddH /G8M4ldey7vbddysOvKV1VPgcd2GqqVAF0OAAzzWEG2Ae/syfoZbbRLcTs/Ypd/Qisjo tNYAGzVMwOL1kol+uAUAeQO/RKHOfGIyswrvtLPN0097iYsyjLgOcj5kohQKgGURjfPN c44vhc3u1BCa88nnYqJfJIKLltkC7CzLu5nfcJUI5A3e9ZiwzXqtovoOz5Lk1oO0Ke8m iIaQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=BuG4MtDdHEau2XHWDHFIDYxffGcfopfY3OLnKIXx4lo=; b=LvPDMWc9YME1TnMhthIA4qSvxRJOGO1RGNC5A7plHt5uaDZjLtkM8Ec5oPGzfgM4fy 6GZPNnixv0hijN0qYbG02DG5m9H0+c2LUddmD0Nki4wU/CYgrDeaEmwYugfHbSq832Ow lrAqkLQujDk3NkRreExOU0NWnsAI45cghOgPljchjiDlhSh6Rk+Umm9juLR/AQzzJyq4 /Z9cbKhxB48nKg4BfokMynqRSuzWIg7C4hlaMbge2XkMZVtAV9lXGa5Kkqxta9JLpmVr QR2IN8hM9W0C5bcANRFItEGRw08WEJCS75hB9o/o35Et/DgejN+YU9aGkr1GXJbOFjBi NXwA== X-Gm-Message-State: AD7BkJIJI78Frr7m3gs4jRy5/bvkxV7AcA2v3l9z5QtDT0Ai++FbuQJu9mWBxK05gN01EPuxxNtv3gYzGqd3CA== X-Received: by 10.140.166.6 with SMTP id m6mr33450397qhm.70.1457383587251; Mon, 07 Mar 2016 12:46:27 -0800 (PST) MIME-Version: 1.0 Received: by 10.140.94.215 with HTTP; Mon, 7 Mar 2016 12:45:47 -0800 (PST) From: Mahdi Moradmand Badie Date: Mon, 7 Mar 2016 15:45:47 -0500 Message-ID: To: users@dpdk.org, dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] how to Read(Write) from(to) via lcores in dpdk regardless of NIC X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Mar 2016 20:46:28 -0000 Dear All, I am Mahdi and I am new in DPDK, I wanna generate for example 3 different packets in core0 as master write it to share memory (L3), then core1 as slave read this packets, change them with for example function1 and write again in share memory (L3) and finally check the result with whatever I expect. The most important thing is that I don't wanna use NIC and I don't know for working with cores how I can write/read to/from them, I mean with which template and sequence??? Thanks in advance,