Commit 02da8d2c authored by Al Viro's avatar Al Viro
Browse files

binderfs_binder_ctl_create(): kill a bogus check



It's called once, during binderfs mount, right after allocating
root dentry.  Checking that it hadn't been already called is
only obfuscating things.

Looks like that bogosity had been copied from devpts...

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 185d241c
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -397,12 +397,6 @@ static int binderfs_binder_ctl_create(struct super_block *sb)
	if (!device)
		return -ENOMEM;

	/* If we have already created a binder-control node, return. */
	if (info->control_dentry) {
		ret = 0;
		goto out;
	}

	ret = -ENOMEM;
	inode = new_inode(sb);
	if (!inode)