Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / net / 9p / util.c
blobef7215565d881de05e00c7214623f3a8fa759b8f
1 /*
2 * net/9p/util.c
4 * This file contains some helper functions
6 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
7 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
8 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to:
21 * Free Software Foundation
22 * 51 Franklin Street, Fifth Floor
23 * Boston, MA 02111-1301 USA
27 #include <linux/module.h>
28 #include <linux/errno.h>
29 #include <linux/fs.h>
30 #include <linux/sched.h>
31 #include <linux/parser.h>
32 #include <linux/idr.h>
33 #include <net/9p/9p.h>
35 struct p9_idpool {
36 spinlock_t lock;
37 struct idr pool;
40 struct p9_idpool *p9_idpool_create(void)
42 struct p9_idpool *p;
44 p = kmalloc(sizeof(struct p9_idpool), GFP_KERNEL);
45 if (!p)
46 return ERR_PTR(-ENOMEM);
48 spin_lock_init(&p->lock);
49 idr_init(&p->pool);
51 return p;
53 EXPORT_SYMBOL(p9_idpool_create);
55 void p9_idpool_destroy(struct p9_idpool *p)
57 idr_destroy(&p->pool);
58 kfree(p);
60 EXPORT_SYMBOL(p9_idpool_destroy);
62 /**
63 * p9_idpool_get - allocate numeric id from pool
64 * @p - pool to allocate from
66 * XXX - This seems to be an awful generic function, should it be in idr.c with
67 * the lock included in struct idr?
70 int p9_idpool_get(struct p9_idpool *p)
72 int i = 0;
73 int error;
74 unsigned int flags;
76 retry:
77 if (idr_pre_get(&p->pool, GFP_KERNEL) == 0)
78 return 0;
80 spin_lock_irqsave(&p->lock, flags);
82 /* no need to store exactly p, we just need something non-null */
83 error = idr_get_new(&p->pool, p, &i);
84 spin_unlock_irqrestore(&p->lock, flags);
86 if (error == -EAGAIN)
87 goto retry;
88 else if (error)
89 return -1;
91 return i;
93 EXPORT_SYMBOL(p9_idpool_get);
95 /**
96 * p9_idpool_put - release numeric id from pool
97 * @p - pool to allocate from
99 * XXX - This seems to be an awful generic function, should it be in idr.c with
100 * the lock included in struct idr?
103 void p9_idpool_put(int id, struct p9_idpool *p)
105 unsigned int flags;
106 spin_lock_irqsave(&p->lock, flags);
107 idr_remove(&p->pool, id);
108 spin_unlock_irqrestore(&p->lock, flags);
110 EXPORT_SYMBOL(p9_idpool_put);
113 * p9_idpool_check - check if the specified id is available
114 * @id - id to check
115 * @p - pool
117 int p9_idpool_check(int id, struct p9_idpool *p)
119 return idr_find(&p->pool, id) != NULL;
121 EXPORT_SYMBOL(p9_idpool_check);