"%s/devices/system/cpu/cpu%d/topology/core_siblings_list"
 #define DIE_CPUS_FMT \
        "%s/devices/system/cpu/cpu%d/topology/die_cpus_list"
-#define THRD_SIB_FMT \
-       "%s/devices/system/cpu/cpu%d/topology/thread_siblings_list"
-#define THRD_SIB_FMT_NEW \
+#define CORE_CPUS_FMT \
        "%s/devices/system/cpu/cpu%d/topology/core_cpus_list"
+#define CORE_CPUS_FMT_OLD \
+       "%s/devices/system/cpu/cpu%d/topology/thread_siblings_list"
 #define NODE_ONLINE_FMT \
        "%s/devices/system/node/online"
 #define NODE_MEMINFO_FMT \
        ret = 0;
 
 try_threads:
-       scnprintf(filename, MAXPATHLEN, THRD_SIB_FMT_NEW,
+       scnprintf(filename, MAXPATHLEN, CORE_CPUS_FMT,
                  sysfs__mountpoint(), cpu);
        if (access(filename, F_OK) == -1) {
-               scnprintf(filename, MAXPATHLEN, THRD_SIB_FMT,
+               scnprintf(filename, MAXPATHLEN, CORE_CPUS_FMT_OLD,
                          sysfs__mountpoint(), cpu);
        }
        fp = fopen(filename, "r");
        if (p)
                *p = '\0';
 
-       for (i = 0; i < tp->thread_sib; i++) {
-               if (!strcmp(buf, tp->thread_siblings[i]))
+       for (i = 0; i < tp->core_cpus_lists; i++) {
+               if (!strcmp(buf, tp->core_cpus_list[i]))
                        break;
        }
-       if (i == tp->thread_sib) {
-               tp->thread_siblings[i] = buf;
-               tp->thread_sib++;
+       if (i == tp->core_cpus_lists) {
+               tp->core_cpus_list[i] = buf;
+               tp->core_cpus_lists++;
                buf = NULL;
        }
        ret = 0;
        for (i = 0 ; i < tp->die_cpus_lists; i++)
                zfree(&tp->die_cpus_list[i]);
 
-       for (i = 0 ; i < tp->thread_sib; i++)
-               zfree(&tp->thread_siblings[i]);
+       for (i = 0 ; i < tp->core_cpus_lists; i++)
+               zfree(&tp->core_cpus_list[i]);
 
        free(tp);
 }
                tp->die_cpus_list = addr;
                addr += sz;
        }
-       tp->thread_siblings = addr;
+       tp->core_cpus_list = addr;
 
        for (i = 0; i < nr; i++) {
                if (!cpu_map__has(map, i))
 
        u32       package_cpus_lists;
        /* The number of unique die_cpu_lists below. */
        u32       die_cpus_lists;
-       u32       thread_sib;
+       /* The number of unique core_cpu_lists below. */
+       u32       core_cpus_lists;
        /*
         * An array of strings where each string is unique and read from
         * /sys/devices/system/cpu/cpuX/topology/package_cpus_list. From the ABI
         * The format is like 0-3, 8-11, 14,17.
         */
        const char **die_cpus_list;
-       char    **thread_siblings;
+       /*
+        * An array of string where each string is unique and from
+        * /sys/devices/system/cpu/cpuX/topology/core_cpus_list. From the ABI
+        * each of these is a human-readable list of CPUs within the same
+        * core. The format is like 0-3, 8-11, 14,17.
+        */
+       const char **core_cpus_list;
 };
 
 struct numa_topology_node {
 
                if (ret < 0)
                        goto done;
        }
-       ret = do_write(ff, &tp->thread_sib, sizeof(tp->thread_sib));
+       ret = do_write(ff, &tp->core_cpus_lists, sizeof(tp->core_cpus_lists));
        if (ret < 0)
                goto done;
 
-       for (i = 0; i < tp->thread_sib; i++) {
-               ret = do_write_string(ff, tp->thread_siblings[i]);
+       for (i = 0; i < tp->core_cpus_lists; i++) {
+               ret = do_write_string(ff, tp->core_cpus_list[i]);
                if (ret < 0)
                        break;
        }