From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yw0-f172.google.com (mail-yw0-f172.google.com [209.85.161.172]) by dpdk.org (Postfix) with ESMTP id 7E0BD2C55; Tue, 8 Mar 2016 05:56:43 +0100 (CET) Received: by mail-yw0-f172.google.com with SMTP id d65so3537743ywb.0; Mon, 07 Mar 2016 20:56:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=r9GKawc/FrOu9cK/ldJbbymHJJFYRpDz7XOj3+H+zzU=; b=tTQxV9wPIBBWLkBxvScwhe4bjKok8py8oow8bgmZG6OTcjYB3B+QV2td7jooWpQO3W tf8Jr2JxcCo4UtCst1O+Blx5VTMZ9hdsoyJTqkP+rAie+Mzw/fkmXIRAbi0B8lcfVFkt ViCQUQx4vg/0rPNyCTGVzOWMI57SoRU6KUHOOnLk7b5ZWScafc2eSGh679Ar40Muc1cz XuWtDw99AdXZ27R0LHw6r/z4nXkq1SOOdPzMgpm/z+597uouVK/Iw86z68tqdIzPIspX r+yiA+/kBr3quFr2JnRB8NcmgULDTBkcS3eKViMd27pUMKXMglCxwRtKPALUiwWjblJ2 z49g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=r9GKawc/FrOu9cK/ldJbbymHJJFYRpDz7XOj3+H+zzU=; b=hDhxBhodlloerCo84I3sLQLn9txcsmDKAUgIgpYKpeIcJ1VuTnhfQEDUUscE/y/NCO C9pW7upYxLprn9bzUxPSuAp8xsxG81wdGHk6xGaFxvBroVwLnw/OJ0Xq++LySPJoNBWa 9ZzgJaVrOWCCKe2S/UidSab10bolnUzctZh6xY8KPTvq2Zc4UWM4/2QOr/TYsUujZEuM IbGi4raAbSoemi8y/O3A24RGIOFS+WdqAHHajdi/Edx2jUP8jIatQFJ8Qlps+fi3jFWR 5PlaFZ3YEPbKSZMGo8ErZfAbQmk7/sSUj4GaBeKsNFFc3dRK8CCuwiHutXQUnXibAbxB 2s6w== X-Gm-Message-State: AD7BkJJwwLpeCUhwGeAZpTaGz/1Hg8WfgcZNSNFw5gj8566y7ynd6K3G6bp2zAAMcXybDoOR8fAyszZ720fqWg== X-Received: by 10.13.237.132 with SMTP id w126mr15826237ywe.211.1457413002990; Mon, 07 Mar 2016 20:56:42 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Hamed Zaghaghi Date: Tue, 08 Mar 2016 04:56:33 +0000 Message-ID: To: Mahdi Moradmand Badie , users@dpdk.org, dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [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: Tue, 08 Mar 2016 04:56:43 -0000 Hi Mahdi, Why do you want to use DPDK when you don't use NIC? You can do what you want outside of DPDK. Regards, Hamed Zaghaghi On Tue, Mar 8, 2016 at 12:16 AM Mahdi Moradmand Badie < mahdi.mbadie@gmail.com> wrote: > 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, >