On Mon, May 4, 2020 at 5:54 PM Daniel Jordan <daniel.m.jordan@xxxxxxxxxx> wrote: > > On Mon, May 04, 2020 at 03:10:46PM -0700, Alexander Duyck wrote: > > So we cannot stop in the middle of a max order block. That shouldn't > > be possible as part of the issue is that the buddy allocator will > > attempt to access the buddy for the page which could cause issues if > > it tries to merge the page with one that is not initialized. So if > > your code supports that then it is definitely broken. That was one of > > the reasons for all of the variable weirdness in > > deferred_init_maxorder. I was going through and making certain that > > while we were initializing the range we were freeing the pages in > > MAX_ORDER aligned blocks and skipping over whatever reserved blocks > > were there. Basically it was handling the case where a single > > MAX_ORDER block could span multiple ranges. > > > > On x86 this was all pretty straightforward and I don't believe we > > needed the code, but I seem to recall there were some other > > architectures that had more complex memory layouts at the time and > > that was one of the reasons why I had to be careful to wait until I > > had processed the full MAX_ORDER block before I could start freeing > > the pages, otherwise it would start triggering memory corruptions. > > Yes, thanks, I missed the case where deferred_grow_zone could stop > mid-max-order-block. As it turns out that deferred_free_range will be setting the migratetype for the page. In a sparse config the migratetype bits are stored in the section bitmap. So to avoid cacheline bouncing it would make sense to section align the tasks so that they only have one thread touching one section rather than having the pageblock_flags getting bounced between threads. It should also reduce the overhead for having to parallelize the work in the first place since a section is several times larger than a MAX_ORDER page and allows for more batching of the work. > Maybe it's better to leave deferred_init_maxorder alone and adapt the > multithreading to the existing implementation. That'd mean dealing with the > pesky opaque index somehow, so deferred_init_mem_pfn_range_in_zone() could be > generalized to find it in the thread function based on the start/end range, or > it could be maintained as part of the range that padata passes to the thread > function. You may be better off just implementing your threads to operate like deferred_grow_zone does. All your worker thread really needs then is to know where to start performing the page initialization and then it could go through and process an entire section worth of pages. The other bit that would have to be changed is patch 6 so that you combine any ranges that might span a single section instead of just splitting the work up based on the ranges. If you are referring to the mo_pfn you shouldn't even need to think about it. All it is doing is guaranteeing you are processing at least a full max order worth of pages. Without that the logic before was either process a whole section, or just process all of memory initializing it before it started freeing it. I found it made things much more efficient to process only up to MAX_ORDER at a time as you could squeeze that into the L2 cache for most x86 processors at least and it reduced the memory bandwidth by quite a bit. If you update the code to only provide section aligned/sized ranges of of PFNs to initialize then it can pretty much be ignored since all it is doing is defining the break point for single MAX_ORDER chunks which would be smaller than a section anyway.