Blame view

lib/percpu_ida.c 9.53 KB
798ab48ee   Kent Overstreet   idr: Percpu ida
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /*
   * Percpu IDA library
   *
   * Copyright (C) 2013 Datera, Inc. Kent Overstreet
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License as
   * published by the Free Software Foundation; either version 2, or (at
   * your option) any later version.
   *
   * This program is distributed in the hope that it will be useful, but
   * WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * General Public License for more details.
   */
fd7712337   Ingo Molnar   sched/headers: Pr...
16
  #include <linux/mm.h>
798ab48ee   Kent Overstreet   idr: Percpu ida
17
18
19
20
21
  #include <linux/bitmap.h>
  #include <linux/bitops.h>
  #include <linux/bug.h>
  #include <linux/err.h>
  #include <linux/export.h>
798ab48ee   Kent Overstreet   idr: Percpu ida
22
23
24
  #include <linux/init.h>
  #include <linux/kernel.h>
  #include <linux/percpu.h>
174cd4b1e   Ingo Molnar   sched/headers: Pr...
25
  #include <linux/sched/signal.h>
798ab48ee   Kent Overstreet   idr: Percpu ida
26
27
28
  #include <linux/string.h>
  #include <linux/spinlock.h>
  #include <linux/percpu_ida.h>
798ab48ee   Kent Overstreet   idr: Percpu ida
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  struct percpu_ida_cpu {
  	/*
  	 * Even though this is percpu, we need a lock for tag stealing by remote
  	 * CPUs:
  	 */
  	spinlock_t			lock;
  
  	/* nr_free/freelist form a stack of free IDs */
  	unsigned			nr_free;
  	unsigned			freelist[];
  };
  
  static inline void move_tags(unsigned *dst, unsigned *dst_nr,
  			     unsigned *src, unsigned *src_nr,
  			     unsigned nr)
  {
  	*src_nr -= nr;
  	memcpy(dst + *dst_nr, src + *src_nr, sizeof(unsigned) * nr);
  	*dst_nr += nr;
  }
  
  /*
   * Try to steal tags from a remote cpu's percpu freelist.
   *
d835502f3   Shaohua Li   percpu_ida: fix a...
53
   * We first check how many percpu freelists have tags
798ab48ee   Kent Overstreet   idr: Percpu ida
54
55
56
57
58
59
60
61
62
63
64
65
   *
   * Then we iterate through the cpus until we find some tags - we don't attempt
   * to find the "best" cpu to steal from, to keep cacheline bouncing to a
   * minimum.
   */
  static inline void steal_tags(struct percpu_ida *pool,
  			      struct percpu_ida_cpu *tags)
  {
  	unsigned cpus_have_tags, cpu = pool->cpu_last_stolen;
  	struct percpu_ida_cpu *remote;
  
  	for (cpus_have_tags = cpumask_weight(&pool->cpus_have_tags);
d835502f3   Shaohua Li   percpu_ida: fix a...
66
  	     cpus_have_tags; cpus_have_tags--) {
798ab48ee   Kent Overstreet   idr: Percpu ida
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  		cpu = cpumask_next(cpu, &pool->cpus_have_tags);
  
  		if (cpu >= nr_cpu_ids) {
  			cpu = cpumask_first(&pool->cpus_have_tags);
  			if (cpu >= nr_cpu_ids)
  				BUG();
  		}
  
  		pool->cpu_last_stolen = cpu;
  		remote = per_cpu_ptr(pool->tag_cpu, cpu);
  
  		cpumask_clear_cpu(cpu, &pool->cpus_have_tags);
  
  		if (remote == tags)
  			continue;
  
  		spin_lock(&remote->lock);
  
  		if (remote->nr_free) {
  			memcpy(tags->freelist,
  			       remote->freelist,
  			       sizeof(unsigned) * remote->nr_free);
  
  			tags->nr_free = remote->nr_free;
  			remote->nr_free = 0;
  		}
  
  		spin_unlock(&remote->lock);
  
  		if (tags->nr_free)
  			break;
  	}
  }
  
  /*
   * Pop up to IDA_PCPU_BATCH_MOVE IDs off the global freelist, and push them onto
   * our percpu freelist:
   */
  static inline void alloc_global_tags(struct percpu_ida *pool,
  				     struct percpu_ida_cpu *tags)
  {
  	move_tags(tags->freelist, &tags->nr_free,
  		  pool->freelist, &pool->nr_free,
e26b53d0b   Shaohua Li   percpu_ida: make ...
110
  		  min(pool->nr_free, pool->percpu_batch_size));
798ab48ee   Kent Overstreet   idr: Percpu ida
111
  }
