mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Seth Jennings <sjennings@variantweb.net>
To: Fabian Frederick <fabf@skynet.be>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	akpm <akpm@linux-foundation.org>
Subject: Re: [PATCH 1/1] MM/ZBUD: make size unsigned like unique callsite
Date: Fri, 2 May 2014 11:15:11 -0500	[thread overview]
Message-ID: <20140502161511.GA1711@cerebellum.variantweb.net> (raw)
In-Reply-To: <20140430211836.a6ab920079485e8d1cc01121@skynet.be>

On Wed, Apr 30, 2014 at 09:18:36PM +0200, Fabian Frederick wrote:
> zbud_alloc is only called by zswap_frontswap_store with unsigned int len.
> Change function parameter + update  >= 0 check.

Thanks for the cleanup!

Acked-by: Seth Jennings <sjennings@variantweb.net>

> 
> Cc: Seth Jennings <sjenning@linux.vnet.ibm.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Signed-off-by: Fabian Frederick <fabf@skynet.be>
> ---
>  include/linux/zbud.h | 2 +-
>  mm/zbud.c            | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/include/linux/zbud.h b/include/linux/zbud.h
> index 2571a5c..13af0d4 100644
> --- a/include/linux/zbud.h
> +++ b/include/linux/zbud.h
> @@ -11,7 +11,7 @@ struct zbud_ops {
>  
>  struct zbud_pool *zbud_create_pool(gfp_t gfp, struct zbud_ops *ops);
>  void zbud_destroy_pool(struct zbud_pool *pool);
> -int zbud_alloc(struct zbud_pool *pool, int size, gfp_t gfp,
> +int zbud_alloc(struct zbud_pool *pool, unsigned int size, gfp_t gfp,
>  	unsigned long *handle);
>  void zbud_free(struct zbud_pool *pool, unsigned long handle);
>  int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries);
> diff --git a/mm/zbud.c b/mm/zbud.c
> index 9451361..01df13a 100644
> --- a/mm/zbud.c
> +++ b/mm/zbud.c
> @@ -247,7 +247,7 @@ void zbud_destroy_pool(struct zbud_pool *pool)
>   * gfp arguments are invalid or -ENOMEM if the pool was unable to allocate
>   * a new page.
>   */
> -int zbud_alloc(struct zbud_pool *pool, int size, gfp_t gfp,
> +int zbud_alloc(struct zbud_pool *pool, unsigned int size, gfp_t gfp,
>  			unsigned long *handle)
>  {
>  	int chunks, i, freechunks;
> @@ -255,7 +255,7 @@ int zbud_alloc(struct zbud_pool *pool, int size, gfp_t gfp,
>  	enum buddy bud;
>  	struct page *page;
>  
> -	if (size <= 0 || gfp & __GFP_HIGHMEM)
> +	if (!size || (gfp & __GFP_HIGHMEM))
>  		return -EINVAL;
>  	if (size > PAGE_SIZE - ZHDR_SIZE_ALIGNED - CHUNK_SIZE)
>  		return -ENOSPC;
> -- 
> 1.9.1
> 

      reply	other threads:[~2014-05-02 16:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-30 19:18 Fabian Frederick
2014-05-02 16:15 ` Seth Jennings [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=20140502161511.GA1711@cerebellum.variantweb.net \
    --to=sjennings@variantweb.net \
    --cc=akpm@linux-foundation.org \
    --cc=fabf@skynet.be \
    --cc=linux-kernel@vger.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®