From e6827d62c5969184d00f316feb6d3284059721d1 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 3 Nov 2006 15:27:35 +0000 Subject: fix ppc limits (#184820) --- initscripts.spec | 3 +++ sysctl.conf.ppc | 36 ++++++++++++++++++++++++++++++++++++ sysctl.conf.ppc64 | 36 ------------------------------------ 3 files changed, 39 insertions(+), 36 deletions(-) create mode 100644 sysctl.conf.ppc delete mode 100644 sysctl.conf.ppc64 diff --git a/initscripts.spec b/initscripts.spec index 9c850989..cdffa7a0 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -193,6 +193,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %attr(0664,root,utmp) /var/run/utmp %changelog +* Fri Nov 3 2006 Bill Nottingham 8.45.8.EL-1 +- fix ppc limits (#184820) + * Wed Nov 1 2006 Bill Nottingham 8.45.7.EL-1 - fix gdm in CJKI (#209579, #213196) - rename_device: correctly ignore backup interface files diff --git a/sysctl.conf.ppc b/sysctl.conf.ppc new file mode 100644 index 00000000..0cd5eecc --- /dev/null +++ b/sysctl.conf.ppc @@ -0,0 +1,36 @@ +# Kernel sysctl configuration file for Red Hat Linux +# +# For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and +# sysctl.conf(5) for more details. + +# Controls IP packet forwarding +net.ipv4.ip_forward = 0 + +# Controls source route verification +net.ipv4.conf.default.rp_filter = 1 + +# Do not accept source routing +net.ipv4.conf.default.accept_source_route = 0 + +# Controls the System Request debugging functionality of the kernel +kernel.sysrq = 0 + +# Controls whether core dumps will append the PID to the core filename +# Useful for debugging multi-threaded applications +kernel.core_uses_pid = 1 + +# Controls the use of TCP syncookies +net.ipv4.tcp_syncookies = 1 + +# Controls the maximum size of a message, in bytes +kernel.msgmnb = 65536 + +# Controls the default maxmimum size of a mesage queue +kernel.msgmax = 65536 + +# Controls the maximum shared segment size, in bytes +kernel.shmmax = 137438953472 + +# Controls the maximum number of shared memory segments, in pages +kernel.shmall = 536870912 + diff --git a/sysctl.conf.ppc64 b/sysctl.conf.ppc64 deleted file mode 100644 index 0cd5eecc..00000000 --- a/sysctl.conf.ppc64 +++ /dev/null @@ -1,36 +0,0 @@ -# Kernel sysctl configuration file for Red Hat Linux -# -# For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and -# sysctl.conf(5) for more details. - -# Controls IP packet forwarding -net.ipv4.ip_forward = 0 - -# Controls source route verification -net.ipv4.conf.default.rp_filter = 1 - -# Do not accept source routing -net.ipv4.conf.default.accept_source_route = 0 - -# Controls the System Request debugging functionality of the kernel -kernel.sysrq = 0 - -# Controls whether core dumps will append the PID to the core filename -# Useful for debugging multi-threaded applications -kernel.core_uses_pid = 1 - -# Controls the use of TCP syncookies -net.ipv4.tcp_syncookies = 1 - -# Controls the maximum size of a message, in bytes -kernel.msgmnb = 65536 - -# Controls the default maxmimum size of a mesage queue -kernel.msgmax = 65536 - -# Controls the maximum shared segment size, in bytes -kernel.shmmax = 137438953472 - -# Controls the maximum number of shared memory segments, in pages -kernel.shmall = 536870912 - -- cgit