On 07/26/2016 08:44 AM, Jia He wrote:I agree to move the cond_resched() to a common site in set_max_huge_pages().
This patch is to fix such soft lockup. I thouhgt it is safe to callYikes. So the call site for both the things you patch is this:
cond_resched() because alloc_fresh_gigantic_page and alloc_fresh_huge_page
are out of spin_lock/unlock section.
while (count > persistent_huge_pages(h)) {...
spin_unlock(&hugetlb_lock);and you choose to patch both of the alloc_*() functions. Why not just
if (hstate_is_gigantic(h))
ret = alloc_fresh_gigantic_page(h, nodes_allowed);
else
ret = alloc_fresh_huge_page(h, nodes_allowed);
spin_lock(&hugetlb_lock);
fix it at the common call site? Seems like that
spin_lock(&hugetlb_lock) could be a cond_resched_lock() which would fix
both cases.
Also, putting that cond_resched() inside the for_each_node*() loop is an
odd choice. It seems to indicate that the loops can take a long time,
which really isn't the case. The _loop_ isn't long, right?