lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 02 Oct 2013 18:15:10 -0700
From:	"Nicholas A. Bellinger" <nab@...ux-iscsi.org>
To:	Nick Swenson <nks@...erainc.com>
Cc:	linux-kernel <linux-kernel@...r.kernel.org>,
	target-devel <target-devel@...r.kernel.org>,
	Kent Overstreet <kmo@...erainc.com>
Subject: Re: [PATCH] percpu_ida: Removing unused arguement from
 alloc_local_tag

On Wed, 2013-10-02 at 17:55 -0700, Nick Swenson wrote:
> Removing unused struct percpu_ida *pool from arguemnts of
> alloc_local_tag, changed it's one use in idr.c
> 
> Signed-Off-By: Nick Swenson <nks@...erainc.com>
> ---

Nice patch, but the upstream version of percpu_ida lives in
lib/percpu_ida.c, and not lib/idr.c.  :-)

Soooo, modified your patch to use this location instead, and applied
target-pending/for-next.

Thanks!

--nab

>  lib/idr.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/lib/idr.c b/lib/idr.c
> index 26495e1..86e8f73 100644
> --- a/lib/idr.c
> +++ b/lib/idr.c
> @@ -1254,8 +1254,7 @@ static inline void alloc_global_tags(struct percpu_ida *pool,
>  		  min(pool->nr_free, IDA_PCPU_BATCH_MOVE));
>  }
>  
> -static inline unsigned alloc_local_tag(struct percpu_ida *pool,
> -				       struct percpu_ida_cpu *tags)
> +static inline unsigned alloc_local_tag(struct percpu_ida_cpu *tags)
>  {
>  	int tag = -ENOSPC;
>  
> @@ -1291,7 +1290,7 @@ int percpu_ida_alloc(struct percpu_ida *pool, gfp_t gfp)
>  	tags = this_cpu_ptr(pool->tag_cpu);
>  
>  	/* Fastpath */
> -	tag = alloc_local_tag(pool, tags);
> +	tag = alloc_local_tag(tags);
>  	if (likely(tag >= 0)) {
>  		local_irq_restore(flags);
>  		return tag;


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