6b3783823   Nick Swenson   percpu_ida: Remov...
112
  static inline unsigned alloc_local_tag(struct percpu_ida_cpu *tags)
798ab48ee   Kent Overstreet   idr: Percpu ida
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  {
  	int tag = -ENOSPC;
  
  	spin_lock(&tags->lock);
  	if (tags->nr_free)
  		tag = tags->freelist[--tags->nr_free];
  	spin_unlock(&tags->lock);
  
  	return tag;
  }
  
  /**
   * percpu_ida_alloc - allocate a tag
   * @pool: pool to allocate from
6f6b5d1ec   Kent Overstreet   percpu_ida: Make ...
127
   * @state: task state for prepare_to_wait
798ab48ee   Kent Overstreet   idr: Percpu ida
128
129
130
131
132
   *
   * Returns a tag - an integer in the range [0..nr_tags) (passed to
   * tag_pool_init()), or otherwise -ENOSPC on allocation failure.
   *
   * Safe to be called from interrupt context (assuming it isn't passed
555b270e2   Nicholas Bellinger   iscsi-target: Fix...
133
   * TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE, of course).
798ab48ee   Kent Overstreet   idr: Percpu ida
134
135
   *
   * @gfp indicates whether or not to wait until a free id is available (it's not
71baba4b9   Mel Gorman   mm, page_alloc: r...
136
   * used for internal memory allocations); thus if passed __GFP_RECLAIM we may sleep
798ab48ee   Kent Overstreet   idr: Percpu ida
137
138
139
   * however long it takes until another thread frees an id (same semantics as a
   * mempool).
   *
555b270e2   Nicholas Bellinger   iscsi-target: Fix...
140
   * Will not fail if passed TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE.
798ab48ee   Kent Overstreet   idr: Percpu ida
141
   */
6f6b5d1ec   Kent Overstreet   percpu_ida: Make ...
142
  int percpu_ida_alloc(struct percpu_ida *pool, int state)
