* [patch] v4l-03 video-buf update
@ 2004-01-15 11:50 Gerd Knorr
0 siblings, 0 replies; only message in thread
From: Gerd Knorr @ 2004-01-15 11:50 UTC (permalink / raw)
To: Andrew Morton, Kernel List
Hi,
This patch contains video-buf fixes, mainly remove videobuf_lock() and
videobuf_unlock() functions. They are not needed as get_user_pages()
locks down the pages anyway.
Gerd
diff -u linux-2.6.1/drivers/media/video/video-buf.c linux/drivers/media/video/video-buf.c
--- linux-2.6.1/drivers/media/video/video-buf.c 2004-01-14 15:05:44.000000000 +0100
+++ linux/drivers/media/video/video-buf.c 2004-01-14 15:09:35.000000000 +0100
@@ -41,7 +41,7 @@
MODULE_PARM(debug,"i");
#define dprintk(level, fmt, arg...) if (debug >= level) \
- printk(KERN_DEBUG "vbuf: " fmt, ## arg)
+ printk(KERN_DEBUG "vbuf: " fmt , ## arg)
struct scatterlist*
videobuf_vmalloc_to_sg(unsigned char *virt, int nr_pages)
@@ -112,36 +112,6 @@
return NULL;
}
-int videobuf_lock(struct page **pages, int nr_pages)
-{
- int i;
-
- dprintk(2,"lock start ...\n");
- for (i = 0; i < nr_pages; i++)
- if (TryLockPage(pages[i]))
- goto err;
- dprintk(2,"lock ok [%d pages]\n",nr_pages);
- return 0;
-
- err:
- dprintk(2,"lock failed, unlock ...\n");
- while (i > 0)
- unlock_page(pages[--i]);
- dprintk(2,"lock quit\n");
- return -EINVAL;
-}
-
-int videobuf_unlock(struct page **pages, int nr_pages)
-{
- int i;
-
- dprintk(2,"unlock start ...\n");
- for (i = 0; i < nr_pages; i++)
- unlock_page(pages[i]);
- dprintk(2,"unlock ok [%d pages]\n",nr_pages);
- return 0;
-}
-
/* --------------------------------------------------------------------- */
int videobuf_dma_init_user(struct videobuf_dmabuf *dma, int direction,
@@ -213,20 +183,12 @@
int videobuf_dma_pci_map(struct pci_dev *dev, struct videobuf_dmabuf *dma)
{
- int err;
-
if (0 == dma->nr_pages)
BUG();
if (dma->pages) {
- if (0 != (err = videobuf_lock(dma->pages, dma->nr_pages))) {
- dprintk(1,"videobuf_lock: %d\n",err);
- return err;
- }
dma->sglist = videobuf_pages_to_sg(dma->pages, dma->nr_pages,
dma->offset);
- if (NULL == dma->sglist)
- videobuf_unlock(dma->pages, dma->nr_pages);
}
if (dma->vmalloc) {
dma->sglist = videobuf_vmalloc_to_sg
@@ -236,8 +198,8 @@
dma->sglist = kmalloc(sizeof(struct scatterlist), GFP_KERNEL);
if (NULL != dma->sglist) {
dma->sglen = 1;
- sg_dma_address(&dma->sglist[0]) = dma->bus_addr & ~PAGE_MASK;
- dma->sglist[0].offset = dma->bus_addr & PAGE_MASK;
+ sg_dma_address(&dma->sglist[0]) = dma->bus_addr & PAGE_MASK;
+ dma->sglist[0].offset = dma->bus_addr & ~PAGE_MASK;
sg_dma_len(&dma->sglist[0]) = dma->nr_pages * PAGE_SIZE;
}
}
@@ -272,8 +234,6 @@
kfree(dma->sglist);
dma->sglist = NULL;
dma->sglen = 0;
- if (dma->pages)
- videobuf_unlock(dma->pages, dma->nr_pages);
return 0;
}
@@ -325,8 +285,8 @@
retval = -EAGAIN;
break;
}
- set_current_state(intr ? TASK_INTERRUPTIBLE :
- TASK_UNINTERRUPTIBLE);
+ set_current_state(intr ? TASK_INTERRUPTIBLE
+ : TASK_UNINTERRUPTIBLE);
if (vb->state == STATE_ACTIVE || vb->state == STATE_QUEUED)
schedule();
set_current_state(TASK_RUNNING);
@@ -969,8 +929,10 @@
retval += bytes;
q->read_off += bytes;
} else {
- /* some error -- skip buffer */
+ /* some error */
q->read_off = q->read_buf->size;
+ if (0 == retval)
+ retval = -EIO;
}
/* requeue buffer when done with copying */
@@ -982,6 +944,8 @@
spin_unlock_irqrestore(q->irqlock,flags);
q->read_buf = NULL;
}
+ if (retval < 0)
+ break;
}
done:
@@ -1078,7 +1042,7 @@
*/
static struct page*
videobuf_vm_nopage(struct vm_area_struct *vma, unsigned long vaddr,
- int *type)
+ int *type)
{
struct page *page;
@@ -1232,8 +1196,6 @@
/* --------------------------------------------------------------------- */
EXPORT_SYMBOL_GPL(videobuf_vmalloc_to_sg);
-EXPORT_SYMBOL_GPL(videobuf_lock);
-EXPORT_SYMBOL_GPL(videobuf_unlock);
EXPORT_SYMBOL_GPL(videobuf_dma_init_user);
EXPORT_SYMBOL_GPL(videobuf_dma_init_kernel);
--
You have a new virus in /var/mail/kraxel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-01-15 11:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-15 11:50 [patch] v4l-03 video-buf update Gerd Knorr
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.