connector: Keep the skb in cn_callback_data
[linux-2.6/verdex.git] / drivers / connector / cn_queue.c
blob327dfdea843c98448767fe44698c6f8f0dea50bc
1 /*
2 * cn_queue.c
4 * 2004+ Copyright (c) Evgeniy Polyakov <zbr@ioremap.net>
5 * All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/list.h>
26 #include <linux/workqueue.h>
27 #include <linux/spinlock.h>
28 #include <linux/slab.h>
29 #include <linux/skbuff.h>
30 #include <linux/suspend.h>
31 #include <linux/connector.h>
32 #include <linux/delay.h>
36 * This job is sent to the kevent workqueue.
37 * While no event is once sent to any callback, the connector workqueue
38 * is not created to avoid a useless waiting kernel task.
39 * Once the first event is received, we create this dedicated workqueue which
40 * is necessary because the flow of data can be high and we don't want
41 * to encumber keventd with that.
43 static void cn_queue_create(struct work_struct *work)
45 struct cn_queue_dev *dev;
47 dev = container_of(work, struct cn_queue_dev, wq_creation);
49 dev->cn_queue = create_singlethread_workqueue(dev->name);
50 /* If we fail, we will use keventd for all following connector jobs */
51 WARN_ON(!dev->cn_queue);
55 * Queue a data sent to a callback.
56 * If the connector workqueue is already created, we queue the job on it.
57 * Otherwise, we queue the job to kevent and queue the connector workqueue
58 * creation too.
60 int queue_cn_work(struct cn_callback_entry *cbq, struct work_struct *work)
62 struct cn_queue_dev *pdev = cbq->pdev;
64 if (likely(pdev->cn_queue))
65 return queue_work(pdev->cn_queue, work);
67 /* Don't create the connector workqueue twice */
68 if (atomic_inc_return(&pdev->wq_requested) == 1)
69 schedule_work(&pdev->wq_creation);
70 else
71 atomic_dec(&pdev->wq_requested);
73 return schedule_work(work);
76 void cn_queue_wrapper(struct work_struct *work)
78 struct cn_callback_entry *cbq =
79 container_of(work, struct cn_callback_entry, work);
80 struct cn_callback_data *d = &cbq->data;
81 struct cn_msg *msg = NLMSG_DATA(nlmsg_hdr(d->skb));
83 d->callback(msg);
85 d->destruct_data(d->ddata);
86 d->ddata = NULL;
88 kfree(d->free);
91 static struct cn_callback_entry *cn_queue_alloc_callback_entry(char *name, struct cb_id *id, void (*callback)(void *))
93 struct cn_callback_entry *cbq;
95 cbq = kzalloc(sizeof(*cbq), GFP_KERNEL);
96 if (!cbq) {
97 printk(KERN_ERR "Failed to create new callback queue.\n");
98 return NULL;
101 snprintf(cbq->id.name, sizeof(cbq->id.name), "%s", name);
102 memcpy(&cbq->id.id, id, sizeof(struct cb_id));
103 cbq->data.callback = callback;
105 INIT_WORK(&cbq->work, &cn_queue_wrapper);
106 return cbq;
109 static void cn_queue_free_callback(struct cn_callback_entry *cbq)
111 /* The first jobs have been sent to kevent, flush them too */
112 flush_scheduled_work();
113 if (cbq->pdev->cn_queue)
114 flush_workqueue(cbq->pdev->cn_queue);
116 kfree(cbq);
119 int cn_cb_equal(struct cb_id *i1, struct cb_id *i2)
121 return ((i1->idx == i2->idx) && (i1->val == i2->val));
124 int cn_queue_add_callback(struct cn_queue_dev *dev, char *name, struct cb_id *id, void (*callback)(void *))
126 struct cn_callback_entry *cbq, *__cbq;
127 int found = 0;
129 cbq = cn_queue_alloc_callback_entry(name, id, callback);
130 if (!cbq)
131 return -ENOMEM;
133 atomic_inc(&dev->refcnt);
134 cbq->pdev = dev;
136 spin_lock_bh(&dev->queue_lock);
137 list_for_each_entry(__cbq, &dev->queue_list, callback_entry) {
138 if (cn_cb_equal(&__cbq->id.id, id)) {
139 found = 1;
140 break;
143 if (!found)
144 list_add_tail(&cbq->callback_entry, &dev->queue_list);
145 spin_unlock_bh(&dev->queue_lock);
147 if (found) {
148 cn_queue_free_callback(cbq);
149 atomic_dec(&dev->refcnt);
150 return -EINVAL;
153 cbq->seq = 0;
154 cbq->group = cbq->id.id.idx;
156 return 0;
159 void cn_queue_del_callback(struct cn_queue_dev *dev, struct cb_id *id)
161 struct cn_callback_entry *cbq, *n;
162 int found = 0;
164 spin_lock_bh(&dev->queue_lock);
165 list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry) {
166 if (cn_cb_equal(&cbq->id.id, id)) {
167 list_del(&cbq->callback_entry);
168 found = 1;
169 break;
172 spin_unlock_bh(&dev->queue_lock);
174 if (found) {
175 cn_queue_free_callback(cbq);
176 atomic_dec(&dev->refcnt);
180 struct cn_queue_dev *cn_queue_alloc_dev(char *name, struct sock *nls)
182 struct cn_queue_dev *dev;
184 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
185 if (!dev)
186 return NULL;
188 snprintf(dev->name, sizeof(dev->name), "%s", name);
189 atomic_set(&dev->refcnt, 0);
190 INIT_LIST_HEAD(&dev->queue_list);
191 spin_lock_init(&dev->queue_lock);
192 init_waitqueue_head(&dev->wq_created);
194 dev->nls = nls;
196 INIT_WORK(&dev->wq_creation, cn_queue_create);
198 return dev;
201 void cn_queue_free_dev(struct cn_queue_dev *dev)
203 struct cn_callback_entry *cbq, *n;
204 long timeout;
205 DEFINE_WAIT(wait);
207 /* Flush the first pending jobs queued on kevent */
208 flush_scheduled_work();
210 /* If the connector workqueue creation is still pending, wait for it */
211 prepare_to_wait(&dev->wq_created, &wait, TASK_UNINTERRUPTIBLE);
212 if (atomic_read(&dev->wq_requested) && !dev->cn_queue) {
213 timeout = schedule_timeout(HZ * 2);
214 if (!timeout && !dev->cn_queue)
215 WARN_ON(1);
217 finish_wait(&dev->wq_created, &wait);
219 if (dev->cn_queue) {
220 flush_workqueue(dev->cn_queue);
221 destroy_workqueue(dev->cn_queue);
224 spin_lock_bh(&dev->queue_lock);
225 list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry)
226 list_del(&cbq->callback_entry);
227 spin_unlock_bh(&dev->queue_lock);
229 while (atomic_read(&dev->refcnt)) {
230 printk(KERN_INFO "Waiting for %s to become free: refcnt=%d.\n",
231 dev->name, atomic_read(&dev->refcnt));
232 msleep(1000);
235 kfree(dev);
236 dev = NULL;