From ba6c48c9e90f593007938dbe369bcb1564798421 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Thu, 8 Jul 2021 17:34:58 -0700 Subject: [PATCH] whitespace --- net/uring/file_linux.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/net/uring/file_linux.go b/net/uring/file_linux.go index ee62bbcd4..7689cfc34 100644 --- a/net/uring/file_linux.go +++ b/net/uring/file_linux.go @@ -42,12 +42,10 @@ type file struct { // We attempt to keep them all queued up for the kernel to fulfill. // The array length is tied to the size of the uring. readReqs [1]*C.goreq // Whoops! The kernel apparently cannot handle more than 1 concurrent preadv calls on a tun device! - // writeReqs is an array of re-usable file pwritev requests. // We dispatch them to the kernel as writes are requested. // The array length is tied to the size of the uring. writeReqs [8]*C.goreq - // writeReqC is a channel containing indices into writeReqs // that are free to use (that is, not in the kernel). writeReqC chan int