|
@@ -1450,7 +1450,7 @@ static int unix_dgram_sendmsg(struct kiocb *kiocb, struct socket *sock,
|
|
|
if (NULL == siocb->scm)
|
|
|
siocb->scm = &tmp_scm;
|
|
|
wait_for_unix_gc();
|
|
|
- err = scm_send(sock, msg, siocb->scm);
|
|
|
+ err = scm_send(sock, msg, siocb->scm, false);
|
|
|
if (err < 0)
|
|
|
return err;
|
|
|
|
|
@@ -1619,7 +1619,7 @@ static int unix_stream_sendmsg(struct kiocb *kiocb, struct socket *sock,
|
|
|
if (NULL == siocb->scm)
|
|
|
siocb->scm = &tmp_scm;
|
|
|
wait_for_unix_gc();
|
|
|
- err = scm_send(sock, msg, siocb->scm);
|
|
|
+ err = scm_send(sock, msg, siocb->scm, false);
|
|
|
if (err < 0)
|
|
|
return err;
|
|
|
|