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>

authored by

Philippe De Muyter and committed by
Stefan Richter
435f9726 3aea50a3

+1 -1
+1 -1
drivers/ieee1394/dma.c
··· 274 274 vma->vm_ops = &dma_region_vm_ops; 275 275 vma->vm_private_data = dma; 276 276 vma->vm_file = file; 277 - vma->vm_flags |= VM_RESERVED; 277 + vma->vm_flags |= VM_RESERVED | VM_ALWAYSDUMP; 278 278 279 279 return 0; 280 280 }