Garbage collect an useless check. smp should be never NULL.

This commit is contained in:
Davide Italiano 2013-06-28 20:14:30 +00:00
parent c7d2e4cf9b
commit 189e41259b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=252353

View File

@ -324,11 +324,6 @@ smbfs_root(struct mount *mp, int flags, struct vnode **vpp)
td = curthread;
cred = td->td_ucred;
if (smp == NULL) {
SMBERROR("smp == NULL (bug in umount)\n");
vfs_mount_error(mp, "smp == NULL (bug in umount)");
return EINVAL;
}
if (smp->sm_root) {
*vpp = SMBTOV(smp->sm_root);
return vget(*vpp, LK_EXCLUSIVE | LK_RETRY, td);