linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* NUMA topology question wrt. d4edc5b6
@ 2014-05-21 20:04 Nishanth Aravamudan
  2014-05-22 20:48 ` Srivatsa S. Bhat
  0 siblings, 1 reply; 5+ messages in thread
From: Nishanth Aravamudan @ 2014-05-21 20:04 UTC (permalink / raw)
  To: srivatsa.bhat; +Cc: linuxppc-dev

Hi Srivatsa,

After d4edc5b6 ("powerpc: Fix the setup of CPU-to-Node mappings during
CPU online"), cpu_to_node() looks like:

static inline int cpu_to_node(int cpu)
{
        int nid;

        nid = numa_cpu_lookup_table[cpu];

        /*
         * During early boot, the numa-cpu lookup table might not have been
         * setup for all CPUs yet. In such cases, default to node 0.
         */
        return (nid < 0) ? 0 : nid;
}

However, I'm curious if this is correct in all cases. I have seen
several LPARs that do not have any CPUs on node 0. In fact, because node
0 is statically set online in the initialization of the N_ONLINE
nodemask, 0 is always present to Linux, whether it is present on the
system. I'm not sure what the best thing to do here is, but I'm curious
if you have any ideas? I would like to remove the static initialization
of node 0, as it's confusing to users to see an empty node (particularly
when it's completely separate in the numbering from other nodes), but
we trip a panic (refer to:
http://www.spinics.net/lists/linux-mm/msg73321.html).

Thanks,
Nish

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-06-10 23:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-21 20:04 NUMA topology question wrt. d4edc5b6 Nishanth Aravamudan
2014-05-22 20:48 ` Srivatsa S. Bhat
2014-05-28 20:37   ` Nishanth Aravamudan
2014-06-09 21:38   ` David Rientjes
2014-06-10 23:30     ` Nishanth Aravamudan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).