From: Rafael Aquini <aquini@redhat.com>
To: Minchan Kim <minchan@kernel.org>
Cc: linux-mm@kvack.org, Rik van Riel <riel@redhat.com>,
Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
linux-kernel@vger.kernel.org,
virtualization@lists.linux-foundation.org,
Andi Kleen <andi@firstfloor.org>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH v2 1/4] mm: introduce compaction and migration for virtio ballooned pages
Date: Tue, 3 Jul 2012 15:31:36 -0300 [thread overview]
Message-ID: <20120703183135.GE1727@t510.redhat.com> (raw)
In-Reply-To: <4FF0DEE2.5080200@kernel.org>
On Mon, Jul 02, 2012 at 08:36:02AM +0900, Minchan Kim wrote:
> On 06/30/2012 10:34 AM, Rafael Aquini wrote:
>
> >> void isolate_page_from_balloonlist(struct page* page)
> >> > {
> >> > page->mapping->a_ops->invalidatepage(page, 0);
> >> > }
> >> >
> >> > if (is_balloon_page(page) && (page_count(page) == 2)) {
> >> > isolate_page_from_balloonlist(page);
> >> > }
> >> >
> > Humm, my feelings on your approach here: just an unecessary indirection that
> > doesn't bring the desired code readability improvement.
> > If the header comment statement on balloon_mapping->a_ops is not clear enough
> > on those methods usage for ballooned pages:
> >
> > .....
> > /*
> > * Balloon pages special page->mapping.
> > * users must properly allocate and initialize an instance of balloon_mapping,
> > * and set it as the page->mapping for balloon enlisted page instances.
> > *
> > * address_space_operations necessary methods for ballooned pages:
> > * .migratepage - used to perform balloon's page migration (as is)
> > * .invalidatepage - used to isolate a page from balloon's page list
> > * .freepage - used to reinsert an isolated page to balloon's page list
> > */
> > struct address_space *balloon_mapping;
> > EXPORT_SYMBOL_GPL(balloon_mapping);
> > .....
> >
> > I can add an extra commentary, to recollect folks about that usage, next to the
> > points where those callbacks are used at isolate_balloon_page() &
> > putback_balloon_page(). What do you think?
> >
> >
>
>
> I am not strongly against you.
> It trivial nitpick must not prevent your great work. :)
>
> Thanks!
>
>
Nah, I'm the one who should be thanking everyone else here. :)
After a second thought I decided to follow your suggestion on this one as well.
Soon, I'll be posting the re-spin
Thanks Minchan!
Rafael
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
WARNING: multiple messages have this Message-ID (diff)
From: Rafael Aquini <aquini@redhat.com>
To: Minchan Kim <minchan@kernel.org>
Cc: linux-mm@kvack.org, Rik van Riel <riel@redhat.com>,
Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
linux-kernel@vger.kernel.org,
virtualization@lists.linux-foundation.org,
Andi Kleen <andi@firstfloor.org>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH v2 1/4] mm: introduce compaction and migration for virtio ballooned pages
Date: Tue, 3 Jul 2012 15:31:36 -0300 [thread overview]
Message-ID: <20120703183135.GE1727@t510.redhat.com> (raw)
In-Reply-To: <4FF0DEE2.5080200@kernel.org>
On Mon, Jul 02, 2012 at 08:36:02AM +0900, Minchan Kim wrote:
> On 06/30/2012 10:34 AM, Rafael Aquini wrote:
>
> >> void isolate_page_from_balloonlist(struct page* page)
> >> > {
> >> > page->mapping->a_ops->invalidatepage(page, 0);
> >> > }
> >> >
> >> > if (is_balloon_page(page) && (page_count(page) == 2)) {
> >> > isolate_page_from_balloonlist(page);
> >> > }
> >> >
> > Humm, my feelings on your approach here: just an unecessary indirection that
> > doesn't bring the desired code readability improvement.
> > If the header comment statement on balloon_mapping->a_ops is not clear enough
> > on those methods usage for ballooned pages:
> >
> > .....
> > /*
> > * Balloon pages special page->mapping.
> > * users must properly allocate and initialize an instance of balloon_mapping,
> > * and set it as the page->mapping for balloon enlisted page instances.
> > *
> > * address_space_operations necessary methods for ballooned pages:
> > * .migratepage - used to perform balloon's page migration (as is)
> > * .invalidatepage - used to isolate a page from balloon's page list
> > * .freepage - used to reinsert an isolated page to balloon's page list
> > */
> > struct address_space *balloon_mapping;
> > EXPORT_SYMBOL_GPL(balloon_mapping);
> > .....
> >
> > I can add an extra commentary, to recollect folks about that usage, next to the
> > points where those callbacks are used at isolate_balloon_page() &
> > putback_balloon_page(). What do you think?
> >
> >
>
>
> I am not strongly against you.
> It trivial nitpick must not prevent your great work. :)
>
> Thanks!
>
>
Nah, I'm the one who should be thanking everyone else here. :)
After a second thought I decided to follow your suggestion on this one as well.
Soon, I'll be posting the re-spin
Thanks Minchan!
Rafael
next prev parent reply other threads:[~2012-07-03 18:31 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-28 21:49 [PATCH v2 0/4] make balloon pages movable by compaction Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-28 21:49 ` [PATCH v2 1/4] mm: introduce compaction and migration for virtio ballooned pages Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-29 5:32 ` Minchan Kim
2012-06-29 5:32 ` Minchan Kim
2012-06-29 5:32 ` Minchan Kim
2012-06-29 17:36 ` Rafael Aquini
2012-06-29 17:36 ` Rafael Aquini
2012-06-29 22:03 ` Minchan Kim
2012-06-29 22:03 ` Minchan Kim
2012-06-29 22:03 ` Minchan Kim
2012-06-30 1:34 ` Rafael Aquini
2012-06-30 1:34 ` Rafael Aquini
2012-07-01 23:36 ` Minchan Kim
2012-07-01 23:36 ` Minchan Kim
2012-07-01 23:36 ` Minchan Kim
2012-07-03 18:31 ` Rafael Aquini [this message]
2012-07-03 18:31 ` Rafael Aquini
2012-07-03 18:31 ` Rafael Aquini
2012-06-30 1:34 ` Rafael Aquini
2012-06-29 17:36 ` Rafael Aquini
2012-06-29 15:31 ` Mel Gorman
2012-06-29 15:31 ` Mel Gorman
2012-06-29 17:43 ` Rafael Aquini
2012-06-29 17:43 ` Rafael Aquini
2012-06-29 17:43 ` Rafael Aquini
2012-06-29 15:31 ` Mel Gorman
2012-06-28 21:49 ` [PATCH v2 2/4] virtio_balloon: handle concurrent accesses to virtio_balloon struct elements Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-28 21:49 ` [PATCH v2 3/4] virtio_balloon: introduce migration primitives to balloon pages Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-28 21:49 ` [PATCH v2 4/4] mm: add vm event counters for balloon pages compaction Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-28 21:49 ` Rafael Aquini
2012-06-29 1:37 ` [PATCH v2 0/4] make balloon pages movable by compaction Minchan Kim
2012-06-29 1:37 ` Minchan Kim
2012-06-29 1:37 ` Minchan Kim
2012-06-29 3:51 ` Rafael Aquini
2012-06-29 3:51 ` Rafael Aquini
2012-06-29 3:51 ` Rafael Aquini
2012-06-29 4:31 ` Rusty Russell
2012-06-29 4:31 ` Rusty Russell
2012-06-29 17:46 ` Rafael Aquini
2012-06-29 17:46 ` Rafael Aquini
2012-06-29 17:46 ` Rafael Aquini
2012-06-29 4:31 ` Rusty Russell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120703183135.GE1727@t510.redhat.com \
--to=aquini@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=andi@firstfloor.org \
--cc=konrad.wilk@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=minchan@kernel.org \
--cc=mst@redhat.com \
--cc=riel@redhat.com \
--cc=virtualization@lists.linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.