Skip to content

Commit

Permalink
[CONNECTOR]: Replace delayed work with usual work queue.
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeniy Polyakov <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Evgeniy Polyakov authored and davem330 committed Dec 18, 2006
1 parent 14fb8a7 commit a240d9f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
5 changes: 2 additions & 3 deletions drivers/connector/cn_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
void cn_queue_wrapper(struct work_struct *work)
{
struct cn_callback_entry *cbq =
container_of(work, struct cn_callback_entry, work.work);
container_of(work, struct cn_callback_entry, work);
struct cn_callback_data *d = &cbq->data;

d->callback(d->callback_priv);
Expand All @@ -59,13 +59,12 @@ static struct cn_callback_entry *cn_queue_alloc_callback_entry(char *name, struc
memcpy(&cbq->id.id, id, sizeof(struct cb_id));
cbq->data.callback = callback;

INIT_DELAYED_WORK(&cbq->work, &cn_queue_wrapper);
INIT_WORK(&cbq->work, &cn_queue_wrapper);
return cbq;
}

static void cn_queue_free_callback(struct cn_callback_entry *cbq)
{
cancel_delayed_work(&cbq->work);
flush_workqueue(cbq->pdev->cn_queue);

kfree(cbq);
Expand Down
16 changes: 7 additions & 9 deletions drivers/connector/connector.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,15 @@ static int cn_call_callback(struct cn_msg *msg, void (*destruct_data)(void *), v
spin_lock_bh(&dev->cbdev->queue_lock);
list_for_each_entry(__cbq, &dev->cbdev->queue_list, callback_entry) {
if (cn_cb_equal(&__cbq->id.id, &msg->id)) {
if (likely(!work_pending(&__cbq->work.work) &&
if (likely(!work_pending(&__cbq->work) &&
__cbq->data.ddata == NULL)) {
__cbq->data.callback_priv = msg;

__cbq->data.ddata = data;
__cbq->data.destruct_data = destruct_data;

if (queue_delayed_work(
dev->cbdev->cn_queue,
&__cbq->work, 0))
if (queue_work(dev->cbdev->cn_queue,
&__cbq->work))
err = 0;
} else {
struct cn_callback_data *d;
Expand All @@ -158,12 +157,11 @@ static int cn_call_callback(struct cn_msg *msg, void (*destruct_data)(void *), v
d->destruct_data = destruct_data;
d->free = __cbq;

INIT_DELAYED_WORK(&__cbq->work,
&cn_queue_wrapper);
INIT_WORK(&__cbq->work,
&cn_queue_wrapper);

if (queue_delayed_work(
dev->cbdev->cn_queue,
&__cbq->work, 0))
if (queue_work(dev->cbdev->cn_queue,
&__cbq->work))
err = 0;
else {
kfree(__cbq);
Expand Down
2 changes: 1 addition & 1 deletion include/linux/connector.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ struct cn_callback_data {
struct cn_callback_entry {
struct list_head callback_entry;
struct cn_callback *cb;
struct delayed_work work;
struct work_struct work;
struct cn_queue_dev *pdev;

struct cn_callback_id id;
Expand Down

0 comments on commit a240d9f

Please sign in to comment.