Revert "nfsd: return -EINVAL when namelen is 0"
This reverts commit a7d5a90335
.
This commit is contained in:
parent
ee72aa29e3
commit
916f5cf5c7
1 changed files with 0 additions and 8 deletions
|
@ -806,10 +806,6 @@ __cld_pipe_inprogress_downcall(const struct cld_msg_v2 __user *cmsg,
|
|||
ci = &cmsg->cm_u.cm_clntinfo;
|
||||
if (get_user(namelen, &ci->cc_name.cn_len))
|
||||
return -EFAULT;
|
||||
if (!namelen) {
|
||||
dprintk("%s: namelen should not be zero", __func__);
|
||||
return -EINVAL;
|
||||
}
|
||||
name.data = memdup_user(&ci->cc_name.cn_id, namelen);
|
||||
if (IS_ERR(name.data))
|
||||
return PTR_ERR(name.data);
|
||||
|
@ -832,10 +828,6 @@ __cld_pipe_inprogress_downcall(const struct cld_msg_v2 __user *cmsg,
|
|||
cnm = &cmsg->cm_u.cm_name;
|
||||
if (get_user(namelen, &cnm->cn_len))
|
||||
return -EFAULT;
|
||||
if (!namelen) {
|
||||
dprintk("%s: namelen should not be zero", __func__);
|
||||
return -EINVAL;
|
||||
}
|
||||
name.data = memdup_user(&cnm->cn_id, namelen);
|
||||
if (IS_ERR(name.data))
|
||||
return PTR_ERR(name.data);
|
||||
|
|
Loading…
Reference in a new issue