From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua0-f174.google.com (mail-ua0-f174.google.com [209.85.217.174]) by dpdk.org (Postfix) with ESMTP id 7756E3777 for ; Wed, 4 Jan 2017 00:08:49 +0100 (CET) Received: by mail-ua0-f174.google.com with SMTP id i68so231706894uad.0 for ; Tue, 03 Jan 2017 15:08:49 -0800 (PST) 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=cRL4gJdVCZtPTvr4ghgRmhYoX0sr4PC4B69alUwrZ0k=; b=jL8BZEhZ9FUTsPJl2ik7BQpk7jQYHkVB4x2ZMFv/C5YhsrFYPfzl1FHYBytm1gmeqq ZcvOXn5rQG/7SPvF4GRgJTKhAWBfLI3Q4TN2QjB2VxoAXD8lns4VMuUCYLwyQX+eg+OB pbvXfTWkXRlv8hvQYULdzLL6o8Fgo9Q/3sLQcIN6gFciSTz01z4BrWWLSsqnlXwGfwnu uGlQYa8UkD3HviNs/fthxDX+PWovuqEil11bIBMKLsdPeh+c6MR58wHl88bep0iquIgX z5QIi6W7YtMYplfi2MyyiiNp3PaNS+X2olOUQ38xKfo4IavmtOhjx+1D/vz5/V0K1xGJ 3lPw== 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=cRL4gJdVCZtPTvr4ghgRmhYoX0sr4PC4B69alUwrZ0k=; b=kELIMZ/TW7Zu2GuPRFCxTmRiautHda5rX8LV5XD54GjdEwdPdWQxW35Hl/OTQtFJZy 10lSh17mx4v1IDotcBgGM+XXDeccXZ3BzJ+oAA6VTmvHuF5zs+gCWcTHVBq0VR7eWFFD 5SYmmzQNEq+gvZr5irpRNlecGr31MsRrt+/H4EFSK1erQ2GJNF3azzLhT1yKx29SxhFe VgMoKU1KGlQFndvxpybhIoa9ltK85XhfWSB330S7yObmQhba7xk7mLyIBcuJtPfZGERW HylDeCSGWYDw8HuynzCUoDLIgBuc4+KFfe7TaHYDpuPpcDkkr7n5bWcPsupAcNqup6gP CFUA== X-Gm-Message-State: AIkVDXLFDokJ4Hs9jO5k4PQBRZ0TcUEtqk+DZ5+sHYMv5zVCcYNi0LX5moq00SyB7Hn54LIp1vLQ2ZQmA1PcJQ== X-Received: by 10.176.1.230 with SMTP id 93mr39071540ual.168.1483484928473; Tue, 03 Jan 2017 15:08:48 -0800 (PST) MIME-Version: 1.0 Received: by 10.103.20.2 with HTTP; Tue, 3 Jan 2017 15:08:28 -0800 (PST) From: Chae-yong Chong Date: Wed, 4 Jan 2017 08:08:28 +0900 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] Too much time in mmap() 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: Tue, 03 Jan 2017 23:08:49 -0000 Hi, Too much time is spent on mmap() in rte_eal_init(). When running DPDK application with 35 1G huge pages, it takes about 12sec in mapping(). Is there any way to reduce this time? I guess it is okay to have that much time in first initialization. However, if the application is restarted for some reason(for example, unexpected exit) that long initialization can cause service continuity. May the Fun with you.