Re: [PATCH] percpu_ida: Removing unused arguement fromalloc_local_tag

From: Nicholas A. Bellinger
Date: Wed Oct 02 2013 - 21:06:56 EST


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@xxxxxxxxxxxxx>
> ---

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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/