Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754173Ab3EZQDH (ORCPT ); Sun, 26 May 2013 12:03:07 -0400 Received: from mail-oa0-f44.google.com ([209.85.219.44]:43001 "EHLO mail-oa0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754055Ab3EZQDG (ORCPT ); Sun, 26 May 2013 12:03:06 -0400 MIME-Version: 1.0 In-Reply-To: <20130526153016.GB2333@x61.redhat.com> References: <537407790857e8a5d4db5fb294a909a61be29687.1369529143.git.aquini@redhat.com> <20130526135237.GA2333@x61.redhat.com> <20130526153016.GB2333@x61.redhat.com> From: KOSAKI Motohiro Date: Sun, 26 May 2013 12:02:45 -0400 Message-ID: Subject: Re: [PATCH 01/02] swap: discard while swapping only if SWAP_FLAG_DISCARD_PAGES To: Rafael Aquini Cc: LKML , "linux-mm@kvack.org" , Andrew Morton , Hugh Dickins , shli@kernel.org, Karel Zak , Jeff Moyer , "riel@redhat.com" , Larry Woodman , Mel Gorman Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2087 Lines: 39 On Sun, May 26, 2013 at 11:30 AM, Rafael Aquini wrote: > On Sun, May 26, 2013 at 10:55:32AM -0400, KOSAKI Motohiro wrote: >> On Sun, May 26, 2013 at 9:52 AM, Rafael Aquini wrote: >> > 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) >> >> But old swapon(8) don't use neigher SWAP_FLAG_DISCARD_ONCE nor >> SWAP_FLAG_DISCARD_PAGES. It uses only SWAP_FLAG_DISCARD. So, this >> condition disables both SWP_PAGE_DISCARD and SWP_AREA_DISCARD. >> > > This condition _only_ disables one of the new flags orthogonally if swapon(8) > flags a policy to sys_swapon. As old swapon(8) can only flag SWAP_FLAG_DISCARD, > the original behavior is kept. Nothing will change when one is using an old > swapon(8) with this changeset. Aha, got it. I misunderstood your code. Thank you. Acked-by: KOSAKI Motohiro -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/