From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-f44.google.com (mail-it0-f44.google.com [209.85.214.44]) by dpdk.org (Postfix) with ESMTP id 406885B26 for ; Mon, 17 Sep 2018 01:17:37 +0200 (CEST) Received: by mail-it0-f44.google.com with SMTP id x79-v6so9582400ita.1 for ; Sun, 16 Sep 2018 16:17:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=UT35bTgaAWKUpC4xS+O5FmyVdMfk8gdV33xZlqmTtqk=; b=JfXAoh0zJnSe1yOwYXjVrDEWQIlsIBbluDpUzIOJVS+DDaNDGXU+l0V1OEU4Z7QLYZ bBfGGKOM3DHYz4bb3EN1dAuWHhSGWlmpVSDtWDkqwMszfqygsKvdauEz9tyBV3z3GI3j WoZ0tFicXwaLXPu8AM3S9CZ5GNX5ag+xfzl5jfNkJQjTqGgRSCrZWSMH84VMUWk9YE5R CkrqyJb+G/2CPJPhGsvaS1gq119cc0E6fqvevWFD8QTU05pnZOtDjOhQLpS+h3w7KJIh W4CS7vvxKyEgpcyrmGOYKup55bLjLhyfdoS2twnHirqL/fu4dbjXQY2W8CaPQ0QbsHYL bS5Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=UT35bTgaAWKUpC4xS+O5FmyVdMfk8gdV33xZlqmTtqk=; b=QN5VNX6pswfvzTVIJhazeFD4JRfD5AXFi+6imoU2a2gk3KE3X1agXqs8YTtErP2SCe B+LDg1fJG80Nkp5G1ARRXkFtHy8/c7s3SLOvEyl5S+rxW9qPGslLeSNVgtVcYXVtrqQF VF2iCfrRnPehn2VxCxNq8RFMzBkJ+6mW6HdnEtXGm9bDbZ816nAyi03hObe0xFj+JZlV copUd5rpzUgtJab9t587H3I2zWSAVSbE/17Rx41hu+cQMFX5auKRIGwEweeCtFv5ITQK tgMLREnDYQquMb4p/6GBi4j6vz3vJI7BNoXwFGACisvF+S+5K7vrvHFGHK1pLBYoaU2c 4BAw== X-Gm-Message-State: APzg51CJh7Fxcl2Ehjh4TPr1I8V9uIOTp5Eu0Don3WqTb9wQgzvaM2wE 7rVzUT3thry4oxpUYc9xVCfEs2HH5C2nI+rXhJUhYg== X-Google-Smtp-Source: ANB0VdbsH0lUuLl3XY95CyGtKP1Us3r2N9RxglOjAK2epZI0f63zOvSny2secyt5XJgDhsj772YQai42z53fSQ2wSE8= X-Received: by 2002:a24:db05:: with SMTP id c5-v6mr11416437itg.44.1537139856155; Sun, 16 Sep 2018 16:17:36 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a02:4594:0:0:0:0:0 with HTTP; Sun, 16 Sep 2018 16:17:35 -0700 (PDT) From: Sungho Hong Date: Sun, 16 Sep 2018 16:17:35 -0700 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] the usage of IP address in DPDK X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Sep 2018 23:17:37 -0000 Hello DPDK users, I have been struggling with how to use the ip fragmentation provided by DPDK. and was wondering I have the correct concept of IP address and the MAC address used in rte-mbuf ethernet header. Is Ip address alone in the header of rte-mbuf used to transfer from local to remote? I see that the ip address is used in the IP fragment table, but the fact that data is actually received just by using ethernet mac address, gives me the impression that IP address is only defined by the DPDK user and not used in actual data transfer. Is there something missing to what I understand?