All of lore.kernel.org
 help / color / mirror / Atom feed
* app launchers should NOT modify /proc/sys/vm
@ 2009-11-24 12:06 Sebastian Spaeth
  0 siblings, 0 replies; 4+ messages in thread
From: Sebastian Spaeth @ 2009-11-24 12:06 UTC (permalink / raw)
  To: openembedded-devel


[-- Attachment #1.1: Type: text/plain, Size: 943 bytes --]

Currently, the navit (routing app) launcher script modifies
/proc/sys/vm/overcommit_memory without ever setting it back. This change
should -if at all- should only be done with serious evaluation on the
respective devices IMHO. I don't want to introduce random OOM process
killings because apps start using the RAM the kernel has promised to them.

Do I get the OK to remove the relevant lines? I will follow up on this
mail with a patch that you can ACK.

spaetz

Commit introducing this:
http://cgit.openembedded.net/cgit.cgi/openembedded/commit/?id=742fb4ae71e6a7e655385086ba9edebbf00b6ebd

author	Matthias Hentges <oe@hentges.net>
committer	Matthias Hentges <oe@hentges.net>	2008-01-05
commit	742fb4ae71e6a7e655385086ba9edebbf00b6ebd
--- a/dev/null
+++ b/packages/navit/files/navit.launcher
...
+ if test "$USER" = "root"
+ then
+ echo "Enabling low-mem workaround..."
+ echo 1 > /proc/sys/vm/overcommit_memory



[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 261 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 268 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* app launchers should NOT modify /proc/sys/vm
@ 2009-11-24 12:29 Sebastian Spaeth
  2009-11-24 12:53 ` [PATCH] navit: Do not set /proc/sys/vm/overcommit in an app launcher, especially not without ever changing it back Sebastian Spaeth
  0 siblings, 1 reply; 4+ messages in thread
From: Sebastian Spaeth @ 2009-11-24 12:29 UTC (permalink / raw)
  To: openembedded-devel

P.S. Sorry if this comes through twice. Dreamhost mail server was having
issues...

Currently, the navit (routing app) launcher script modifies
/proc/sys/vm/overcommit_memory without ever setting it back. This change
should -if at all- should only be done with serious evaluation on the
respective devices IMHO. I don't want to introduce random OOM process
killings for everyone because apps start using the RAM the kernel has
promised to them.

Do I get the OK to remove the launcher which is only doing this hackery?
I will follow up on this mail with a patch that you can ACK.

spaetz

Commit introducing this:
http://cgit.openembedded.net/cgit.cgi/openembedded/commit/?id=742fb4ae71e6a7e655385086ba9edebbf00b6ebd

author	Matthias Hentges <oe@hentges.net>
committer	Matthias Hentges <oe@hentges.net>	2008-01-05
commit	742fb4ae71e6a7e655385086ba9edebbf00b6ebd
--- a/dev/null
+++ b/packages/navit/files/navit.launcher
...
+ if test "$USER" = "root"
+ then
+ echo "Enabling low-mem workaround..."
+ echo 1 > /proc/sys/vm/overcommit_memory






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] navit: Do not set /proc/sys/vm/overcommit in an app launcher, especially not without ever changing it back.
  2009-11-24 12:29 app launchers should NOT modify /proc/sys/vm Sebastian Spaeth
@ 2009-11-24 12:53 ` Sebastian Spaeth
  2009-11-24 22:50   ` Leon Woestenberg
  0 siblings, 1 reply; 4+ messages in thread
From: Sebastian Spaeth @ 2009-11-24 12:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Sebastian Spaeth, SHR-devel

* This reverts parts of 742fb4ae71e6a7e655385086ba9edebbf00b6ebd
* If someone wants to do use this, it should be done on a more finegrained distro basis

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
---
 recipes/navit/files/navit.launcher |   30 ------------------------------
 recipes/navit/navit.inc            |    4 ----
 2 files changed, 0 insertions(+), 34 deletions(-)
 delete mode 100644 recipes/navit/files/navit.launcher

diff --git a/recipes/navit/files/navit.launcher b/recipes/navit/files/navit.launcher
deleted file mode 100644
index b95aadb..0000000
--- a/recipes/navit/files/navit.launcher
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /bin/sh
-#
-# Copyright Matthias Hentges <devel@hentges.net> (c) 2008
-# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)
-#
-# Filename: navit.launcher
-# Date: 20080105 (YMD)
-#
-#################################################################################
-#
-# 20080105 - v0.0.1	- Initial release
-
-# On devices with low memory (< 512Mb?) Navit will segfault on start.
-# This can be worked around by doing
-# "echo 1 > /proc/sys/vm/overcommit_memory"
-
-if test "`cat /proc/meminfo | grep ^MemTotal | awk '{print $2}'`" -lt "500000"
-then
-	if test "$USER" = "root"
-	then
-		echo "Enabling low-mem workaround..."
-		echo 1 > /proc/sys/vm/overcommit_memory
-	else
-		echo "I need root-privs to enable the low-mem workaround!"
-	fi
-fi
-
-navit.real $*
-	
-
diff --git a/recipes/navit/navit.inc b/recipes/navit/navit.inc
index 8ad439d..fa250ff 100644
--- a/recipes/navit/navit.inc
+++ b/recipes/navit/navit.inc
@@ -15,7 +15,6 @@ FILES_${PN}-dbg += "${libdir}/${PN}/*/.debug"
 
 SRC_URI_append = " \
                   file://navit.desktop \
-                  file://navit.launcher \
                   file://navit.png \
 	  	 "
 
@@ -25,8 +24,5 @@ do_install_append() {
         install -d ${D}${datadir}/pixmaps/
         install -m 0644 ${WORKDIR}/navit.png ${D}${datadir}/pixmaps/
 
-        mv ${D}${bindir}/navit ${D}${bindir}/navit.real
-        install -m 0755 ${WORKDIR}/navit.launcher ${D}${bindir}/navit
-
 	rm ${D}${libdir}/${PN}/*/*.la
 }
-- 
1.6.3.3




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] navit: Do not set /proc/sys/vm/overcommit in an app launcher, especially not without ever changing it back.
  2009-11-24 12:53 ` [PATCH] navit: Do not set /proc/sys/vm/overcommit in an app launcher, especially not without ever changing it back Sebastian Spaeth
@ 2009-11-24 22:50   ` Leon Woestenberg
  0 siblings, 0 replies; 4+ messages in thread
From: Leon Woestenberg @ 2009-11-24 22:50 UTC (permalink / raw)
  To: openembedded-devel

Hello all,

On Tue, Nov 24, 2009 at 1:53 PM, Sebastian Spaeth <Sebastian@sspaeth.de> wrote:
> * This reverts parts of 742fb4ae71e6a7e655385086ba9edebbf00b6ebd
> * If someone wants to do use this, it should be done on a more finegrained distro basis
>
+1 for the reverting patch.

Agreed with the remark this belongs in distro policy.

>
> -# On devices with low memory (< 512Mb?) Navit will segfault on start.
> -# This can be worked around by doing
> -# "echo 1 > /proc/sys/vm/overcommit_memory"
>

Regards,
-- 
Leon



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-11-24 22:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-24 12:29 app launchers should NOT modify /proc/sys/vm Sebastian Spaeth
2009-11-24 12:53 ` [PATCH] navit: Do not set /proc/sys/vm/overcommit in an app launcher, especially not without ever changing it back Sebastian Spaeth
2009-11-24 22:50   ` Leon Woestenberg
  -- strict thread matches above, loose matches on Subject: below --
2009-11-24 12:06 app launchers should NOT modify /proc/sys/vm Sebastian Spaeth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.