Staging: comedi: fix mmap_count
authorFederico Vaga <federico.vaga@gmail.com>
Sat, 29 Oct 2011 07:45:39 +0000 (09:45 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Sun, 27 Nov 2011 02:34:14 +0000 (18:34 -0800)
commitdf30b21cb0eed5ba8a8e0cdfeebc66ba8cde821d
tree5bd4f9b7050691a53abfff32f1218cadd4425a2b
parent3ffab428f40849ed5f21bcfd7285bdef7902f9ca
Staging: comedi: fix mmap_count

In comedi_fops, mmap_count is decremented at comedi_vm_ops->close but
it is not incremented at comedi_vm_ops->open. This may result in a negative
counter.  The patch introduces the open method to keep the counter
consistent.

The bug was triggerd by this sample code:

        mmap(0, ...., comedi_fd);
        fork();
        exit(0);

Acked-by: Alessandro Rubini <rubini@gnudd.com>
Signed-off-by: Federico Vaga <federico.vaga@gmail.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/comedi_fops.c