
Description
Use this skill when the user has an existing DPDK application and is adding DOCA capabilities in-place — most commonly DOCA Flow hardware steering — without rewriting the data-plane in DOCA-native form: binding a DPDK port id to a `doca_dev` (`doca_dpdk_port_probe` / `doca_dpdk_port_as_dev`), converting `rte_mbuf` ↔ `doca_buf`, querying `doca_dpdk_cap_is_rep_port_supported`, or debugging `DOCA_ERROR_*` from a bridge call. Trigger even without "DOCA DPDK Bridge": "how do I add DOCA Flow to my DPDK app", "make a DPDK port visible to DOCA", "the bridge loads but every operation returns errors", "pkg-config --exists doca-dpdk-bridge fails", or "DOCA_ERROR_NOT_FOUND on port registration". Route elsewhere for fresh DOCA-native packet I/O (doca-eth), flow-rule programming (doca-flow), DOCA or DPDK install (doca-setup), or RDMA data movement (doca-rdma).
SKILL.md
DOCA DPDK Bridge
Where to start: This skill assumes DOCA is already installed,
DPDK is already installed, the user has an existing DPDK
application, and they want to add DOCA capabilities to it
in-place (most commonly DOCA Flow for hardware steering)
without migrating the data-plane to DOCA-native APIs. Open
TASKS.md if the user wants to do something
(configure / build / modify / run / test / debug); open
CAPABILITIES.md when the question is what
the bridge can express on this version. If the user has not
installed DOCA yet, route to
doca-setup first. If the user is
starting fresh (no DPDK code yet) and just wants line-rate
packet I/O against DOCA, route to
doca-eth instead — the bridge exists
for the interop case, not the start-fresh case.
Example questions this skill answers well
The CLASSES of DOCA DPDK Bridge questions this skill is built to answer, each with one worked example. The agent should treat the class as the load-bearing piece — the worked example is a single instance.
- "I have a DPDK app — how do I add DOCA Flow rules to it
without rewriting the data-plane?" — worked example: "my
packet-processing app already drives mbufs through
rte_eth_*ports; I want to install DOCA Flow steering rules on those ports for HW offload". Answered by the bridge-vs-native selection rule inCAPABILITIES.md ## Capabilities and modes- the port-handover workflow in
TASKS.md ## configurestep 3.
- the port-handover workflow in
- "How do I make a DPDK port visible to DOCA?" — worked
example: "I have a DPDK port id from
rte_eth_dev_*; how does DOCA see it". Answered by the DPDK-port-id ↔doca_devmapping (doca_dpdk_port_probe/doca_dpdk_port_as_dev) inCAPABILITIES.md ## Capabilities and modesbridge-objects table + the binding workflow inTASKS.md ## configurestep 4. - "How do I move packets between DPDK mbufs and DOCA bufs?" —
worked example: "DPDK delivers an
rte_mbufto my fastpath; I want a DOCA library to operate on the payload". Answered by the mbuf ↔ DOCA-buf conversion shape inCAPABILITIES.md ## Capabilities and modes- the conversion-step workflow in
TASKS.md ## modify.
- the conversion-step workflow in
- "Is the bridge even installed and is its DPDK compatible
with my DOCA?" — worked example: "
pkg-config --exists doca-dpdk-bridgereturns failure on a host that has DPDK separately installed". Answered by the version-coupling rule inCAPABILITIES.md ## Version compatibility- the cap-check workflow in
TASKS.md ## configurestep 1.
- the cap-check workflow in
- "Should I be using
doca-dpdk-bridgeordoca-eth?" — worked example: "new project; I have not committed to DPDK yet". Answered by the path-selection table inCAPABILITIES.md ## Capabilities and modesbridge-vs-native row + the deferred-verbs note inTASKS.md ## Deferred task verbs. - "What does this
DOCA_ERROR_*from a bridge call mean and which layer caused it?" — worked example: "DOCA_ERROR_NOT_FOUNDon a port-registration call after the DPDK port came up cleanly". Answered by the bridge overlay on the cross-library taxonomy inCAPABILITIES.md ## Error taxonomy- the layered ladder in
TASKS.md ## debugthat escalates todoca-debug.
- the layered ladder in
Audience
This skill serves external developers who already maintain a
DPDK-based packet-processing application — i.e., users whose
data-plane already drives rte_eth_* ports and rte_mbuf
buffers — and who want to add DOCA capabilities (most
commonly hardware steering via DOCA Flow) by linking the bridge
into the same process. It is not for users starting a fresh
DOCA-native project (route to doca-eth)
and not for users running pure DPDK with no interest in DOCA
(no skill in this bundle applies). It is also not for NVIDIA
developers contributing to DOCA DPDK Bridge itself.
Language scope. DOCA DPDK Bridge ships as a C library with
pkg-config module name doca-dpdk-bridge (the agent must
confirm the spelling against the user's install via
pkg-config --exists doca-dpdk-bridge; some DOCA releases use a
slightly different module name and the agent must not guess).
The shipped samples are written in C. C and C++ consumers are
the canonical case; the worked examples in TASKS.md assume
that path. Other-language consumers (Rust, Go, Python, …)
typically do not use this bridge — DPDK itself is C-shaped, and
a non-C DPDK app is rare; if the user is in that minority, the
skill's contribution is to keep the port-handover, capability,
permission, and error-taxonomy guidance language-neutral and
route them to the public C ABI as the authoritative surface.
When to load this skill
Load this skill when the user is doing hands-on DOCA DPDK Bridge work, in any language. Concretely:
- The user has an EXISTING DPDK application (their data-plane
already drives
rte_eth_dev_*ports andrte_mbufbuffers), and they want to layer DOCA on top — adding DOCA Flow rules, feeding packets into a DOCA accelerator (Compress, AES-GCM, …), or wiring a DOCA service into the same process. - The user needs to bind a DPDK port id to a
doca_dev(viadoca_dpdk_port_probe/doca_dpdk_port_as_dev) so DOCA Core / DOCA Flow can operate on the same physical port. - The user needs to convert between DPDK mbufs and DOCA-bufs at the data-plane boundary, and is asking about the conversion helpers and their cost.
- The user is debugging a
DOCA_ERROR_*returned from a bridge call (lifecycle vs. permission vs. capability vs. DPDK-port-not- registered vs. mbuf-conversion-failed) and the layered DPDK ↔ DOCA stack underneath. - The user is hitting cross-version pain: their DPDK install and their DOCA install are not the matched pair the bridge expects.
- The user is asking "native
doca-ethordoca-dpdk-bridge?" and the agent needs the path-selection rule.
Do not load this skill for general DOCA orientation, install
of DOCA itself, fresh DOCA-native packet I/O (use
doca-eth), flow-rule programming on
its own (use doca-flow), host ↔ DPU
control messaging (use doca-comch),
or RDMA data movement (use doca-rdma).
For DOCA documentation orientation, use
doca-public-knowledge-map.
What this skill provides
This is a thin loader. The body keeps only the orientation needed to pick the right next file. The substantive bridge- specific material lives in two companion files:
CAPABILITIES.md— what the DOCA DPDK Bridge can express on this version: the bridge-vs-native selection rule (when to usedoca-dpdk-bridgevs nativedoca-eth), the bridge-object surface (DPDK-port-id ↔doca_devmapping, thedoca_dpdk_mempoolmbuf ↔ DOCA-buf conversion), the capability-query surface (the singledoca_dpdk_cap_is_rep_port_supported), the bridge error taxonomy (mapped onto the cross-libraryDOCA_ERROR_*set), the observability surface (DPDK-side counters + DOCA-side PE events), and the safety policy that gates the matched-pair DPDK ↔ DOCA version coupling, the EAL-must-be-up precondition, and DPDK-side privileges.TASKS.md— step-by-step workflows for the six in-scope bridge verbs:configure,build,modify,run,test,debug. Plus aDeferred task verbsblock that points out-of-scope questions at the right next skill, and aCommand appendixof the recurring commands the agent reaches for.
The skill assumes a host or BlueField where DOCA AND DPDK are
already installed at the standard locations and the user has the
privileges their public install profile expects (typically sudo
or mlnx-group membership for DOCA, plus the DPDK-side
privileges to mount hugepages, bind PCIe ports, and open the
target rte_eth device). It does not cover installing DOCA —
that path goes through doca-setup;
it does not cover installing or learning DPDK itself — that
belongs in upstream DPDK documentation reachable via
doca-public-knowledge-map.
What this skill deliberately does not ship
This skill is agent guidance, not a samples or templates bundle. To keep the boundary clean, it deliberately does not contain — and pull requests should not add:
- Pre-written DOCA DPDK Bridge application source code, in any
language. The verified bridge source code is the bridge
usage inside the shipped C DOCA Flow samples at
/opt/mellanox/doca/samples/doca_flow/(e.g.flow_common.c, which callsdoca_dpdk_port_probe()/doca_dpdk_port_as_dev()), plus the canonical reference applications that pair DPDK + DOCA Flow (seedoca-public-knowledge-mapfor the reference-applications index). The agent's job is to route the user to those files and prescribe a minimum-diff modification on them via the universal modify-a-sample workflow indoca-programming-guide, layered with the bridge-specific overrides inTASKS.md ## modify. - Standalone build manifests (
meson.build,CMakeLists.txt,Cargo.toml, …) parked inside the skill. The agent constructs the build manifest in the user's project directory against the user's installed DOCA + DPDK, wherepkg-config --modversion doca-dpdk-bridgeandpkg-config --modversion libdpdkare the source of truth. - A
samples/,bindings/, orreference/subtree of any kind. A mock or incomplete artifact in this skill's tree, even one labeled "reference", is misleading: users will read it as buildable.
Loading order
- Read this
SKILL.mdfirst to confirm the user's question is in scope (existing DPDK app + wants DOCA on top — not fresh). - For the bridge capability matrix, the bridge-vs-native selection rule, port-handover surface, capability-query rules, error taxonomy, observability, and safety policy, see CAPABILITIES.md.
- For step-by-step workflows — configure, build, modify, run, test, debug — see TASKS.md.
Both companion files cross-link to each other,
doca-version for the canonical
DOCA version-handling rules,
doca-eth for the start-fresh path that
is the bridge's deliberate alternative,
doca-flow for the steering library
that is the most common reason to use this bridge in the first
place, and
doca-public-knowledge-map
whenever the right answer is "look it up in the public docs or
the installed package layout" rather than "bridge-specific
guidance".
Related skills
doca-public-knowledge-map— the routing table for every public DOCA documentation source and the on-disk layout of an installed DOCA package. The bridge URL slug isDOCA-DPDK-Bridge. Reference applications that pair DPDK + DOCA Flow (the canonical adopters of this bridge) are reachable from the same map's reference- applications index.doca-setup— env preparation, install verification, hugepage mounts (DPDK requirement), port-state checks (devlink dev show,ip link), permission and group-membership requirements for opening adoca_devAND for binding PCIe ports under DPDK. This skill assumes its preconditions are satisfied.doca-version— canonical DOCA version-handling rules. This skill's## Version compatibilitycross-links the four-way match rule and adds only the bridge-specific overlay (DPDK ↔ DOCA matched-pair coupling).doca-structured-tools-contract— the bundle's structured-tools precedence rule (detect / prefer / fall back / report). The Command appendix in TASKS.md honors this contract.doca-programming-guide— general DOCA programming patterns shared by every library: the canonicalpkg-config+ meson build pattern, the universal modify-a-shipped-sample first-app workflow, the universal lifecycle, the cross-libraryDOCA_ERROR_*taxonomy, and the program-side debug order. This skill layers bridge specifics on top.doca-eth— the alternative path for users starting fresh: pure DOCA-native queue I/O viadoca_eth_rxq/doca_eth_txqwith no DPDK in the picture. The bridge exists because migrating an existing DPDK app todoca-ethis often the wrong tradeoff; for a new project with no DPDK lock-in,doca-ethis the right choice.doca-flow— the steering library that is the most common reason a DPDK app reaches for this bridge. The bridge binds a DPDK port id to adoca_dev; DOCA Flow programs steering rules onto thatdoca_dev. The two libraries are designed to compose.doca-debug— the cross-cutting debug ladder (install / version / build / link / runtime / program / driver). Bridge-specific debug (DPDK ↔ DOCA version drift, port-not-registered symptoms, mbuf-conversion failures) overlays on top of that ladder.
More skills from the skills repository
View all 305 skillsaccelerated-computing-cudf
accelerate data processing with cuDF
Jul 14Data AnalysisData EngineeringNVIDIAPerformanceaiq-deploy
deploy and manage NVIDIA AI-Q infrastructure
Jul 14DeploymentInfrastructureNVIDIAaiq-research
conduct deep research with AI-Q
Jul 14AgentsNVIDIAResearchamc-run-sample-calibration
run AMC sample dataset calibration
Jul 17Data AnalysisNVIDIATestingamc-run-video-calibration
calibrate video datasets with AutoMagicCalib
Jul 17AutomationImagingNVIDIAVideoamc-setup-calibration-stack
deploy AutoMagicCalib microservice with Docker
Jul 17DeploymentDockerNVIDIAOperations
More from NVIDIA
View publishernemoclaw-user-guide
retrieve NemoClaw documentation and configuration
NemoClaw
Jul 20DocumentationMCPSearchmcore-build-and-dependency
manage Megatron-LM development environments
Megatron-LM
Jul 14ContainersDeploymentPythonmcore-bump-base-image
update NVIDIA PyTorch base images
Megatron-LM
Jul 14CI/CDDeploymentmcore-cicd
manage CI/CD pipelines for Megatron-LM
Megatron-LM
Jul 14CI/CDDeploymentGitHubmcore-create-issue
investigate CI failures and create issues
Megatron-LM
Jul 14DebuggingGitHubTriagemcore-linting-and-formatting
lint and format Megatron-LM code
Megatron-LM
Jul 14Best PracticesCode Analysis