From: Al Viro Date: Mon, 15 Apr 2013 14:29:11 +0000 (-0400) Subject: pmcraid: don't wank with fasync in ->release() X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~16764^2~67 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e84cb41eb008fb42b357c55329c345f9a0375237;p=mirror_ubuntu-focal-kernel.git pmcraid: don't wank with fasync in ->release() Signed-off-by: Al Viro --- diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c index b46f5e906837..8e1b73775065 100644 --- a/drivers/scsi/pmcraid.c +++ b/drivers/scsi/pmcraid.c @@ -3598,19 +3598,6 @@ static int pmcraid_chr_open(struct inode *inode, struct file *filep) return 0; } -/** - * pmcraid_release - char node "release" entry point - */ -static int pmcraid_chr_release(struct inode *inode, struct file *filep) -{ - struct pmcraid_instance *pinstance = filep->private_data; - - filep->private_data = NULL; - fasync_helper(-1, filep, 0, &pinstance->aen_queue); - - return 0; -} - /** * pmcraid_fasync - Async notifier registration from applications * @@ -4167,7 +4154,6 @@ static long pmcraid_chr_ioctl( static const struct file_operations pmcraid_fops = { .owner = THIS_MODULE, .open = pmcraid_chr_open, - .release = pmcraid_chr_release, .fasync = pmcraid_chr_fasync, .unlocked_ioctl = pmcraid_chr_ioctl, #ifdef CONFIG_COMPAT