798ab48ee   Kent Overstreet   idr: Percpu ida
143
144
145
146
147
148
149
150
151
152
  {
  	DEFINE_WAIT(wait);
  	struct percpu_ida_cpu *tags;
  	unsigned long flags;
  	int tag;
  
  	local_irq_save(flags);
  	tags = this_cpu_ptr(pool->tag_cpu);
  
  	/* Fastpath */
6b3783823   Nick Swenson   percpu_ida: Remov...
153
  	tag = alloc_local_tag(tags);
798ab48ee   Kent Overstreet   idr: Percpu ida
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
  	if (likely(tag >= 0)) {
  		local_irq_restore(flags);
  		return tag;
  	}
  
  	while (1) {
  		spin_lock(&pool->lock);
  
  		/*
  		 * prepare_to_wait() must come before steal_tags(), in case
  		 * percpu_ida_free() on another cpu flips a bit in
  		 * cpus_have_tags
  		 *
  		 * global lock held and irqs disabled, don't need percpu lock
  		 */
6f6b5d1ec   Kent Overstreet   percpu_ida: Make ...
169
170
  		if (state != TASK_RUNNING)
  			prepare_to_wait(&pool->wait, &wait, state);
798ab48ee   Kent Overstreet   idr: Percpu ida
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
  
  		if (!tags->nr_free)
  			alloc_global_tags(pool, tags);
  		if (!tags->nr_free)
  			steal_tags(pool, tags);
  
  		if (tags->nr_free) {
  			tag = tags->freelist[--tags->nr_free];
  			if (tags->nr_free)
  				cpumask_set_cpu(smp_processor_id(),
  						&pool->cpus_have_tags);
  		}
  
  		spin_unlock(&pool->lock);
  		local_irq_restore(flags);
6f6b5d1ec   Kent Overstreet   percpu_ida: Make ...
186
  		if (tag >= 0 || state == TASK_RUNNING)
798ab48ee   Kent Overstreet   idr: Percpu ida
187
  			break;
555b270e2   Nicholas Bellinger   iscsi-target: Fix...
188
189
190
191
  		if (signal_pending_state(state, current)) {
  			tag = -ERESTARTSYS;
  			break;
  		}
798ab48ee   Kent Overstreet   idr: Percpu ida
192
193
194
195
196
  		schedule();
  
  		local_irq_save(flags);
  		tags = this_cpu_ptr(pool->tag_cpu);
  	}
6f6b5d1ec   Kent Overstreet   percpu_ida: Make ...
197
198
  	if (state != TASK_RUNNING)
  		finish_wait(&pool->wait, &wait);
798ab48ee   Kent Overstreet   idr: Percpu ida
199

798ab48ee   Kent Overstreet   idr: Percpu ida
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
  	return tag;
  }
  EXPORT_SYMBOL_GPL(percpu_ida_alloc);
  
  /**
   * percpu_ida_free - free a tag
   * @pool: pool @tag was allocated from
   * @tag: a tag previously allocated with percpu_ida_alloc()
   *
   * Safe to be called from interrupt context.
   */
  void percpu_ida_free(struct percpu_ida *pool, unsigned tag)
  {
  	struct percpu_ida_cpu *tags;
  	unsigned long flags;
  	unsigned nr_free;
  
  	BUG_ON(tag >= pool->nr_tags);
  
  	local_irq_save(flags);
  	tags = this_cpu_ptr(pool->tag_cpu);
  
  	spin_lock(&tags->lock);
  	tags->freelist[tags->nr_free++] = tag;
  
  	nr_free = tags->nr_free;
  	spin_unlock(&tags->lock);
  
  	if (nr_free == 1) {
  		cpumask_set_cpu(smp_processor_id(),
  				&pool->cpus_have_tags);
  		wake_up(&pool->wait);
  	}
e26b53d0b   Shaohua Li   percpu_ida: make ...
233
  	if (nr_free == pool->percpu_max_size) {
798ab48ee   Kent Overstreet   idr: Percpu ida
234
235
236
237
238
239
  		spin_lock(&pool->lock);
  
  		/*
  		 * Global lock held and irqs disabled, don't need percpu
  		 * lock
  		 */
e26b53d0b   Shaohua Li   percpu_ida: make ...
240
  		if (tags->nr_free == pool->percpu_max_size) {
798ab48ee   Kent Overstreet   idr: Percpu ida
241
242
  			move_tags(pool->freelist, &pool->nr_free,
  				  tags->freelist, &tags->nr_free,
e26b53d0b   Shaohua Li   percpu_ida: make ...
243
  				  pool->percpu_batch_size);
798ab48ee   Kent Overstreet   idr: Percpu ida
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
  
  			wake_up(&pool->wait);
  		}
  		spin_unlock(&pool->lock);
  	}
  
  	local_irq_restore(flags);
  }
  EXPORT_SYMBOL_GPL(percpu_ida_free);
  
  /**
   * percpu_ida_destroy - release a tag pool's resources
   * @pool: pool to free
   *
   * Frees the resources allocated by percpu_ida_init().
   */
  void percpu_ida_destroy(struct percpu_ida *pool)
  {
  	free_percpu(pool->tag_cpu);
  	free_pages((unsigned long) pool->freelist,
  		   get_order(pool->nr_tags * sizeof(unsigned)));
  }
  EXPORT_SYMBOL_GPL(percpu_ida_destroy);
  
  /**
   * percpu_ida_init - initialize a percpu tag pool
   * @pool: pool to initialize
   * @nr_tags: number of tags that will be available for allocation
   *
   * Initializes @pool so that it can be used to allocate tags - integers in the
   * range [0, nr_tags). Typically, they'll be used by driver code to refer to a
   * preallocated array of tag structures.
   *
   * Allocation is percpu, but sharding is limited by nr_tags - for best
   * performance, the workload should not span more cpus than nr_tags / 128.
   */
e26b53d0b   Shaohua Li   percpu_ida: make ...
280
281
  int __percpu_ida_init(struct percpu_ida *pool, unsigned long nr_tags,
  	unsigned long max_size, unsigned long batch_size)
