* [Qemu-devel] problems with 1G hugepages and linux 3.12-rc3
@ 2013-10-06 0:47 andy123
2013-10-08 12:23 ` Gleb Natapov
0 siblings, 1 reply; 3+ messages in thread
From: andy123 @ 2013-10-06 0:47 UTC (permalink / raw)
To: kvm; +Cc: qemu-devel
Hi,
as the subject states, I have some problems with 1G hugepages with qemu(-vfio-git) on Linux 3.12-rc3.
I start qemu like this, for example:
"/usr/bin/qemu-system-x86_64 -enable-kvm -m 1024 -mem-path /dev/hugepages -drive file=/files/vm/arch.img,if=virtio,media=disk -monitor stdio"
where /dev/hugepages is "hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,mode=1770,gid=78,pagesize=1G,pagesize=1G)"
and the kernel is booted with "hugepagesz=1G hugepages=4".
This result in lots of error message in dmesg, as seen here: https://gist.github.com/ajs124/6842823 (starting at 18:04:28)
After starting and stopping multiple virtual machines, the hugepages seem to "fill up" and qemu outputs
"file_ram_alloc: can't mmap RAM pages: Cannot allocate memory", but works anyways.
With fill up, I mean that I can start qemu 2 time with "-m 2048" and 4 times with "-m 1024", before it fails to mmap.
This works without any problems in 3.11.x and also with 2M hugepages (umount /dev/hugepages && mount -t hugetlbfs -o pagesize=2048k /dev/hugepages).
I'm running this in arch linux and there has already been some discussion on the arch forums (https://bbs.archlinux.org/viewtopic.php?pid=1333469#p1333469) but I tried to add everything I wrote over there in this mail.
In case I missed something or you need more information, I'll happily supply it in order to get this resolved.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] problems with 1G hugepages and linux 3.12-rc3
2013-10-06 0:47 [Qemu-devel] problems with 1G hugepages and linux 3.12-rc3 andy123
@ 2013-10-08 12:23 ` Gleb Natapov
2013-10-10 0:22 ` Andrea Arcangeli
0 siblings, 1 reply; 3+ messages in thread
From: Gleb Natapov @ 2013-10-08 12:23 UTC (permalink / raw)
To: andy123; +Cc: Andrea Arcangeli, qemu-devel, kvm
Copying Andrea,
On Sun, Oct 06, 2013 at 02:47:41AM +0200, andy123 wrote:
> Hi,
>
> as the subject states, I have some problems with 1G hugepages with qemu(-vfio-git) on Linux 3.12-rc3.
>
> I start qemu like this, for example:
> "/usr/bin/qemu-system-x86_64 -enable-kvm -m 1024 -mem-path /dev/hugepages -drive file=/files/vm/arch.img,if=virtio,media=disk -monitor stdio"
> where /dev/hugepages is "hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,mode=1770,gid=78,pagesize=1G,pagesize=1G)"
> and the kernel is booted with "hugepagesz=1G hugepages=4".
> This result in lots of error message in dmesg, as seen here: https://gist.github.com/ajs124/6842823 (starting at 18:04:28)
>
> After starting and stopping multiple virtual machines, the hugepages seem to "fill up" and qemu outputs
> "file_ram_alloc: can't mmap RAM pages: Cannot allocate memory", but works anyways.
> With fill up, I mean that I can start qemu 2 time with "-m 2048" and 4 times with "-m 1024", before it fails to mmap.
>
I can reproduce huge page leak, but not oops, but they can be related.
Can you revert 11feeb498086a3a5907b8148bdf1786a9b18fc55 and retry?
> This works without any problems in 3.11.x and also with 2M hugepages (umount /dev/hugepages && mount -t hugetlbfs -o pagesize=2048k /dev/hugepages).
>
> I'm running this in arch linux and there has already been some discussion on the arch forums (https://bbs.archlinux.org/viewtopic.php?pid=1333469#p1333469) but I tried to add everything I wrote over there in this mail.
>
> In case I missed something or you need more information, I'll happily supply it in order to get this resolved.
>
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Gleb.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] problems with 1G hugepages and linux 3.12-rc3
2013-10-08 12:23 ` Gleb Natapov
@ 2013-10-10 0:22 ` Andrea Arcangeli
0 siblings, 0 replies; 3+ messages in thread
From: Andrea Arcangeli @ 2013-10-10 0:22 UTC (permalink / raw)
To: Gleb Natapov; +Cc: andy123, qemu-devel, kvm
Hi Andy,
> On Sun, Oct 06, 2013 at 02:47:41AM +0200, andy123 wrote:
> > Hi,
> >
> > as the subject states, I have some problems with 1G hugepages with qemu(-vfio-git) on Linux 3.12-rc3.
> >
> > I start qemu like this, for example:
> > "/usr/bin/qemu-system-x86_64 -enable-kvm -m 1024 -mem-path /dev/hugepages -drive file=/files/vm/arch.img,if=virtio,media=disk -monitor stdio"
> > where /dev/hugepages is "hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,mode=1770,gid=78,pagesize=1G,pagesize=1G)"
> > and the kernel is booted with "hugepagesz=1G hugepages=4".
> > This result in lots of error message in dmesg, as seen here: https://gist.github.com/ajs124/6842823 (starting at 18:04:28)
> >
> > After starting and stopping multiple virtual machines, the hugepages seem to "fill up" and qemu outputs
> > "file_ram_alloc: can't mmap RAM pages: Cannot allocate memory", but works anyways.
> > With fill up, I mean that I can start qemu 2 time with "-m 2048" and 4 times with "-m 1024", before it fails to mmap.
> >
Thanks for discovering and reporting this problem. Could you test the
below patch?
> I can reproduce huge page leak, but not oops, but they can be related.
> Can you revert 11feeb498086a3a5907b8148bdf1786a9b18fc55 and retry?
Agreed, that it was the problematic commit. I believe it's more
correct if gigantic hugepages won't keep the reserved bit set in the
tail pages, this way we can retain the optimization. It was unexpected
that the gigapages initialization code was leaving some flag like
PG_reserved uninitialized. I put this just after the other
__SetPage... so that we load the cacheline just once, so it should be
zero cost to initialize PG_reserved properly.
======
>From 952d474fae6dc42ece4b05ce1f1489c86da2a268 Mon Sep 17 00:00:00 2001
From: Andrea Arcangeli <aarcange@redhat.com>
Date: Thu, 10 Oct 2013 01:55:45 +0200
Subject: [PATCH] hugetlb: initialize PG_reserved for tail pages of gigantig
compound pages
11feeb498086a3a5907b8148bdf1786a9b18fc55 introduced a memory leak when
KVM is run on gigantic compound pages.
11feeb498086a3a5907b8148bdf1786a9b18fc55 depends on the assumption
that PG_reserved is identical for all head and tail pages of a
compound page. So that if get_user_pages returns a tail page, we don't
need to check the head page in order to know if we deal with a
reserved page that requires different refcounting.
The assumption that PG_reserved is the same for head and tail pages is
certainly correct for THP and regular hugepages, but gigantic
hugepages allocated through bootmem don't clear the PG_reserved on the
tail pages (the clearing of PG_reserved is done later only if the
gigantic hugepage is freed).
This patch corrects the gigantic compound page initialization so that
we can retain the optimization in
11feeb498086a3a5907b8148bdf1786a9b18fc55. The cacheline was already
modified in order to set PG_tail so this won't affect the boot time of
large memory systems.
Reported-by: andy123 <ajs124.ajs124@gmail.com>
Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
---
mm/hugetlb.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index b49579c..315450e 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -695,8 +695,24 @@ static void prep_compound_gigantic_page(struct page *page, unsigned long order)
/* we rely on prep_new_huge_page to set the destructor */
set_compound_order(page, order);
__SetPageHead(page);
+ __ClearPageReserved(page);
for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
__SetPageTail(p);
+ /*
+ * For gigantic hugepages allocated through bootmem at
+ * boot, it's safer to be consistent with the
+ * not-gigantic hugepages and to clear the PG_reserved
+ * bit from all tail pages too. Otherwse drivers using
+ * get_user_pages() to access tail pages, may get the
+ * reference counting wrong if they see the
+ * PG_reserved bitflag set on a tail page (despite the
+ * head page didn't have PG_reserved set). Enforcing
+ * this consistency between head and tail pages,
+ * allows drivers to optimize away a check on the head
+ * page when they need know if put_page is needed after
+ * get_user_pages() or not.
+ */
+ __ClearPageReserved(p);
set_page_count(p, 0);
p->first_page = page;
}
@@ -1329,9 +1345,9 @@ static void __init gather_bootmem_prealloc(void)
#else
page = virt_to_page(m);
#endif
- __ClearPageReserved(page);
WARN_ON(page_count(page) != 1);
prep_compound_huge_page(page, h->order);
+ WARN_ON(PageReserved(page));
prep_new_huge_page(h, page, page_to_nid(page));
/*
* If we had gigantic hugepages allocated at boot time, we need
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-10-10 0:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-06 0:47 [Qemu-devel] problems with 1G hugepages and linux 3.12-rc3 andy123
2013-10-08 12:23 ` Gleb Natapov
2013-10-10 0:22 ` Andrea Arcangeli
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).