mips: single_open() leaks
authorAl Viro <viro@zeniv.linux.org.uk>
Sun, 5 May 2013 04:09:30 +0000 (00:09 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Sun, 5 May 2013 04:10:21 +0000 (00:10 -0400)
Cc: stable@vger.kernel.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
arch/mips/kernel/smtc-proc.c
arch/mips/pci/ops-pmcmsp.c
arch/mips/sibyte/sb1250/bus_watcher.c

index 9fb7144..c10aa84 100644 (file)
@@ -61,7 +61,7 @@ static const struct file_operations smtc_proc_fops = {
        .open           = smtc_proc_open,
        .read           = seq_read,
        .llseek         = seq_lseek,
-       .release        = seq_release,
+       .release        = single_release,
 };
 
 void init_smtc_stats(void)
index 4eaab63..3d27800 100644 (file)
@@ -92,7 +92,7 @@ static const struct file_operations msp_pci_rd_cnt_fops = {
        .open           = msp_pci_rd_cnt_open,
        .read           = seq_read,
        .llseek         = seq_lseek,
-       .release        = seq_release,
+       .release        = single_release,
 };
 
 /*****************************************************************************
@@ -169,7 +169,7 @@ static const struct file_operations gen_pci_cfg_wr_fops = {
        .open           = gen_pci_cfg_wr_open,
        .read           = seq_read,
        .llseek         = seq_lseek,
-       .release        = seq_release,
+       .release        = single_release,
 };
 
 /*****************************************************************************
index cb1e3cb..8871e33 100644 (file)
@@ -145,7 +145,7 @@ static const struct file_operations bw_proc_fops = {
        .open           = bw_proc_open,
        .read           = seq_read,
        .llseek         = seq_lseek,
-       .release        = seq_release,
+       .release        = single_release,
 };
 
 static void create_proc_decoder(struct bw_stats_struct *stats)