From: Michal Hocko <mhocko@suse.cz>
To: sh.yoon@lge.com
Cc: Andrew Morton <akpm@linux-foundation.org>,
linux-mm@kvack.org, seungho1.park@lge.com
Subject: Re: [PATCH] mm: Make zone_reclaim() return ZONE_RECLAIM_NOSCAN not zero
Date: Mon, 29 Jun 2015 14:19:40 +0200 [thread overview]
Message-ID: <20150629121940.GB4617@dhcp22.suse.cz> (raw)
In-Reply-To: <1435286348-26366-1-git-send-email-sh.yoon@lge.com>
On Fri 26-06-15 11:39:08, sh.yoon@lge.com wrote:
> From: "sh.yoon" <sh.yoon@lge.com>
>
> When zone watermark is not ok in get_page_from_freelist(), we call
> zone_reclaim(). But !CONFIG_NUMA system`s zone_reclaim() just returns zero.
> Zero means ZONE_RECLAIM_SOME and check zone watermark again needlessly.
The return value might be indeed confusing, but
> To avoid needless zone watermark check, change it as ZONE_RECLAIM_NOSCAN.
this shouldn't happen because zone_reclaim_mode is always 0 for
!CONFIG_NUMA so we do not even get to call zone_reclaim. So this part of
the changelog is misleading.
> Signed-off-by: sh.yoon <sh.yoon@lge.com>
> ---
> include/linux/swap.h | 7 ++++++-
> mm/internal.h | 5 -----
> 2 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/include/linux/swap.h b/include/linux/swap.h
> index 3887472..e04e435 100644
> --- a/include/linux/swap.h
> +++ b/include/linux/swap.h
> @@ -332,6 +332,11 @@ extern int vm_swappiness;
> extern int remove_mapping(struct address_space *mapping, struct page *page);
> extern unsigned long vm_total_pages;
>
> +#define ZONE_RECLAIM_NOSCAN -2
> +#define ZONE_RECLAIM_FULL -1
> +#define ZONE_RECLAIM_SOME 0
> +#define ZONE_RECLAIM_SUCCESS 1
> +
> #ifdef CONFIG_NUMA
> extern int zone_reclaim_mode;
> extern int sysctl_min_unmapped_ratio;
> @@ -341,7 +346,7 @@ extern int zone_reclaim(struct zone *, gfp_t, unsigned int);
> #define zone_reclaim_mode 0
> static inline int zone_reclaim(struct zone *z, gfp_t mask, unsigned int order)
> {
> - return 0;
> + return ZONE_RECLAIM_NOSCAN;
> }
> #endif
>
> diff --git a/mm/internal.h b/mm/internal.h
> index a25e359..d8ec7f8 100644
> --- a/mm/internal.h
> +++ b/mm/internal.h
> @@ -397,11 +397,6 @@ static inline void mminit_validate_memmodel_limits(unsigned long *start_pfn,
> }
> #endif /* CONFIG_SPARSEMEM */
>
> -#define ZONE_RECLAIM_NOSCAN -2
> -#define ZONE_RECLAIM_FULL -1
> -#define ZONE_RECLAIM_SOME 0
> -#define ZONE_RECLAIM_SUCCESS 1
> -
> extern int hwpoison_filter(struct page *p);
>
> extern u32 hwpoison_filter_dev_major;
> --
> 2.1.4
>
> --
> 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>
--
Michal Hocko
SUSE Labs
--
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>
prev parent reply other threads:[~2015-06-29 12:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-26 2:39 sh.yoon
2015-06-29 12:19 ` Michal Hocko [this message]
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=20150629121940.GB4617@dhcp22.suse.cz \
--to=mhocko@suse.cz \
--cc=akpm@linux-foundation.org \
--cc=linux-mm@kvack.org \
--cc=seungho1.park@lge.com \
--cc=sh.yoon@lge.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox