qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH RFC kernel] balloon: speed up inflating/deflatin


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH RFC kernel] balloon: speed up inflating/deflating process
Date: Fri, 20 May 2016 13:19:51 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.0


On 20/05/2016 11:59, Liang Li wrote:
> +
> +             sg_init_table(sg, 5);
> +             sg_set_buf(&sg[0], &flags, sizeof(flags));
> +             sg_set_buf(&sg[1], &start_pfn, sizeof(start_pfn));
> +             sg_set_buf(&sg[2], &page_shift, sizeof(page_shift));
> +             sg_set_buf(&sg[3], &bmap_len, sizeof(bmap_len));

These four should probably be placed in a single struct and therefore a
single sg entry.  It might even be faster to place it together with the
bitmap, thus avoiding the use of indirect descriptors.

You should also test ballooning of a 64GB guest after filling in the
page cache, not just ballooning of a freshly booted 4GB guest.  This
will give you a much more sparse bitmap.  Still, the improvement in
sending PFNs to the host are impressive.

Thanks,

Paolo

> +             sg_set_buf(&sg[4], vb->page_bitmap +
> +                              (start_pfn / BITS_PER_LONG), bmap_len);
> +             virtqueue_add_outbuf(vq, sg, 5, vb, GFP_KERNEL);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]