staging: comedi: comedi_buf: clarify comedi_buf_read_free()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 9 Jan 2013 20:31:16 +0000 (13:31 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Jan 2013 00:53:59 +0000 (16:53 -0800)
Reword the comment about the need for the smp_mb().

Clarify the check to make sure the number of bytes to free is not
more than the number of bytes allocated.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/comedi_buf.c

index 971f739..70d2901 100644 (file)
@@ -312,14 +312,19 @@ EXPORT_SYMBOL(comedi_buf_read_alloc);
 /* transfers control of a chunk from reader to free buffer space */
 unsigned comedi_buf_read_free(struct comedi_async *async, unsigned int nbytes)
 {
-       /* barrier insures data has been read out of
-        * buffer before read count is incremented */
+       unsigned int allocated;
+
+       /*
+        * ensure data has been read out of buffer before
+        * the async read count is incremented
+        */
        smp_mb();
-       if ((int)(async->buf_read_count + nbytes -
-                 async->buf_read_alloc_count) > 0) {
+
+       allocated = comedi_buf_read_n_allocated(async);
+       if (nbytes > allocated) {
                dev_info(async->subdevice->device->class_dev,
                         "attempted to read-free more bytes than have been read-allocated.\n");
-               nbytes = async->buf_read_alloc_count - async->buf_read_count;
+               nbytes = allocated;
        }
        async->buf_read_count += nbytes;
        async->buf_read_ptr += nbytes;