From mboxrd@z Thu Jan 1 00:00:00 1970 From: Benjamin Marzinski Subject: [PATCH v2] multipath: fix set_oom_adj Date: Thu, 10 Jan 2013 14:16:54 -0600 Message-ID: <20130110201654.GU19059@ether.msp.redhat.com> Reply-To: device-mapper development Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com To: device-mapper development Cc: Christophe Varoqui List-Id: dm-devel.ids Fix set_oom_adj() to work correclty if OOM_ADJUST_MIN isn't defined. Signed-off-by: Benjamin Marzinski --- multipathd/main.c | 4 ++++ 1 file changed, 4 insertions(+) Index: multipath-tools-130109/multipathd/main.c =================================================================== --- multipath-tools-130109.orig/multipathd/main.c +++ multipath-tools-130109/multipathd/main.c @@ -1542,8 +1542,12 @@ set_oom_adj (void) strerror(errno)); return; } +#ifdef OOM_ADJUST_MIN file = "/proc/self/oom_adj"; score = OOM_ADJUST_MIN; +#else + retry = 0; +#endif } while (retry--); condlog(0, "couldn't adjust oom score"); }