Remove spl()'s from do_sendfile().

This commit is contained in:
Robert Watson 2004-07-09 01:46:03 +00:00
parent d911052d10
commit 6ec70e64c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=131845

View File

@ -1729,7 +1729,7 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
struct sf_hdtr hdtr;
struct uio hdr_uio;
off_t off, xfsize, hdtr_size, sbytes = 0;
int error, s, headersize = 0, headersent = 0;
int error, headersize = 0, headersent = 0;
struct iovec *hdr_iov = NULL;
mtx_lock(&Giant);
@ -2003,7 +2003,6 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
/*
* Add the buffer to the socket buffer chain.
*/
s = splnet();
SOCKBUF_LOCK(&so->so_snd);
retry_space:
/*
@ -2028,7 +2027,6 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
m_freem(m);
sbunlock(&so->so_snd);
SOCKBUF_UNLOCK(&so->so_snd);
splx(s);
goto done;
}
/*
@ -2041,7 +2039,6 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
m_freem(m);
sbunlock(&so->so_snd);
SOCKBUF_UNLOCK(&so->so_snd);
splx(s);
error = EAGAIN;
goto done;
}
@ -2055,14 +2052,12 @@ do_sendfile(struct thread *td, struct sendfile_args *uap, int compat)
m_freem(m);
sbunlock(&so->so_snd);
SOCKBUF_UNLOCK(&so->so_snd);
splx(s);
goto done;
}
goto retry_space;
}
SOCKBUF_UNLOCK(&so->so_snd);
error = (*so->so_proto->pr_usrreqs->pru_send)(so, 0, m, 0, 0, td);
splx(s);
if (error) {
SOCKBUF_LOCK(&so->so_snd);
sbunlock(&so->so_snd);