Skip to content

Commit

Permalink
V4L/DVB (6266): videobuf cleanup: mmap check is common to all videobu…
Browse files Browse the repository at this point in the history
…f. Make it at core

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
http://thread.gmane.org/gmane.comp.video.video4linux/34978/focus=34981
Reviewed-by: Ricardo Cerqueira <v4l@cerqueira.org>
  • Loading branch information
Mauro Carvalho Chehab committed Oct 10, 2007
1 parent cd4765e commit 851c0c9
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 52 deletions.
4 changes: 2 additions & 2 deletions drivers/media/video/videobuf-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ int videobuf_queue_is_busy(struct videobuf_queue *q)
for (i = 0; i < VIDEO_MAX_FRAME; i++) {
if (NULL == q->bufs[i])
continue;
if (CALL(q,is_mmapped,q->bufs[i])) {
if (q->bufs[i]->map) {
dprintk(1,"busy: buffer #%d mapped\n",i);
return 1;
}
Expand Down Expand Up @@ -238,7 +238,7 @@ static void videobuf_status(struct videobuf_queue *q, struct v4l2_buffer *b,
}

b->flags = 0;
if (CALL(q,is_mmapped,vb))
if (vb->map)
b->flags |= V4L2_BUF_FLAG_MAPPED;

switch (vb->state) {
Expand Down
24 changes: 5 additions & 19 deletions drivers/media/video/videobuf-dma-sg.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,9 @@ videobuf_vm_close(struct vm_area_struct *vma)

MAGIC_CHECK(mem->magic,MAGIC_SG_MEM);

if (mem->map != map)
if (q->bufs[i]->map != map)
continue;
mem->map = NULL;
q->bufs[i]->map = NULL;
q->bufs[i]->baddr = 0;
q->ops->buf_release(q,q->bufs[i]);
}
Expand Down Expand Up @@ -520,8 +520,7 @@ static int __videobuf_mmap_free(struct videobuf_queue *q)

for (i = 0; i < VIDEO_MAX_FRAME; i++) {
if (q->bufs[i]) {
struct videbuf_pci_sg_memory *mem=q->bufs[i]->priv;
if (mem && mem->map)
if (q->bufs[i]->map)
return -EBUSY;
}
}
Expand Down Expand Up @@ -572,8 +571,7 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
continue;
if (V4L2_MEMORY_MMAP != q->bufs[last]->memory)
continue;
mem=q->bufs[last]->priv;
if (mem->map) {
if (q->bufs[last]->map) {
retval = -EBUSY;
goto done;
}
Expand All @@ -593,8 +591,7 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
if (NULL == map)
goto done;
for (size = 0, i = first; i <= last; size += q->bufs[i++]->bsize) {
mem=q->bufs[i]->priv;
mem->map = map;
q->bufs[i]->map = map;
q->bufs[i]->baddr = vma->vm_start + size;
}
map->count = 1;
Expand All @@ -613,16 +610,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
return retval;
}

static int __videobuf_is_mmapped (struct videobuf_buffer *buf)
{
struct videbuf_pci_sg_memory *mem=buf->priv;

BUG_ON (!mem);
MAGIC_CHECK(mem->magic,MAGIC_SG_MEM);

return (mem->map)?1:0;
}

static int __videobuf_copy_to_user ( struct videobuf_queue *q,
char __user *data, size_t count,
int nonblocking )
Expand Down Expand Up @@ -678,7 +665,6 @@ static struct videobuf_qtype_ops pci_ops = {
.sync = __videobuf_sync,
.mmap_free = __videobuf_mmap_free,
.mmap_mapper = __videobuf_mmap_mapper,
.is_mmapped = __videobuf_is_mmapped,
.copy_to_user = __videobuf_copy_to_user,
.copy_stream = __videobuf_copy_stream,
};
Expand Down
36 changes: 10 additions & 26 deletions drivers/media/video/videobuf-vmalloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ videobuf_vm_close(struct vm_area_struct *vma)
{
struct videobuf_mapping *map = vma->vm_private_data;
struct videobuf_queue *q = map->q;
struct videbuf_vmalloc_memory *mem;
int i;

dprintk(2,"vm_close %p [count=%d,vma=%08lx-%08lx]\n",map,
Expand All @@ -75,19 +74,13 @@ videobuf_vm_close(struct vm_area_struct *vma)
for (i = 0; i < VIDEO_MAX_FRAME; i++) {
if (NULL == q->bufs[i])
continue;
mem=q->bufs[i]->priv;

if (!mem)
continue;

MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);

if (mem->map != map)
if (q->bufs[i]->map != map)
continue;

q->ops->buf_release(q,q->bufs[i]);

mem->map = NULL;
q->bufs[i]->map = NULL;
q->bufs[i]->baddr = 0;
}
mutex_unlock(&q->lock);
Expand Down Expand Up @@ -191,8 +184,7 @@ static int __videobuf_mmap_free(struct videobuf_queue *q)

for (i = 0; i < VIDEO_MAX_FRAME; i++) {
if (q->bufs[i]) {
struct videbuf_vmalloc_memory *mem=q->bufs[i]->priv;
if (mem && mem->map)
if (q->bufs[i]->map)
return -EBUSY;
}
}
Expand Down Expand Up @@ -227,12 +219,9 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
(vma->vm_pgoff << PAGE_SHIFT));
return -EINVAL;
}
mem=q->bufs[first]->priv;
BUG_ON (!mem);
MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);

