Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 654e4aee authored by Noguchi, Masato's avatar Noguchi, Masato Committed by Paul Mackerras
Browse files

[POWERPC] spufs: fix support for read/write on cntl



This fixes a memory leak introduced by "spufs: add support
for read/write oncntl", which was missing a call to simple_attr_close.

Signed-off-by: default avatarMasato Noguchi <Masato.Noguchi@jp.sony.com>
Signed-off-by: default avatarArnd Bergmann <arnd.bergmann@de.ibm.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent e5267b4b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -246,6 +246,7 @@ static int spufs_cntl_open(struct inode *inode, struct file *file)

static struct file_operations spufs_cntl_fops = {
	.open = spufs_cntl_open,
	.release = simple_attr_close,
	.read = simple_attr_read,
	.write = simple_attr_write,
	.mmap = spufs_cntl_mmap,