From: Rafael Aquini <aquini@redhat.com>
To: KOSAKI Motohiro <kosaki.motohiro@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
"linux-mm@kvack.org" <linux-mm@kvack.org>,
Andrew Morton <akpm@linux-foundation.org>,
Hugh Dickins <hughd@google.com>,
shli@kernel.org, kzak@redhat.com, Jeff Moyer <jmoyer@redhat.com>,
"riel@redhat.com" <riel@redhat.com>,
Larry Woodman <lwoodman@redhat.com>, Mel Gorman <mgorman@suse.de>
Subject: Re: [PATCH 01/02] swap: discard while swapping only if SWAP_FLAG_DISCARD_PAGES
Date: Sun, 26 May 2013 10:52:37 -0300 [thread overview]
Message-ID: <20130526135237.GA2333@x61.redhat.com> (raw)
In-Reply-To: <CAHGf_=qU5nBeya=God5AyG2szvtJJCDd4VOt0TJZBgiEX27Njw@mail.gmail.com>
On Sun, May 26, 2013 at 07:44:56AM -0400, KOSAKI Motohiro wrote:
> > + /*
> > + * By flagging sys_swapon, a sysadmin can tell us to
> > + * either do sinle-time area discards only, or to just
> > + * perform discards for released swap page-clusters.
> > + * Now it's time to adjust the p->flags accordingly.
> > + */
> > + if (swap_flags & SWAP_FLAG_DISCARD_ONCE)
> > + p->flags &= ~SWP_PAGE_DISCARD;
> > + else if (swap_flags & SWAP_FLAG_DISCARD_PAGES)
> > + p->flags &= ~SWP_AREA_DISCARD;
>
> When using old swapon(8), this code turn off both flags, right?
As the flag that enables swap discards SWAP_FLAG_DISCARD remains meaning the
same it meant before, when using old swapon(8) (SWP_PAGE_DISCARD|SWP_AREA_DISCARD)
will remain flagged when discard is enabled, so we keep doing discards the same way
we did before (at swapon, and for every released page-cluster).
The flags are removed orthogonally only when the new swapon(8) selects one of the
particular discard policy available by using either SWAP_FLAG_DISCARD_ONCE,
or SWAP_FLAG_DISCARD_PAGES flags.
--
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: KOSAKI Motohiro <kosaki.motohiro@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
"linux-mm@kvack.org" <linux-mm@kvack.org>,
Andrew Morton <akpm@linux-foundation.org>,
Hugh Dickins <hughd@google.com>,
shli@kernel.org, kzak@redhat.com, Jeff Moyer <jmoyer@redhat.com>,
"riel@redhat.com" <riel@redhat.com>,
Larry Woodman <lwoodman@redhat.com>, Mel Gorman <mgorman@suse.de>
Subject: Re: [PATCH 01/02] swap: discard while swapping only if SWAP_FLAG_DISCARD_PAGES
Date: Sun, 26 May 2013 10:52:37 -0300 [thread overview]
Message-ID: <20130526135237.GA2333@x61.redhat.com> (raw)
In-Reply-To: <CAHGf_=qU5nBeya=God5AyG2szvtJJCDd4VOt0TJZBgiEX27Njw@mail.gmail.com>
On Sun, May 26, 2013 at 07:44:56AM -0400, KOSAKI Motohiro wrote:
> > + /*
> > + * By flagging sys_swapon, a sysadmin can tell us to
> > + * either do sinle-time area discards only, or to just
> > + * perform discards for released swap page-clusters.
> > + * Now it's time to adjust the p->flags accordingly.
> > + */
> > + if (swap_flags & SWAP_FLAG_DISCARD_ONCE)
> > + p->flags &= ~SWP_PAGE_DISCARD;
> > + else if (swap_flags & SWAP_FLAG_DISCARD_PAGES)
> > + p->flags &= ~SWP_AREA_DISCARD;
>
> When using old swapon(8), this code turn off both flags, right?
As the flag that enables swap discards SWAP_FLAG_DISCARD remains meaning the
same it meant before, when using old swapon(8) (SWP_PAGE_DISCARD|SWP_AREA_DISCARD)
will remain flagged when discard is enabled, so we keep doing discards the same way
we did before (at swapon, and for every released page-cluster).
The flags are removed orthogonally only when the new swapon(8) selects one of the
particular discard policy available by using either SWAP_FLAG_DISCARD_ONCE,
or SWAP_FLAG_DISCARD_PAGES flags.
next prev parent reply other threads:[~2013-05-26 13:52 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-26 4:31 [PATCH 00/02] swap: allowing a more flexible DISCARD policy V2 Rafael Aquini
2013-05-26 4:31 ` Rafael Aquini
2013-05-26 4:31 ` [PATCH 01/02] swap: discard while swapping only if SWAP_FLAG_DISCARD_PAGES Rafael Aquini
2013-05-26 4:31 ` Rafael Aquini
2013-05-26 11:44 ` KOSAKI Motohiro
2013-05-26 11:44 ` KOSAKI Motohiro
2013-05-26 13:52 ` Rafael Aquini [this message]
2013-05-26 13:52 ` Rafael Aquini
2013-05-26 14:55 ` KOSAKI Motohiro
2013-05-26 14:55 ` KOSAKI Motohiro
2013-05-26 15:30 ` Rafael Aquini
2013-05-26 15:30 ` Rafael Aquini
2013-05-26 16:02 ` KOSAKI Motohiro
2013-05-26 16:02 ` KOSAKI Motohiro
2013-06-28 2:14 ` Shaohua Li
2013-06-28 2:14 ` Shaohua Li
2013-05-26 4:31 ` [PATCH 02/02] swapon: allow a more flexible swap discard policy Rafael Aquini
2013-05-26 4:31 ` Rafael Aquini
2013-05-26 16:32 ` KOSAKI Motohiro
2013-05-26 16:32 ` KOSAKI Motohiro
2013-08-23 11:03 ` Karel Zak
2013-08-23 11:03 ` Karel Zak
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=20130526135237.GA2333@x61.redhat.com \
--to=aquini@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=hughd@google.com \
--cc=jmoyer@redhat.com \
--cc=kosaki.motohiro@gmail.com \
--cc=kzak@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lwoodman@redhat.com \
--cc=mgorman@suse.de \
--cc=riel@redhat.com \
--cc=shli@kernel.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.