summaryrefslogtreecommitdiffhomepage
path: root/runsc
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-05-11 19:14:29 +0000
committergVisor bot <gvisor-bot@google.com>2020-05-11 19:14:29 +0000
commit374762615df60a84047c1c3db6d843b186a4a1de (patch)
tree0e0a12d49c275c8bae00823bad35921324f32b64 /runsc
parentaa7d16068c3e0425bb2c8cb3135ebc68ab214b61 (diff)
parente838e7ab3406ff55faf034f67fe91a31cca18ab5 (diff)
Merge release-20200422.0-66-ge838e7a (automated)
Diffstat (limited to 'runsc')
-rw-r--r--runsc/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/main.go b/runsc/main.go
index 0216e9481..0625a06e0 100644
--- a/runsc/main.go
+++ b/runsc/main.go
@@ -72,7 +72,7 @@ var (
network = flag.String("network", "sandbox", "specifies which network to use: sandbox (default), host, none. Using network inside the sandbox is more secure because it's isolated from the host network.")
hardwareGSO = flag.Bool("gso", true, "enable hardware segmentation offload if it is supported by a network device.")
softwareGSO = flag.Bool("software-gso", true, "enable software segmentation offload when hardware ofload can't be enabled.")
- qDisc = flag.String("qdisc", "none", "specifies which queueing discipline to apply by default to the non loopback nics used by the sandbox.")
+ qDisc = flag.String("qdisc", "fifo", "specifies which queueing discipline to apply by default to the non loopback nics used by the sandbox.")
fileAccess = flag.String("file-access", "exclusive", "specifies which filesystem to use for the root mount: exclusive (default), shared. Volume mounts are always shared.")
fsGoferHostUDS = flag.Bool("fsgofer-host-uds", false, "allow the gofer to mount Unix Domain Sockets.")
overlay = flag.Bool("overlay", false, "wrap filesystem mounts with writable overlay. All modifications are stored in memory inside the sandbox.")