Re: [PATCH 2/3 v4] devpts: resolve devpts bind-mounts
From: Linus Torvalds
Date: Mon Mar 12 2018 - 20:37:27 EST
On Mon, Mar 12, 2018 at 5:01 PM, Christian Brauner
<christian.brauner@xxxxxxxxxx> wrote:
>
> ChangeLog v3->v4:
> * simplify if condition
Ok, I definitely prefer this simpler version.
We could simplify it even more, though. That end could be just
...
dput(path.dentry);
if (!err) {
if (DEVPTS_SB(path.mnt->mnt_sb) == fsi)
return path.mnt;
err = -ENODEV;
}
mntput(path.mnt);
return ERR_PTR(err);
instead.
And it might be worth adding a comment that devpts_ptmx_path() always
returns a DEVPTS filesystem of an error. I already wrote out "that's
not right, you can't do DEVPTS_SB() without checking s_magic", but
devpts_ptmx_path() will have done that already.
Linus