From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk0-f181.google.com (mail-qk0-f181.google.com [209.85.220.181]) by dpdk.org (Postfix) with ESMTP id AC25B2BA0 for ; Fri, 11 Mar 2016 21:23:09 +0100 (CET) Received: by mail-qk0-f181.google.com with SMTP id x1so52636584qkc.1 for ; Fri, 11 Mar 2016 12:23:09 -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=1JkAQBXYpKRCK2/75ThJhiYJCi2gjrEuwvJjxq0DHlg=; b=Gt21N4y69o9UAIcfuOE1ECgK0Lg7gTbQfQZBuarM4KMo2ouEKBj13WqMHf1sJx7CRC jdMge/ba3FT42ZLuL50euaQNakACX7NIrbj7ab6FjciVHGG/1uZADzvQUPwGSkc01thX diGKco51ylfVl4gf5wa1CpA3svITpmymm/6z7YRSwbS+bVGRcnVwk4z2mvHzfA1Fjbjn 3MmlHpXTXiJkgc9obzSU73eCNLq3zLWTiJjel5EK6dVIxIZwuwW6jDJmJsB2JP+OXYk5 tJGxp5w8CAkL+S1TNCmMS8EMLSOI3+N9PthWWK5tC0PkwvhKY/fd+symu1EZdYab9IRO cIcg== 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=1JkAQBXYpKRCK2/75ThJhiYJCi2gjrEuwvJjxq0DHlg=; b=e2G2EXuo/SPNWDFTsnju0tvaNEfw0PqhXp1ikbkL9Zacx1uh/fZFxXLIUU/JosbUKY Mjaakh6XSR0VcpLGeXH0rZ7Jh1VCLPjPhubUET3R5AWqqhkr2sJu+TKk2hP6/gESE1Pk +t+UmSh9WZNljrC8ZFFs667hih33n1p8hFJsORQ5bJAzCW/ymBDXPoMhKmEKI7HjvXup 5cZdBcioizkUJ9Q2X2iCDtawT9AMB0O9zExdJGYQMUGJOh1t9B6exoAvuRZN0BudaXy3 5CImGmiV781vUS83kCJE6ciXAXOII5p87mkQ+PtM1RrfyQMzH9TWumnqA9cMtz4tfWTn iGwA== X-Gm-Message-State: AD7BkJI3/IVHN5D2kEUh3XO3tssPaBbq0oz1UsqGeM9GWLv/qPWIB4HRiRDdTf0Ol/YSZnymm+3sdmHQ7IGP8Q== X-Received: by 10.55.200.215 with SMTP id t84mr14523944qkl.55.1457727789118; Fri, 11 Mar 2016 12:23:09 -0800 (PST) MIME-Version: 1.0 Received: by 10.140.94.215 with HTTP; Fri, 11 Mar 2016 12:22:29 -0800 (PST) From: Mahdi Moradmand Badie Date: Fri, 11 Mar 2016 15:22:29 -0500 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] Send and Receive packets to/from specific core 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: Fri, 11 Mar 2016 20:23:09 -0000 Dear All, I wanna Send(write) a Packet(s) with specific data (for example x = 10) from core 0 to share memory and Receive (Read) it with another Core (for example Core 1), change it in Core 1 (for example X = X + 1) and write again in share memory. I really don't know How I could do it, I wanna do this without using NIC ot rte_eth at all, so simple and easy but I confused. Please help me. PS. I know there are many example do more complex than this small exercise but all did it via NIC. -- M@hdi Mor@dm@nd B@die