eal/linux: fix inaccurate numa node error comment
authorMatthew Hall <mhall@mhcomputing.net>
Thu, 30 Oct 2014 03:40:08 +0000 (03:40 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 5 Nov 2014 21:18:31 +0000 (22:18 +0100)
Signed-off-by: Matthew Hall <mhall@mhcomputing.net>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_eal/linuxapp/eal/eal_pci.c

index 5fe3961..ddb0535 100644 (file)
@@ -266,7 +266,7 @@ pci_scan_one(const char *dirname, uint16_t domain, uint8_t bus,
        snprintf(filename, sizeof(filename), "%s/numa_node",
                 dirname);
        if (access(filename, R_OK) != 0) {
-               /* if no NUMA support just set node to 0 */
+               /* if no NUMA support just set node to -1 */
                dev->numa_node = -1;
        } else {
                if (eal_parse_sysfs_value(filename, &tmp) < 0) {