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


Groups > linux.kernel > #1563511 > unrolled thread

Re: [PATCH v6 kernel 3/5] virtio-balloon: speed up inflate/deflate process

Started by"Dr. David Alan Gilbert" <dgilbert@redhat.com>
First post2017-01-20 12:50 +0100
Last post2017-01-20 12:50 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH v6 kernel 3/5] virtio-balloon: speed up inflate/deflate  process "Dr. David Alan Gilbert" <dgilbert@redhat.com> - 2017-01-20 12:50 +0100

#1563511 — Re: [PATCH v6 kernel 3/5] virtio-balloon: speed up inflate/deflate process

From"Dr. David Alan Gilbert" <dgilbert@redhat.com>
Date2017-01-20 12:50 +0100
SubjectRe: [PATCH v6 kernel 3/5] virtio-balloon: speed up inflate/deflate process
Message-ID<t1FRD-6IR-11@gated-at.bofh.it>
* Liang Li (liang.z.li@intel.com) wrote:

<snip>

> +static void free_extended_page_bitmap(struct virtio_balloon *vb)
> +{
> +	int i, bmap_count = vb->nr_page_bmap;
> +
> +	for (i = 1; i < bmap_count; i++) {
> +		kfree(vb->page_bitmap[i]);
> +		vb->page_bitmap[i] = NULL;
> +		vb->nr_page_bmap--;
> +	}
> +}
> +
> +static void kfree_page_bitmap(struct virtio_balloon *vb)
> +{
> +	int i;
> +
> +	for (i = 0; i < vb->nr_page_bmap; i++)
> +		kfree(vb->page_bitmap[i]);
> +}

It might be worth commenting that pair of functions to make it clear
why they are so different; I guess the kfree_page_bitmap
is used just before you free the structure above it so you
don't need to keep the count/pointers updated?

Dave
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web