Commit acf300dd authored by Al Viro's avatar Al Viro

mips: single_open() leaks

Cc: stable@vger.kernel.org
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 75401461
...@@ -61,7 +61,7 @@ static const struct file_operations smtc_proc_fops = { ...@@ -61,7 +61,7 @@ static const struct file_operations smtc_proc_fops = {
.open = smtc_proc_open, .open = smtc_proc_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = seq_release, .release = single_release,
}; };
void init_smtc_stats(void) void init_smtc_stats(void)
......
...@@ -92,7 +92,7 @@ static const struct file_operations msp_pci_rd_cnt_fops = { ...@@ -92,7 +92,7 @@ static const struct file_operations msp_pci_rd_cnt_fops = {
.open = msp_pci_rd_cnt_open, .open = msp_pci_rd_cnt_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = seq_release, .release = single_release,
}; };
/***************************************************************************** /*****************************************************************************
...@@ -169,7 +169,7 @@ static const struct file_operations gen_pci_cfg_wr_fops = { ...@@ -169,7 +169,7 @@ static const struct file_operations gen_pci_cfg_wr_fops = {
.open = gen_pci_cfg_wr_open, .open = gen_pci_cfg_wr_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = seq_release, .release = single_release,
}; };
/***************************************************************************** /*****************************************************************************
......
...@@ -145,7 +145,7 @@ static const struct file_operations bw_proc_fops = { ...@@ -145,7 +145,7 @@ static const struct file_operations bw_proc_fops = {
.open = bw_proc_open, .open = bw_proc_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = seq_release, .release = single_release,
}; };
static void create_proc_decoder(struct bw_stats_struct *stats) static void create_proc_decoder(struct bw_stats_struct *stats)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment