From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt0-f178.google.com (mail-qt0-f178.google.com [209.85.216.178]) by dpdk.org (Postfix) with ESMTP id BF99B1B1B6; Tue, 26 Sep 2017 11:58:42 +0200 (CEST) Received: by mail-qt0-f178.google.com with SMTP id o13so9722755qtf.1; Tue, 26 Sep 2017 02:58:42 -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=sd9CE81X+TNCKqILFVlDB/SNwp1lSAh56Co71rMZiGI=; b=WrnXMOSMQYDYxV2MAu0QOhfw9blDvC/Jg7ISpBjBna+me3Ems4lnhN9vGFOMQjdNAU FOres5G9ijJJ1uNBYUjaBnuRK3MstZ5ekowzZg3WZUft4mlD86X+npceW8gRwgDT6LAM hqnM+hZyWPemdx53/Ve9eusIv5H0KXxEmFJadvkRhKY7uWe+4cbQbZPuVgosiNlUY6zi WAJ5WbHaahZYKMBjwmr/7MtM3C+CkDw5ygCzito5GDLAWDF9GnjoEQvK0GoXi5FWGZRB j5f0V3i6efa7UVqhtTqUd1MYjqlehZCMGJAPxqlrBvoeYhPwFct9mE/ZbRzPhYtInPAN bU5Q== 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=sd9CE81X+TNCKqILFVlDB/SNwp1lSAh56Co71rMZiGI=; b=FTnwrDsKfG5Zx0EiFpjEsz9BweH62oTn+bMjcVlW09Refg7wXCnLWCDox4DlcLWHuo K3QTVypChmtnGMFJn4hI7CwfQEDbCxhKjpN2x9JjkrIJb/D1N7GQ+kVzqWIYbzQ8+8mA ptCsgQ7B3KvU5xsiJuSBHzZ+idHfQY8v/8VnV7yycqvbodO6kGZ8Agv4l9O7JsQ8pUKx QkQhiqK07nE9yjU4qSHo0cCPvd0JmrP9QutDSLkXMxUfYUFxWsKPiUWbFG2G8Y3d+LbF m7uj4tfPdVUumQoP5bx5ktnPRagN3lnnLaiEfZudWZaMkfvhEcjQsO7woAdn17llAvqj AxLA== X-Gm-Message-State: AHPjjUgaf4FUZrEZceIJPGpOtPKX9OIuCCb2qZdRsUnCmbF1PpE/rVs6 k2AYIh9TNurJ8YK0zwJgc1Gf/c9P3OhgsZk26hXd6g== X-Google-Smtp-Source: AOwi7QCGwb9ZrkzXI23kXGGJIiLKLq+Z6MAYqXcrKJ6q7KJjIPLWgfQur7JiDDBJmn1kgeP0uFRcvgwj/q31qE+79PU= X-Received: by 10.237.62.176 with SMTP id n45mr14382939qtf.302.1506419922054; Tue, 26 Sep 2017 02:58:42 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.23.48 with HTTP; Tue, 26 Sep 2017 02:58:41 -0700 (PDT) From: Sam Date: Tue, 26 Sep 2017 17:58:41 +0800 Message-ID: To: dev@dpdk.org, users@dpdk.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] How to show dpdk memory usage? X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Sep 2017 09:58:43 -0000 Hi all, I'm running dpdk application, and this application is always hanged after running for a long time, so I want to see if there is memory leak or something. I think the memory allocate by dpdk api such as "rte_rxmbuf_alloc" is located in memory of a core, not system memory, is it right? If it's right, I think `top` command could not show the usage of this type of memory. So how to show this type of memory? Thank you~