Commit 5a0c6a0d authored by Martin Peschke's avatar Martin Peschke Committed by Linus Torvalds
Browse files

kallsyms: cleanup: use seq_release_private() where appropriate



We can save some lines of code by using seq_release_private().

Signed-off-by: default avatarMartin Peschke <mp3@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6272e266
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -470,18 +470,11 @@ static int kallsyms_open(struct inode *inode, struct file *file)
	return ret;
}

static int kallsyms_release(struct inode *inode, struct file *file)
{
	struct seq_file *m = (struct seq_file *)file->private_data;
	kfree(m->private);
	return seq_release(inode, file);
}

static const struct file_operations kallsyms_operations = {
	.open = kallsyms_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = kallsyms_release,
	.release = seq_release_private,
};

static int __init kallsyms_init(void)