ni_pcidio: Mark buffer for writing when setting up DMA.
authorIan Abbott <abbotti@mev.co.uk>
Mon, 18 Jul 2011 10:30:08 +0000 (11:30 +0100)
committerIan Abbott <abbotti@mev.co.uk>
Mon, 18 Jul 2011 10:30:08 +0000 (11:30 +0100)
When setting up the DMA for 'read' streaming acquisition on the DIO
subdevice, mark the whole buffer as writable before starting the DMA.
This prevents a spurious detection of a DMA overwrite of good data
during the first interrupt.

Problem reported by Nico Nell.  Fix suggested by Frank Mori Hess.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
comedi/drivers/ni_pcidio.c

index 6de624d32f05565c41e15612fa5947bd82373606..b39a2cf8ae1b75494e3ebd97ccb6e770aa483c64 100644 (file)
@@ -997,6 +997,9 @@ static int setup_mite_dma(comedi_device * dev, comedi_subdevice * s)
 
        devpriv->di_mite_chan->dir = COMEDI_INPUT;
 
+       /* write alloc the entire buffer */
+       comedi_buf_write_alloc(s->async, s->async->prealloc_bufsz);
+
        mite_prep_dma(devpriv->di_mite_chan, 32, 32);
 
        mite_dma_arm(devpriv->di_mite_chan);