[media] return BUF_STATE_ERROR if streaming stopped during acquisition
authorFlorian Echtler <floe@butterbrot.org>
Mon, 25 May 2015 12:04:16 +0000 (09:04 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sat, 30 May 2015 14:45:00 +0000 (11:45 -0300)
When stop_streaming is called while a frame is currently being retrieved, the
buffer being filled will still be returned with BUF_STATE_DONE. By resetting
the sequence number and checking before returning the buffer, it can now
correctly be returned with BUF_STATE_ERROR.

Signed-off-by: Martin Kaltenbrunner <modin@yuri.at>
Signed-off-by: Florian Echtler <floe@butterbrot.org>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/input/touchscreen/sur40.c

index 8add986abc820a387e3c04aff81147d9300fa814..8be7b9b79f20b307059bab1f6825abef99dcd718 100644 (file)
@@ -438,6 +438,10 @@ static void sur40_process_video(struct sur40_state *sur40)
 
        dev_dbg(sur40->dev, "image acquired\n");
 
+       /* return error if streaming was stopped in the meantime */
+       if (sur40->sequence == -1)
+               goto err_poll;
+
        /* mark as finished */
        v4l2_get_timestamp(&new_buf->vb.v4l2_buf.timestamp);
        new_buf->vb.v4l2_buf.sequence = sur40->sequence++;
@@ -723,6 +727,7 @@ static int sur40_start_streaming(struct vb2_queue *vq, unsigned int count)
 static void sur40_stop_streaming(struct vb2_queue *vq)
 {
        struct sur40_state *sur40 = vb2_get_drv_priv(vq);
+       sur40->sequence = -1;
 
        /* Release all active buffers */
        return_all_buffers(sur40, VB2_BUF_STATE_ERROR);