Re: [PATCH 07/33] autonuma: mm_autonuma and task_autonuma data structures

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, Oct 11, 2012 at 11:24:34AM -0400, Rik van Riel wrote:
> On 10/11/2012 08:28 AM, Mel Gorman wrote:
> 
> >>+	/* link for knuma_scand's list of mm structures to scan */
> >>+	struct list_head mm_node;
> >>+	/* Pointer to associated mm structure */
> >>+	struct mm_struct *mm;
> >>+
> >>+	/*
> >>+	 * Zeroed from here during allocation, check
> >>+	 * mm_autonuma_reset() if you alter the below.
> >>+	 */
> >>+
> >>+	/*
> >>+	 * Pass counter for this mm. This exist only to be able to
> >>+	 * tell when it's time to apply the exponential backoff on the
> >>+	 * task_autonuma statistics.
> >>+	 */
> >>+	unsigned long mm_numa_fault_pass;
> >>+	/* Total number of pages that will trigger NUMA faults for this mm */
> >>+	unsigned long mm_numa_fault_tot;
> >>+	/* Number of pages that will trigger NUMA faults for each [nid] */
> >>+	unsigned long mm_numa_fault[0];
> >>+	/* do not add more variables here, the above array size is dynamic */
> >>+};
> >
> >How cache hot is this structure? nodes are sharing counters in the same
> >cache lines so if updates are frequent this will bounce like a mad yoke.
> >Profiles will tell for sure but it's possible that some sort of per-cpu
> >hilarity will be necessary here in the future.
> 
> These statistics are updated at page fault time, I
> believe while holding the page table lock.
> 
> In other words, they are in code paths where updating
> the stats should not cause issues.
> 

Ordinarily I would agree but in this case the updates are taking place for
NUMA hinting faults so there is an new source of new page faults and the
page table lock is going to be hotter than it was in the past.  It may not
be a problem as it'll be related to how short a knuma_scan cycle is but it's
something else to keep an eye on. Profiles will tell for sure at the end of
the day and it can be incrementally improved.

> >>+/*
> >>+ * Per-task (thread) structure that contains the NUMA memory placement
> >>+ * statistics generated by the knuma scan daemon. This structure is
> >>+ * dynamically allocated only if AutoNUMA is possible on this
> >>+ * system. They are linked togehter in a list headed within the
> >>+ * knumad_scan structure.
> >>+ */
> >>+struct task_autonuma {
> 
> >>+	unsigned long task_numa_fault[0];
> >>+	/* do not add more variables here, the above array size is dynamic */
> >>+};
> >>+
> >
> >Same question about cache hotness.
> 

-- 
Mel Gorman
SUSE Labs

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@xxxxxxxxx.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@xxxxxxxxx";> email@xxxxxxxxx </a>


[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]