/* create mapping + update buffer list */
map = mem->map = kmalloc(sizeof(struct videobuf_mapping),GFP_KERNEL);
map = q->bufs[first]->map = kmalloc(sizeof(struct videobuf_mapping),GFP_KERNEL);
if (NULL == map)
return -ENOMEM;

Expand All @@ -246,14 +235,19 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
vma->vm_flags |= VM_DONTEXPAND | VM_RESERVED;
vma->vm_private_data = map;

mem=q->bufs[first]->priv;
BUG_ON (!mem);
MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);

/* Try to remap memory */
retval=remap_vmalloc_range(vma, mem->vmalloc,0);
if (retval<0) {
dprintk(1,"mmap: postponing remap_vmalloc_range\n");

mem->vma=kmalloc(sizeof(*vma),GFP_KERNEL);
if (!mem->vma) {
kfree(map);
mem->map=NULL;
q->bufs[first]->map=NULL;
return -ENOMEM;
}
memcpy(mem->vma,vma,sizeof(*vma));
Expand All @@ -269,15 +263,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
return (0);
}

static int __videobuf_is_mmapped (struct videobuf_buffer *buf)
{
struct videbuf_vmalloc_memory *mem=buf->priv;
BUG_ON (!mem);
MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);

return (mem->map)?1:0;
}

static int __videobuf_copy_to_user ( struct videobuf_queue *q,
char __user *data, size_t count,
int nonblocking )
Expand Down Expand Up @@ -335,7 +320,6 @@ static struct videobuf_qtype_ops qops = {
.sync = __videobuf_sync,
.mmap_free = __videobuf_mmap_free,
.mmap_mapper = __videobuf_mmap_mapper,
.is_mmapped = __videobuf_is_mmapped,
.copy_to_user = __videobuf_copy_to_user,
.copy_stream = __videobuf_copy_stream,
};
Expand Down
4 changes: 3 additions & 1 deletion include/media/videobuf-core.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ struct videobuf_buffer {
/* buffer addr (userland ptr!) */
unsigned long baddr;

/* for mmap'ed buffers */
struct videobuf_mapping *map;

/* Private pointer to allow specific methods to store their data */
int privsize;
void *priv;
Expand Down Expand Up @@ -143,7 +146,6 @@ struct videobuf_qtype_ops {
int (*mmap_free) (struct videobuf_queue *q);
int (*mmap_mapper) (struct videobuf_queue *q,
struct vm_area_struct *vma);
int (*is_mmapped) (struct videobuf_buffer *buf);
};

struct videobuf_queue {
Expand Down
1 change: 0 additions & 1 deletion include/media/videobuf-dma-sg.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ struct videbuf_pci_sg_memory
u32 magic;

/* for mmap'ed buffers */
struct videobuf_mapping *map;
struct videobuf_dmabuf dma;
};

Expand Down
3 changes: 0 additions & 3 deletions include/media/videobuf-vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ struct videbuf_vmalloc_memory
{
u32 magic;

/* for mmap'ed buffers */
struct videobuf_mapping *map;

void *vmalloc;

/* remap_vmalloc_range seems to need to run after mmap() on some cases */
Expand Down

0 comments on commit 851c0c9

Please sign in to comment.