798ab48ee   Kent Overstreet   idr: Percpu ida
282
283
284
285
286
287
288
289
  {
  	unsigned i, cpu, order;
  
  	memset(pool, 0, sizeof(*pool));
  
  	init_waitqueue_head(&pool->wait);
  	spin_lock_init(&pool->lock);
  	pool->nr_tags = nr_tags;
e26b53d0b   Shaohua Li   percpu_ida: make ...
290
291
  	pool->percpu_max_size = max_size;
  	pool->percpu_batch_size = batch_size;
798ab48ee   Kent Overstreet   idr: Percpu ida
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
  
  	/* Guard against overflow */
  	if (nr_tags > (unsigned) INT_MAX + 1) {
  		pr_err("percpu_ida_init(): nr_tags too large
  ");
  		return -EINVAL;
  	}
  
  	order = get_order(nr_tags * sizeof(unsigned));
  	pool->freelist = (void *) __get_free_pages(GFP_KERNEL, order);
  	if (!pool->freelist)
  		return -ENOMEM;
  
  	for (i = 0; i < nr_tags; i++)
  		pool->freelist[i] = i;
  
  	pool->nr_free = nr_tags;
  
  	pool->tag_cpu = __alloc_percpu(sizeof(struct percpu_ida_cpu) +
e26b53d0b   Shaohua Li   percpu_ida: make ...
311
  				       pool->percpu_max_size * sizeof(unsigned),
798ab48ee   Kent Overstreet   idr: Percpu ida
312
313
314
315
316
317
318
319
320
321
322
323
  				       sizeof(unsigned));
  	if (!pool->tag_cpu)
  		goto err;
  
  	for_each_possible_cpu(cpu)
  		spin_lock_init(&per_cpu_ptr(pool->tag_cpu, cpu)->lock);
  
  	return 0;
  err:
  	percpu_ida_destroy(pool);
  	return -ENOMEM;
  }
e26b53d0b   Shaohua Li   percpu_ida: make ...
324
  EXPORT_SYMBOL_GPL(__percpu_ida_init);
7fc2ba17e   Shaohua Li   percpu_ida: add p...
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
  
  /**
   * percpu_ida_for_each_free - iterate free ids of a pool
   * @pool: pool to iterate
   * @fn: interate callback function
   * @data: parameter for @fn
   *
   * Note, this doesn't guarantee to iterate all free ids restrictly. Some free
   * ids might be missed, some might be iterated duplicated, and some might
   * be iterated and not free soon.
   */
  int percpu_ida_for_each_free(struct percpu_ida *pool, percpu_ida_cb fn,
  	void *data)
  {
  	unsigned long flags;
  	struct percpu_ida_cpu *remote;
  	unsigned cpu, i, err = 0;
  
  	local_irq_save(flags);
  	for_each_possible_cpu(cpu) {
  		remote = per_cpu_ptr(pool->tag_cpu, cpu);
  		spin_lock(&remote->lock);
  		for (i = 0; i < remote->nr_free; i++) {
  			err = fn(remote->freelist[i], data);
  			if (err)
  				break;
  		}
  		spin_unlock(&remote->lock);
  		if (err)
  			goto out;
  	}
  
  	spin_lock(&pool->lock);
  	for (i = 0; i < pool->nr_free; i++) {
  		err = fn(pool->freelist[i], data);
  		if (err)
  			break;
  	}
  	spin_unlock(&pool->lock);
  out:
  	local_irq_restore(flags);
  	return err;
  }
  EXPORT_SYMBOL_GPL(percpu_ida_for_each_free);
1dddc01af   Shaohua Li   percpu_ida: add a...
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
  
  /**
   * percpu_ida_free_tags - return free tags number of a specific cpu or global pool
   * @pool: pool related
   * @cpu: specific cpu or global pool if @cpu == nr_cpu_ids
   *
   * Note: this just returns a snapshot of free tags number.
   */
  unsigned percpu_ida_free_tags(struct percpu_ida *pool, int cpu)
  {
  	struct percpu_ida_cpu *remote;
  	if (cpu == nr_cpu_ids)
  		return pool->nr_free;
  	remote = per_cpu_ptr(pool->tag_cpu, cpu);
  	return remote->nr_free;
  }
  EXPORT_SYMBOL_GPL(percpu_ida_free_tags);