blob: 42de9af8c5247b6863bab82a85b6a6e3701188c2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic pidhash and scalable, time-bounded PID allocator
3 *
4 * (C) 2002-2003 William Irwin, IBM
5 * (C) 2004 William Irwin, Oracle
6 * (C) 2002-2004 Ingo Molnar, Red Hat
7 *
8 * pid-structures are backing objects for tasks sharing a given ID to chain
9 * against. There is very little to them aside from hashing them and
10 * parking tasks using given ID's on a list.
11 *
12 * The hash is always changed with the tasklist_lock write-acquired,
13 * and the hash is only accessed with the tasklist_lock at least
14 * read-acquired, so there's no additional SMP locking needed here.
15 *
16 * We have a list of bitmap pages, which bitmaps represent the PID space.
17 * Allocating and freeing PIDs is completely lockless. The worst-case
18 * allocation scenario when all but one out of 1 million PIDs possible are
19 * allocated already: the scanning of 32 list entries and at most PAGE_SIZE
20 * bytes. The typical fastpath is a single successful setbit. Freeing is O(1).
21 */
22
23#include <linux/mm.h>
24#include <linux/module.h>
25#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/bootmem.h>
28#include <linux/hash.h>
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080029#include <linux/pid_namespace.h>
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070030#include <linux/init_task.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#define pid_hashfn(nr) hash_long((unsigned long)nr, pidhash_shift)
Eric W. Biederman92476d72006-03-31 02:31:42 -080033static struct hlist_head *pid_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static int pidhash_shift;
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070035struct pid init_struct_pid = INIT_STRUCT_PID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37int pid_max = PID_MAX_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#define RESERVED_PIDS 300
40
41int pid_max_min = RESERVED_PIDS + 1;
42int pid_max_max = PID_MAX_LIMIT;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define BITS_PER_PAGE (PAGE_SIZE*8)
45#define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1)
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070046
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080047static inline int mk_pid(struct pid_namespace *pid_ns,
48 struct pidmap *map, int off)
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070049{
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080050 return (map - pid_ns->pidmap)*BITS_PER_PAGE + off;
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070051}
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define find_next_offset(map, off) \
54 find_next_zero_bit((map)->page, BITS_PER_PAGE, off)
55
56/*
57 * PID-map pages start out as NULL, they get allocated upon
58 * first use and are never deallocated. This way a low pid_max
59 * value does not cause lots of bitmaps to be allocated, but
60 * the scheme scales to up to 4 million PIDs, runtime.
61 */
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080062struct pid_namespace init_pid_ns = {
Cedric Le Goater9a575a92006-12-08 02:37:59 -080063 .kref = {
64 .refcount = ATOMIC_INIT(2),
65 },
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070066 .pidmap = {
67 [ 0 ... PIDMAP_ENTRIES-1] = { ATOMIC_INIT(BITS_PER_PAGE), NULL }
68 },
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080069 .last_pid = 0,
70 .child_reaper = &init_task
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070071};
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Eric W. Biederman92476d72006-03-31 02:31:42 -080073/*
74 * Note: disable interrupts while the pidmap_lock is held as an
75 * interrupt might come in and do read_lock(&tasklist_lock).
76 *
77 * If we don't disable interrupts there is a nasty deadlock between
78 * detach_pid()->free_pid() and another cpu that does
79 * spin_lock(&pidmap_lock) followed by an interrupt routine that does
80 * read_lock(&tasklist_lock);
81 *
82 * After we clean up the tasklist_lock and know there are no
83 * irq handlers that take it we can leave the interrupts enabled.
84 * For now it is easier to be safe than to prove it can't happen.
85 */
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static __cacheline_aligned_in_smp DEFINE_SPINLOCK(pidmap_lock);
88
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080089static fastcall void free_pidmap(struct pid_namespace *pid_ns, int pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080091 struct pidmap *map = pid_ns->pidmap + pid / BITS_PER_PAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int offset = pid & BITS_PER_PAGE_MASK;
93
94 clear_bit(offset, map->page);
95 atomic_inc(&map->nr_free);
96}
97
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080098static int alloc_pidmap(struct pid_namespace *pid_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800100 int i, offset, max_scan, pid, last = pid_ns->last_pid;
Sukadev Bhattiprolu6a1f3b82006-10-02 02:17:20 -0700101 struct pidmap *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 pid = last + 1;
104 if (pid >= pid_max)
105 pid = RESERVED_PIDS;
106 offset = pid & BITS_PER_PAGE_MASK;
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800107 map = &pid_ns->pidmap[pid/BITS_PER_PAGE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 max_scan = (pid_max + BITS_PER_PAGE - 1)/BITS_PER_PAGE - !offset;
109 for (i = 0; i <= max_scan; ++i) {
110 if (unlikely(!map->page)) {
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -0700111 void *page = kzalloc(PAGE_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 /*
113 * Free the page if someone raced with us
114 * installing it:
115 */
Eric W. Biederman92476d72006-03-31 02:31:42 -0800116 spin_lock_irq(&pidmap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (map->page)
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -0700118 kfree(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 else
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -0700120 map->page = page;
Eric W. Biederman92476d72006-03-31 02:31:42 -0800121 spin_unlock_irq(&pidmap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (unlikely(!map->page))
123 break;
124 }
125 if (likely(atomic_read(&map->nr_free))) {
126 do {
127 if (!test_and_set_bit(offset, map->page)) {
128 atomic_dec(&map->nr_free);
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800129 pid_ns->last_pid = pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return pid;
131 }
132 offset = find_next_offset(map, offset);
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800133 pid = mk_pid(pid_ns, map, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /*
135 * find_next_offset() found a bit, the pid from it
136 * is in-bounds, and if we fell back to the last
137 * bitmap block and the final block was the same
138 * as the starting point, pid is before last_pid.
139 */
140 } while (offset < BITS_PER_PAGE && pid < pid_max &&
141 (i != max_scan || pid < last ||
142 !((last+1) & BITS_PER_PAGE_MASK)));
143 }
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800144 if (map < &pid_ns->pidmap[(pid_max-1)/BITS_PER_PAGE]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 ++map;
146 offset = 0;
147 } else {
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800148 map = &pid_ns->pidmap[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 offset = RESERVED_PIDS;
150 if (unlikely(last == offset))
151 break;
152 }
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800153 pid = mk_pid(pid_ns, map, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 return -1;
156}
157
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800158static int next_pidmap(struct pid_namespace *pid_ns, int last)
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700159{
160 int offset;
Eric W. Biedermanf40f50d2006-10-02 02:17:25 -0700161 struct pidmap *map, *end;
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700162
163 offset = (last + 1) & BITS_PER_PAGE_MASK;
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800164 map = &pid_ns->pidmap[(last + 1)/BITS_PER_PAGE];
165 end = &pid_ns->pidmap[PIDMAP_ENTRIES];
Eric W. Biedermanf40f50d2006-10-02 02:17:25 -0700166 for (; map < end; map++, offset = 0) {
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700167 if (unlikely(!map->page))
168 continue;
169 offset = find_next_bit((map)->page, BITS_PER_PAGE, offset);
170 if (offset < BITS_PER_PAGE)
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800171 return mk_pid(pid_ns, map, offset);
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700172 }
173 return -1;
174}
175
Eric W. Biederman92476d72006-03-31 02:31:42 -0800176fastcall void put_pid(struct pid *pid)
177{
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700178 struct pid_namespace *ns;
179
Eric W. Biederman92476d72006-03-31 02:31:42 -0800180 if (!pid)
181 return;
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700182
183 /* FIXME - this must be the namespace this pid lives in */
184 ns = &init_pid_ns;
Eric W. Biederman92476d72006-03-31 02:31:42 -0800185 if ((atomic_read(&pid->count) == 1) ||
186 atomic_dec_and_test(&pid->count))
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700187 kmem_cache_free(ns->pid_cachep, pid);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800188}
Eric W. Biedermanbbf73142006-10-02 02:17:11 -0700189EXPORT_SYMBOL_GPL(put_pid);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800190
191static void delayed_put_pid(struct rcu_head *rhp)
192{
193 struct pid *pid = container_of(rhp, struct pid, rcu);
194 put_pid(pid);
195}
196
197fastcall void free_pid(struct pid *pid)
198{
199 /* We can be called with write_lock_irq(&tasklist_lock) held */
200 unsigned long flags;
201
202 spin_lock_irqsave(&pidmap_lock, flags);
203 hlist_del_rcu(&pid->pid_chain);
204 spin_unlock_irqrestore(&pidmap_lock, flags);
205
Serge E. Hallyn0f245282007-01-30 15:28:23 -0600206 free_pidmap(&init_pid_ns, pid->nr);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800207 call_rcu(&pid->rcu, delayed_put_pid);
208}
209
210struct pid *alloc_pid(void)
211{
212 struct pid *pid;
213 enum pid_type type;
214 int nr = -1;
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700215 struct pid_namespace *ns;
Eric W. Biederman92476d72006-03-31 02:31:42 -0800216
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700217 ns = current->nsproxy->pid_ns;
218 pid = kmem_cache_alloc(ns->pid_cachep, GFP_KERNEL);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800219 if (!pid)
220 goto out;
221
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700222 nr = alloc_pidmap(ns);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800223 if (nr < 0)
224 goto out_free;
225
226 atomic_set(&pid->count, 1);
227 pid->nr = nr;
228 for (type = 0; type < PIDTYPE_MAX; ++type)
229 INIT_HLIST_HEAD(&pid->tasks[type]);
230
231 spin_lock_irq(&pidmap_lock);
232 hlist_add_head_rcu(&pid->pid_chain, &pid_hash[pid_hashfn(pid->nr)]);
233 spin_unlock_irq(&pidmap_lock);
234
235out:
236 return pid;
237
238out_free:
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700239 kmem_cache_free(ns->pid_cachep, pid);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800240 pid = NULL;
241 goto out;
242}
243
244struct pid * fastcall find_pid(int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 struct hlist_node *elem;
247 struct pid *pid;
248
Ingo Molnare56d0902006-01-08 01:01:37 -0800249 hlist_for_each_entry_rcu(pid, elem,
Eric W. Biederman92476d72006-03-31 02:31:42 -0800250 &pid_hash[pid_hashfn(nr)], pid_chain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (pid->nr == nr)
252 return pid;
253 }
254 return NULL;
255}
Eric W. Biedermanbbf73142006-10-02 02:17:11 -0700256EXPORT_SYMBOL_GPL(find_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Sukadev Bhattiprolue713d0d2007-05-10 22:22:58 -0700258/*
259 * attach_pid() must be called with the tasklist_lock write-held.
260 */
261int fastcall attach_pid(struct task_struct *task, enum pid_type type,
262 struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Eric W. Biederman92476d72006-03-31 02:31:42 -0800264 struct pid_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Eric W. Biederman92476d72006-03-31 02:31:42 -0800266 link = &task->pids[type];
Sukadev Bhattiprolue713d0d2007-05-10 22:22:58 -0700267 link->pid = pid;
Eric W. Biederman92476d72006-03-31 02:31:42 -0800268 hlist_add_head_rcu(&link->node, &pid->tasks[type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 return 0;
271}
272
Ingo Molnar36c8b582006-07-03 00:25:41 -0700273void fastcall detach_pid(struct task_struct *task, enum pid_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Eric W. Biederman92476d72006-03-31 02:31:42 -0800275 struct pid_link *link;
276 struct pid *pid;
277 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Eric W. Biederman92476d72006-03-31 02:31:42 -0800279 link = &task->pids[type];
280 pid = link->pid;
281
282 hlist_del_rcu(&link->node);
283 link->pid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 for (tmp = PIDTYPE_MAX; --tmp >= 0; )
Eric W. Biederman92476d72006-03-31 02:31:42 -0800286 if (!hlist_empty(&pid->tasks[tmp]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return;
288
Eric W. Biederman92476d72006-03-31 02:31:42 -0800289 free_pid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Eric W. Biedermanc18258c2006-09-27 01:51:06 -0700292/* transfer_pid is an optimization of attach_pid(new), detach_pid(old) */
293void fastcall transfer_pid(struct task_struct *old, struct task_struct *new,
294 enum pid_type type)
295{
296 new->pids[type].pid = old->pids[type].pid;
297 hlist_replace_rcu(&old->pids[type].node, &new->pids[type].node);
298 old->pids[type].pid = NULL;
299}
300
Eric W. Biederman92476d72006-03-31 02:31:42 -0800301struct task_struct * fastcall pid_task(struct pid *pid, enum pid_type type)
302{
303 struct task_struct *result = NULL;
304 if (pid) {
305 struct hlist_node *first;
306 first = rcu_dereference(pid->tasks[type].first);
307 if (first)
308 result = hlist_entry(first, struct task_struct, pids[(type)].node);
309 }
310 return result;
311}
312
313/*
314 * Must be called under rcu_read_lock() or with tasklist_lock read-held.
315 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700316struct task_struct *find_task_by_pid_type(int type, int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Eric W. Biederman92476d72006-03-31 02:31:42 -0800318 return pid_task(find_pid(nr), type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
321EXPORT_SYMBOL(find_task_by_pid_type);
322
Oleg Nesterov1a657f782006-10-02 02:18:59 -0700323struct pid *get_task_pid(struct task_struct *task, enum pid_type type)
324{
325 struct pid *pid;
326 rcu_read_lock();
327 pid = get_pid(task->pids[type].pid);
328 rcu_read_unlock();
329 return pid;
330}
331
Eric W. Biederman92476d72006-03-31 02:31:42 -0800332struct task_struct *fastcall get_pid_task(struct pid *pid, enum pid_type type)
333{
334 struct task_struct *result;
335 rcu_read_lock();
336 result = pid_task(pid, type);
337 if (result)
338 get_task_struct(result);
339 rcu_read_unlock();
340 return result;
341}
342
343struct pid *find_get_pid(pid_t nr)
344{
345 struct pid *pid;
346
347 rcu_read_lock();
348 pid = get_pid(find_pid(nr));
349 rcu_read_unlock();
350
351 return pid;
352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700355 * Used by proc to find the first pid that is greater then or equal to nr.
356 *
357 * If there is a pid at nr this function is exactly the same as find_pid.
358 */
359struct pid *find_ge_pid(int nr)
360{
361 struct pid *pid;
362
363 do {
364 pid = find_pid(nr);
365 if (pid)
366 break;
Cedric Le Goater6cc1b222006-12-08 02:38:00 -0800367 nr = next_pidmap(current->nsproxy->pid_ns, nr);
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700368 } while (nr > 0);
369
370 return pid;
371}
Eric W. Biedermanbbf73142006-10-02 02:17:11 -0700372EXPORT_SYMBOL_GPL(find_get_pid);
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700373
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700374struct pid_cache {
375 int nr_ids;
376 char name[16];
377 struct kmem_cache *cachep;
378 struct list_head list;
379};
380
381static LIST_HEAD(pid_caches_lh);
382static DEFINE_MUTEX(pid_caches_mutex);
383
384/*
385 * creates the kmem cache to allocate pids from.
386 * @nr_ids: the number of numerical ids this pid will have to carry
387 */
388
389static struct kmem_cache *create_pid_cachep(int nr_ids)
390{
391 struct pid_cache *pcache;
392 struct kmem_cache *cachep;
393
394 mutex_lock(&pid_caches_mutex);
395 list_for_each_entry (pcache, &pid_caches_lh, list)
396 if (pcache->nr_ids == nr_ids)
397 goto out;
398
399 pcache = kmalloc(sizeof(struct pid_cache), GFP_KERNEL);
400 if (pcache == NULL)
401 goto err_alloc;
402
403 snprintf(pcache->name, sizeof(pcache->name), "pid_%d", nr_ids);
404 cachep = kmem_cache_create(pcache->name,
405 /* FIXME add numerical ids here */
406 sizeof(struct pid), 0, SLAB_HWCACHE_ALIGN, NULL);
407 if (cachep == NULL)
408 goto err_cachep;
409
410 pcache->nr_ids = nr_ids;
411 pcache->cachep = cachep;
412 list_add(&pcache->list, &pid_caches_lh);
413out:
414 mutex_unlock(&pid_caches_mutex);
415 return pcache->cachep;
416
417err_cachep:
418 kfree(pcache);
419err_alloc:
420 mutex_unlock(&pid_caches_mutex);
421 return NULL;
422}
423
Eric W. Biederman213dd262007-07-15 23:41:15 -0700424struct pid_namespace *copy_pid_ns(unsigned long flags, struct pid_namespace *old_ns)
Cedric Le Goater9a575a92006-12-08 02:37:59 -0800425{
Badari Pulavartye3222c42007-05-08 00:25:21 -0700426 BUG_ON(!old_ns);
Cedric Le Goater9a575a92006-12-08 02:37:59 -0800427 get_pid_ns(old_ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -0700428 return old_ns;
Cedric Le Goater9a575a92006-12-08 02:37:59 -0800429}
430
431void free_pid_ns(struct kref *kref)
432{
433 struct pid_namespace *ns;
434
435 ns = container_of(kref, struct pid_namespace, kref);
436 kfree(ns);
437}
438
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700439/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * The pid hash table is scaled according to the amount of memory in the
441 * machine. From a minimum of 16 slots up to 4096 slots at one gigabyte or
442 * more.
443 */
444void __init pidhash_init(void)
445{
Eric W. Biederman92476d72006-03-31 02:31:42 -0800446 int i, pidhash_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 unsigned long megabytes = nr_kernel_pages >> (20 - PAGE_SHIFT);
448
449 pidhash_shift = max(4, fls(megabytes * 4));
450 pidhash_shift = min(12, pidhash_shift);
451 pidhash_size = 1 << pidhash_shift;
452
453 printk("PID hash table entries: %d (order: %d, %Zd bytes)\n",
454 pidhash_size, pidhash_shift,
Eric W. Biederman92476d72006-03-31 02:31:42 -0800455 pidhash_size * sizeof(struct hlist_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Eric W. Biederman92476d72006-03-31 02:31:42 -0800457 pid_hash = alloc_bootmem(pidhash_size * sizeof(*(pid_hash)));
458 if (!pid_hash)
459 panic("Could not alloc pidhash!\n");
460 for (i = 0; i < pidhash_size; i++)
461 INIT_HLIST_HEAD(&pid_hash[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
464void __init pidmap_init(void)
465{
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800466 init_pid_ns.pidmap[0].page = kzalloc(PAGE_SIZE, GFP_KERNEL);
Oleg Nesterov73b9ebf2006-03-28 16:11:07 -0800467 /* Reserve PID 0. We never call free_pidmap(0) */
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800468 set_bit(0, init_pid_ns.pidmap[0].page);
469 atomic_dec(&init_pid_ns.pidmap[0].nr_free);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800470
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700471 init_pid_ns.pid_cachep = create_pid_cachep(1);
472 if (init_pid_ns.pid_cachep == NULL)
473 panic("Can't create pid_1 cachep\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}