Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1191386

Re: [PATCH] hugetlb: cond_resched for set_max_huge_pages and follow_hugetlb_page

From David Rientjes <rientjes@google.com>
Newsgroups linux.kernel
Subject Re: [PATCH] hugetlb: cond_resched for set_max_huge_pages and follow_hugetlb_page
Date 2015-07-24 01:00 +0200
Message-ID <pPxD4-433-11@gated-at.bofh.it> (permalink)
References <pPwH0-2zU-15@gated-at.bofh.it> <pPwQH-30s-21@gated-at.bofh.it> <pPxjH-3z4-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

On Thu, 23 Jul 2015, Jörn Engel wrote:

> > This is wrong, you'd want to do any cond_resched() before the page 
> > allocation to avoid racing with an update to h->nr_huge_pages or 
> > h->surplus_huge_pages while hugetlb_lock was dropped that would result in 
> > the page having been uselessly allocated.
> 
> There are three options.  Either
> 	/* some allocation */
> 	cond_resched();
> or
> 	cond_resched();
> 	/* some allocation */
> or
> 	if (cond_resched()) {
> 		spin_lock(&hugetlb_lock);
> 		continue;
> 	}
> 	/* some allocation */
> 
> I think you want the second option instead of the first.  That way we
> have a little less memory allocation for the time we are scheduled out.
> Sure, we can do that.  It probably doesn't make a big difference either
> way, but why not.
> 

The loop is dropping the lock simply to do the allocation and it needs to 
compare with the user-written number of hugepages to allocate.

What we don't want is to allocate, reschedule, and check if we really 
needed to allocate.  That's what your patch does because it races with 
persistent_huge_page().  It's probably the worst place to do it.

Rather, what you want to do is check if you need to allocate, reschedule 
if needed (and if so, recheck), and then allocate.

> If you are asking for the third option, I would rather avoid that.  It
> makes the code more complex and doesn't change the fact that we have a
> race and better be able to handle the race.  The code size growth will
> likely cost us more performance that we would ever gain.  nr_huge_pages
> tends to get updated once per system boot.
> 

Your third option is nonsensical, you didn't save the state of whether you 
locked the lock so you can't reliably unlock it, and you cannot hold a 
spinlock while allocating in this context.

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] hugetlb: cond_resched for set_max_huge_pages and follow_hugetlb_page Spencer Baugh <sbaugh@catern.com> - 2015-07-24 00:00 +0200
  Re: [PATCH] hugetlb: cond_resched for set_max_huge_pages and  follow_hugetlb_page David Rientjes <rientjes@google.com> - 2015-07-24 00:10 +0200
    Re: [PATCH] hugetlb: cond_resched for set_max_huge_pages and  follow_hugetlb_page Jörn Engel <joern@purestorage.com> - 2015-07-24 00:40 +0200
      Re: [PATCH] hugetlb: cond_resched for set_max_huge_pages and  follow_hugetlb_page David Rientjes <rientjes@google.com> - 2015-07-24 01:00 +0200
        Re: [PATCH] hugetlb: cond_resched for set_max_huge_pages and  follow_hugetlb_page Jörn Engel <joern@purestorage.com> - 2015-07-24 01:10 +0200

csiph-web