summaryrefslogtreecommitdiffstats
path: root/sys/kern/uipc_sockbuf.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2004-02-29 17:54:05 +0000
committerrwatson <rwatson@FreeBSD.org>2004-02-29 17:54:05 +0000
commit94d29f742676d86484a59179b2c75fc46b7767ea (patch)
treea71c42739347a4777f68766ab272e38a4b71cf1b /sys/kern/uipc_sockbuf.c
parentfdda2333fa7825d6a7461cadb6f07abd19e3ad39 (diff)
downloadFreeBSD-src-94d29f742676d86484a59179b2c75fc46b7767ea.zip
FreeBSD-src-94d29f742676d86484a59179b2c75fc46b7767ea.tar.gz
Modify soalloc() API so that it accepts a malloc flags argument rather
than a "waitok" argument. Callers now passing M_WAITOK or M_NOWAIT rather than 0 or 1. This simplifies the soalloc() logic, and also makes the waiting behavior of soalloc() more clear in the calling context. Submitted by: sam
Diffstat (limited to 'sys/kern/uipc_sockbuf.c')
-rw-r--r--sys/kern/uipc_sockbuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/uipc_sockbuf.c b/sys/kern/uipc_sockbuf.c
index 9f5da29..16ee01e 100644
--- a/sys/kern/uipc_sockbuf.c
+++ b/sys/kern/uipc_sockbuf.c
@@ -189,7 +189,7 @@ sonewconn(head, connstatus)
if (head->so_qlen > 3 * head->so_qlimit / 2)
return ((struct socket *)0);
- so = soalloc(0);
+ so = soalloc(M_NOWAIT);
if (so == NULL)
return ((struct socket *)0);
if ((head->so_options & SO_ACCEPTFILTER) != 0)
OpenPOWER on IntegriCloud