diff options
Diffstat (limited to 'net/unix/af_unix.c')
-rw-r--r-- | net/unix/af_unix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 2775acbca199..b152e2b9b988 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c | |||
@@ -1342,6 +1342,7 @@ static int unix_dgram_sendmsg(struct kiocb *kiocb, struct socket *sock, | |||
1342 | 1342 | ||
1343 | if (NULL == siocb->scm) | 1343 | if (NULL == siocb->scm) |
1344 | siocb->scm = &tmp_scm; | 1344 | siocb->scm = &tmp_scm; |
1345 | wait_for_unix_gc(); | ||
1345 | err = scm_send(sock, msg, siocb->scm); | 1346 | err = scm_send(sock, msg, siocb->scm); |
1346 | if (err < 0) | 1347 | if (err < 0) |
1347 | return err; | 1348 | return err; |
@@ -1492,6 +1493,7 @@ static int unix_stream_sendmsg(struct kiocb *kiocb, struct socket *sock, | |||
1492 | 1493 | ||
1493 | if (NULL == siocb->scm) | 1494 | if (NULL == siocb->scm) |
1494 | siocb->scm = &tmp_scm; | 1495 | siocb->scm = &tmp_scm; |
1496 | wait_for_unix_gc(); | ||
1495 | err = scm_send(sock, msg, siocb->scm); | 1497 | err = scm_send(sock, msg, siocb->scm); |
1496 | if (err < 0) | 1498 | if (err < 0) |
1497 | return err; | 1499 | return err; |