summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/uipc_sockbuf.c10
-rw-r--r--sys/kern/uipc_socket2.c10
2 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/uipc_sockbuf.c b/sys/kern/uipc_sockbuf.c
index f82052d..d683692 100644
--- a/sys/kern/uipc_sockbuf.c
+++ b/sys/kern/uipc_sockbuf.c
@@ -256,11 +256,11 @@ sonewconn(head, connstatus)
head->so_qlen++;
} else {
/*
- * XXXRW: Keep removing sockets from the head until there's
- * room for us to insert on the tail. In pre-locking
- * revisions, this was a simple if(), but as we could be
- * racing with other threads and soabort() requires dropping
- * locks, we must loop waiting for the condition to be true.
+ * Keep removing sockets from the head until there's room for
+ * us to insert on the tail. In pre-locking revisions, this
+ * was a simple if(), but as we could be racing with other
+ * threads and soabort() requires dropping locks, we must
+ * loop waiting for the condition to be true.
*/
while (head->so_incqlen > head->so_qlimit) {
struct socket *sp;
diff --git a/sys/kern/uipc_socket2.c b/sys/kern/uipc_socket2.c
index f82052d..d683692 100644
--- a/sys/kern/uipc_socket2.c
+++ b/sys/kern/uipc_socket2.c
@@ -256,11 +256,11 @@ sonewconn(head, connstatus)
head->so_qlen++;
} else {
/*
- * XXXRW: Keep removing sockets from the head until there's
- * room for us to insert on the tail. In pre-locking
- * revisions, this was a simple if(), but as we could be
- * racing with other threads and soabort() requires dropping
- * locks, we must loop waiting for the condition to be true.
+ * Keep removing sockets from the head until there's room for
+ * us to insert on the tail. In pre-locking revisions, this
+ * was a simple if(), but as we could be racing with other
+ * threads and soabort() requires dropping locks, we must
+ * loop waiting for the condition to be true.
*/
while (head->so_incqlen > head->so_qlimit) {
struct socket *sp;
OpenPOWER on IntegriCloud