[PATCH] percpu_ida: Removing unused arguement from alloc_local_tag

From: Nick Swenson
Date: Wed Oct 02 2013 - 20:56:17 EST


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>
---
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;
--
1.8.4.rc3

--
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/