diff options
author | Philippe De Muyter <phdm@macqel.be> | 2008-07-03 18:52:28 +0200 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2008-07-14 13:06:02 +0200 |
commit | 435f972697fcd4c424db941f0ea8f2e38eda2b39 (patch) | |
tree | f20a6397e5299327d90b89c53a7097994fb8e7e1 /drivers/ieee1394/dma.c | |
parent | 3aea50a379ed152bcb86b24b65a4cb59be82446f (diff) | |
download | linux-3.10-435f972697fcd4c424db941f0ea8f2e38eda2b39.tar.gz linux-3.10-435f972697fcd4c424db941f0ea8f2e38eda2b39.tar.bz2 linux-3.10-435f972697fcd4c424db941f0ea8f2e38eda2b39.zip |
ieee1394: dump mmapped iso buffers in core files
Currently, core files do not contain the mmapped memory of the video1394
or dv1394 devices, which contain the actual video input, making it
impossible to analyse the cause of abnormal program termination for
image analysis or (de)compression software. Fix that.
Signed-off-by: Philippe De Muyter <phdm@macqel.be>
Also affects users of the rawiso ioctl API of raw1394.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/dma.c')
-rw-r--r-- | drivers/ieee1394/dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ieee1394/dma.c b/drivers/ieee1394/dma.c index 73685e7dc7e..1aba8c13fe8 100644 --- a/drivers/ieee1394/dma.c +++ b/drivers/ieee1394/dma.c @@ -274,7 +274,7 @@ int dma_region_mmap(struct dma_region *dma, struct file *file, vma->vm_ops = &dma_region_vm_ops; vma->vm_private_data = dma; vma->vm_file = file; - vma->vm_flags |= VM_RESERVED; + vma->vm_flags |= VM_RESERVED | VM_ALWAYSDUMP; return 0; } |