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

Commit 8e0bcc72 authored by Al Viro's avatar Al Viro
Browse files

fix a leak in /proc/schedstats



Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent e84cb41e
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -130,16 +130,11 @@ static int schedstat_open(struct inode *inode, struct file *file)
	return seq_open(file, &schedstat_sops);
}

static int schedstat_release(struct inode *inode, struct file *file)
{
	return 0;
};

static const struct file_operations proc_schedstat_operations = {
	.open    = schedstat_open,
	.read    = seq_read,
	.llseek  = seq_lseek,
	.release = schedstat_release,
	.release = seq_release,
};

static int __init proc_schedstat_init(void)