Remove Giant from linux_getcwd() due to VFS is MPSAFE now.

Discussed with:	kib
MFC after:	1 week
This commit is contained in:
Dmitry Chagin 2015-01-02 18:36:08 +00:00
parent a614ff4d01
commit de90b09a79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=276550

View File

@ -450,11 +450,8 @@ linux_getcwd(struct thread *td, struct linux_getcwd_args *args)
* limit it to N/2 vnodes for an N byte buffer.
*/
mtx_lock(&Giant);
error = linux_getcwd_common (td->td_proc->p_fd->fd_cdir, NULL,
&bp, path, len/2, GETCWD_CHECK_ACCESS, td);
mtx_unlock(&Giant);
if (error)
goto out;
lenused = bend - bp;