From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 07191A04A4 for ; Wed, 19 Jan 2022 10:02:37 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ECCF3410E1; Wed, 19 Jan 2022 10:02:36 +0100 (CET) Received: from mail-pj1-f50.google.com (mail-pj1-f50.google.com [209.85.216.50]) by mails.dpdk.org (Postfix) with ESMTP id 049F740041 for ; Tue, 18 Jan 2022 19:42:28 +0100 (CET) Received: by mail-pj1-f50.google.com with SMTP id z17-20020a17090ab11100b001b4d8817e04so2696613pjq.2 for ; Tue, 18 Jan 2022 10:42:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=RO5cXuyE26EdFK4en0F6l3WWHWYco15CiJwNklmxQAU=; b=evLAgu/4IfzAdFq10+VuXN5Lb3jIm7m/yMmuL2aFoa23/1TVKu7Npck9WNXLf/E/CS wuptzwDS5y9+ELk6YwK0UAkQeE40L+dVE9kjWN2NPt6Y9SFvCKvqCa8ZVJvWL3/sTRXR VETET8/ywwLPCdEjU/jSVxlic7+M2PYvQLB1yJZ0sn9sGY58itnpkL70dARztFoVftF4 0cSLttwRv6wmTwzRukJr2IyUd2FXEx66/ChEVOgvNymyWA2oaqbZ2MJn5bjhOKoEh8qU W0c/5PN+11aEkvFWjpjqlInC/ANllXpLgyOTMT3zarTHhvp8UIJdPZg6d6xC1ehMP1j0 5pSw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=RO5cXuyE26EdFK4en0F6l3WWHWYco15CiJwNklmxQAU=; b=R/9B++ximaA8PQTJuGH0ZT7h1ba41UqMbkMsXD/xj6BCOxMPl60GbSSf/Uj9Umb0xy kefFnEnn2ZnGI919LNqrPBb9LxRn03TLknTMLN1Nh4tCiBEJpJ/sqFThJY2fcAjJ1iNX YQBku6qaPY/EaeUUpOmUjc6nJIl1gG2bOfHAvpnTt3LfHSecZigfha0egYoqRNxRaEqD tMPwTabbCtyI/DtcyFID5aWF2ijm5tbCE3QkKUeWip1LoViL0ijIDkYTH9jq7gX0Jyb9 StDRGOh7tMTHDxkFygP1qYUDkQOpRYilyjL7VZIEpDgScyJdEXn8xv2ZfPpHaidACdRI YUeA== X-Gm-Message-State: AOAM531zKCrNTEZ3glUMs96P4uCj+fEKfJ1gltnllAwxNWUrr+j2r0sy infZ2sagWbzQygxjRBclat8GJziPLd8QwucQxkVOE8PtdVYWIA== X-Google-Smtp-Source: ABdhPJwHre9UC0ZJ3miLNSVIG2jeZCxc2hcqwOqu8mFhi7Wp3guH8kxaAE/w6xVF5eiSp4UT3k/Rwy1TFJ62Z08RvSc= X-Received: by 2002:a17:90a:a403:: with SMTP id y3mr41675775pjp.80.1642531347736; Tue, 18 Jan 2022 10:42:27 -0800 (PST) MIME-Version: 1.0 From: Jon Ross Date: Tue, 18 Jan 2022 10:42:16 -0800 Message-ID: Subject: how to enable lib_pdump? To: users@dpdk.org Content-Type: text/plain; charset="UTF-8" X-Mailman-Approved-At: Wed, 19 Jan 2022 10:02:35 +0100 X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: users-bounces@dpdk.org dpdk-dumpcap works fine w/ dpdk-testpmd running, but I can't get it to work while my app is running. The docs say to do it the way testmpd does it. But testpmd does... everything? It's hard to tell what's needed to get capture working. The only reference to anything related to lib_pdump in testpmd is the call to rte_pdump_init(). But adding this call seems to have no effect. Just to make sure "it's not me" I added the call to the examples/skeleton app, and dpdk-dumpcap will not run w/ the modified sample app. So it seems like it's more than just calling rte_pdump_init(). Can anyone shed some light on what needs to happen to get an app working w/ dpdk-dumpcap? I'm using dpdk version v21.11, compile from source via github. Thanks, -Jon