Module - check_cpus_aligned_with_dpdk_nics¶
This module provides for the following ansible plugin:
check_cpus_aligned_with_dpdk_nics
Module Documentation¶
Run PMD CPU's from all the NUMA nodes check
Owned by the DFG:NFV Integration
Options¶
- cpus
- The CPU's list 
- numa_node
- The NUMA node 
- dpdk_nics_numa_info
- The DPDK NIC's NUMA details 
Authors¶
- Jaganathan Palanisamy 
Example Tasks¶
- name: Check CPU's aligned with DPDK NIC's NUMA
  become: true
  check_cpus_aligned_with_dpdk_nics:
    cpus: 2,3,4,5
    numa_node: '0'
    dpdk_nics_numa_info: [{numa_node: 0, mac: mac1, pci: pci1}, {numa_node: 0, mac: mac2,
        pci: pci2}]
  register: valid_cpus
