@@ -41,7 +41,13 @@ int v4l2_event_alloc(struct v4l2_fh *fh, unsigned int n)
return -ENOMEM;
spin_lock_irqsave(&fh->vdev->fh_lock, flags);
+ if (events->max_alloc == 0) {
+ spin_unlock_irqrestore(&fh->vdev->fh_lock, flags);
+ kfree(kev);
+ return -ENOMEM;
+ }
list_add_tail(&kev->list, &events->free);
+ events->max_alloc--;
spin_unlock_irqrestore(&fh->vdev->fh_lock, flags);
}
@@ -73,7 +79,7 @@ void v4l2_event_exit(struct v4l2_fh *fh)
}
EXPORT_SYMBOL_GPL(v4l2_event_exit);
-int v4l2_event_init(struct v4l2_fh *fh, unsigned int n)
+int v4l2_event_init(struct v4l2_fh *fh, unsigned int n, unsigned int max_alloc)
{
int ret;
@@ -87,6 +93,9 @@ int v4l2_event_init(struct v4l2_fh *fh, unsigned int n)
INIT_LIST_HEAD(&fh->events->available);
INIT_LIST_HEAD(&fh->events->subscribed);
+ fh->events->navailable = 0;
+ fh->events->max_alloc = max_alloc;
+
ret = v4l2_event_alloc(fh, n);
if (ret < 0)
v4l2_event_exit(fh);
@@ -108,11 +117,13 @@ int v4l2_event_dequeue(struct v4l2_fh *fh, struct v4l2_event *event)
return -ENOENT;
}
+ WARN_ON(&events->navailable == 0);
+
kev = list_first_entry(&events->available, struct v4l2_kevent, list);
list_move(&kev->list, &events->free);
+ events->navailable--;
- kev->event.count = !list_empty(&events->available);
-
+ kev->event.count = events->navailable;
*event = kev->event;
spin_unlock_irqrestore(&fh->vdev->fh_lock, flags);
@@ -175,6 +186,8 @@ void v4l2_event_queue(struct video_device *vdev, struct v4l2_event *ev)
kev->event = *ev;
list_move_tail(&kev->list, &events->available);
+ events->navailable++;
+
wake_up_all(&events->wait);
}
@@ -184,15 +197,7 @@ EXPORT_SYMBOL_GPL(v4l2_event_queue);
int v4l2_event_pending(struct v4l2_fh *fh)
{
- struct v4l2_events *events = fh->events;
- unsigned long flags;
- int ret;
-
- spin_lock_irqsave(&fh->vdev->fh_lock, flags);
- ret = !list_empty(&events->available);
- spin_unlock_irqrestore(&fh->vdev->fh_lock, flags);
-
- return ret;
+ return fh->events->navailable;
}
EXPORT_SYMBOL_GPL(v4l2_event_pending);
@@ -28,6 +28,8 @@
#include <linux/types.h>
#include <linux/videodev2.h>
+#include <asm/atomic.h>
+
struct v4l2_fh;
struct video_device;
@@ -45,11 +47,13 @@ struct v4l2_events {
wait_queue_head_t wait;
struct list_head subscribed; /* Subscribed events */
struct list_head available; /* Dequeueable event */
+ unsigned int navailable;
+ unsigned int max_alloc; /* Never allocate more. */
struct list_head free; /* Events ready for use */
};
int v4l2_event_alloc(struct v4l2_fh *fh, unsigned int n);
-int v4l2_event_init(struct v4l2_fh *fh, unsigned int n);
+int v4l2_event_init(struct v4l2_fh *fh, unsigned int n, unsigned int max_alloc);
void v4l2_event_exit(struct v4l2_fh *fh);
int v4l2_event_dequeue(struct v4l2_fh *fh, struct v4l2_event *event);
struct v4l2_subscribed_event *v4l2_event_subscribed(