linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Michal Hocko <mhocko@kernel.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: David Rientjes <rientjes@google.com>,
	linux-mm@kvack.org, Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH v1] mm, vmpressure: Convert to use match_string() helper
Date: Fri, 4 May 2018 16:30:11 +0200	[thread overview]
Message-ID: <20180504143011.GW4535@dhcp22.suse.cz> (raw)
In-Reply-To: <20180503203206.44046-1-andriy.shevchenko@linux.intel.com>

On Thu 03-05-18 23:32:06, Andy Shevchenko wrote:
> The new helper returns index of the matching string in an array.
> We are going to use it here.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Acked-by: Michal Hocko <mhocko@suse.com>

> ---
>  mm/vmpressure.c | 32 ++++++--------------------------
>  1 file changed, 6 insertions(+), 26 deletions(-)
> 
> diff --git a/mm/vmpressure.c b/mm/vmpressure.c
> index 7142207224d3..4854584ec436 100644
> --- a/mm/vmpressure.c
> +++ b/mm/vmpressure.c
> @@ -342,26 +342,6 @@ void vmpressure_prio(gfp_t gfp, struct mem_cgroup *memcg, int prio)
>  	vmpressure(gfp, memcg, true, vmpressure_win, 0);
>  }
>  
> -static enum vmpressure_levels str_to_level(const char *arg)
> -{
> -	enum vmpressure_levels level;
> -
> -	for (level = 0; level < VMPRESSURE_NUM_LEVELS; level++)
> -		if (!strcmp(vmpressure_str_levels[level], arg))
> -			return level;
> -	return -1;
> -}
> -
> -static enum vmpressure_modes str_to_mode(const char *arg)
> -{
> -	enum vmpressure_modes mode;
> -
> -	for (mode = 0; mode < VMPRESSURE_NUM_MODES; mode++)
> -		if (!strcmp(vmpressure_str_modes[mode], arg))
> -			return mode;
> -	return -1;
> -}
> -
>  #define MAX_VMPRESSURE_ARGS_LEN	(strlen("critical") + strlen("hierarchy") + 2)
>  
>  /**
> @@ -398,18 +378,18 @@ int vmpressure_register_event(struct mem_cgroup *memcg,
>  
>  	/* Find required level */
>  	token = strsep(&spec, ",");
> -	level = str_to_level(token);
> -	if (level == -1) {
> -		ret = -EINVAL;
> +	level = match_string(vmpressure_str_levels, VMPRESSURE_NUM_LEVELS, token);
> +	if (level < 0) {
> +		ret = level;
>  		goto out;
>  	}
>  
>  	/* Find optional mode */
>  	token = strsep(&spec, ",");
>  	if (token) {
> -		mode = str_to_mode(token);
> -		if (mode == -1) {
> -			ret = -EINVAL;
> +		mode = match_string(vmpressure_str_modes, VMPRESSURE_NUM_MODES, token);
> +		if (mode < 0) {
> +			ret = mode;
>  			goto out;
>  		}
>  	}
> -- 
> 2.17.0

-- 
Michal Hocko
SUSE Labs

      reply	other threads:[~2018-05-04 14:30 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-03 20:32 Andy Shevchenko
2018-05-04 14:30 ` 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=20180504143011.GW4535@dhcp22.suse.cz \
    --to=mhocko@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=linux-mm@kvack.org \
    --cc=rientjes@google.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