Blame SOURCES/tuned-2.3.0-network-throughput.patch

293355
From 153afc6c9f7663ad083fbb764164e57737f7e4d2 Mon Sep 17 00:00:00 2001
293355
From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= <jskarvad@redhat.com>
293355
Date: Fri, 14 Feb 2014 13:31:21 +0100
293355
Subject: [PATCH 4/4] network-throughput: added new profile
293355
MIME-Version: 1.0
293355
Content-Type: text/plain; charset=UTF-8
293355
Content-Transfer-Encoding: 8bit
293355
293355
Resolves: rhbz#1052421
293355
293355
Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
293355
---
293355
 man/tuned-adm.8                        |  5 +++++
293355
 profiles/network-throughput/tuned.conf | 15 +++++++++++++++
293355
 2 files changed, 20 insertions(+)
293355
 create mode 100644 profiles/network-throughput/tuned.conf
293355
293355
diff --git a/man/tuned-adm.8 b/man/tuned-adm.8
293355
index dfba025..c2a11a3 100644
293355
--- a/man/tuned-adm.8
293355
+++ b/man/tuned-adm.8
293355
@@ -111,6 +111,11 @@ CPU governor is set to performance andlocked to the low C states (by PM QoS).
293355
 CPU energy performance bias to performance.
293355
 
293355
 .TP
293355
+.BI network-throughput
293355
+Profile for throughput network tuning. It is based on the throughput-performance
293355
+profile. It additionaly increases kernel network buffers.
293355
+
293355
+.TP
293355
 .BI network-latency
293355
 Profile for low latency network tuning. It is based on the latency-performance
293355
 profile. It additionaly disables transparent hugepages, NUMA balancing and
293355
diff --git a/profiles/network-throughput/tuned.conf b/profiles/network-throughput/tuned.conf
293355
new file mode 100644
293355
index 0000000..fbc2b72
293355
--- /dev/null
293355
+++ b/profiles/network-throughput/tuned.conf
293355
@@ -0,0 +1,15 @@
293355
+#
293355
+# tuned configuration
293355
+#
293355
+
293355
+[main]
293355
+include=throughput-performance
293355
+
293355
+[sysctl]
293355
+# Increase kernel buffer size maximums.  Currently this seems only necessary at 40Gb speeds.
293355
+#
293355
+# The buffer tuning values below do not account for any potential hugepage allocation.
293355
+# Ensure that you do not oversubscribe system memory.
293355
+net.ipv4.tcp_rmem="4096 87380 16777216"
293355
+net.ipv4.tcp_wmem="4096 16384 16777216"
293355
+net.ipv4.udp_mem="3145728 4194304 16777216"
293355
-- 
293355
1.8.5.3
293355