Lines 138-143
soo_write(struct file *fp, struct uio *uio, struct ucred *active_cred,
Link Here
|
138 |
int flags, struct thread *td) |
138 |
int flags, struct thread *td) |
139 |
{ |
139 |
{ |
140 |
struct socket *so = fp->f_data; |
140 |
struct socket *so = fp->f_data; |
|
|
141 |
ssize_t len; |
141 |
int error; |
142 |
int error; |
142 |
|
143 |
|
143 |
#ifdef MAC |
144 |
#ifdef MAC |
Lines 145-151
soo_write(struct file *fp, struct uio *uio, struct ucred *active_cred,
Link Here
|
145 |
if (error) |
146 |
if (error) |
146 |
return (error); |
147 |
return (error); |
147 |
#endif |
148 |
#endif |
|
|
149 |
len = uio->uio_resid; |
148 |
error = sosend(so, 0, uio, 0, 0, 0, uio->uio_td); |
150 |
error = sosend(so, 0, uio, 0, 0, 0, uio->uio_td); |
|
|
151 |
if (uio->uio_resid != len && |
152 |
(so->so_proto->pr_flags & PR_ATOMIC) == 0 && |
153 |
(error == ERESTART || error == EINTR || error == EWOULDBLOCK)) |
154 |
error = 0; |
149 |
if (error == EPIPE && (so->so_options & SO_NOSIGPIPE) == 0) { |
155 |
if (error == EPIPE && (so->so_options & SO_NOSIGPIPE) == 0) { |
150 |
PROC_LOCK(uio->uio_td->td_proc); |
156 |
PROC_LOCK(uio->uio_td->td_proc); |
151 |
tdsignal(uio->uio_td, SIGPIPE); |
157 |
tdsignal(uio->uio_td, SIGPIPE); |