linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bart Van Assche <bvanassche-HInyCGIudOg@public.gmane.org>
To: Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Cc: "linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Subject: Re: [PATCH 3/4 for opensm] /etc/init.d/opensmd: Improve systemd integration
Date: Wed, 24 Oct 2012 16:40:37 +0200	[thread overview]
Message-ID: <5087FDE5.30603@acm.org> (raw)
In-Reply-To: <20121024132726.GB18591@calypso>

On 10/24/12 15:27, Alex Netes wrote:
> On 16:44 Fri 21 Sep     , Bart Van Assche wrote:
>> +default_rdma_service=openibd
>> +AC_ARG_WITH([rdma_service],
>> +    AC_HELP_STRING([--with-rdma-service=name],
>> +                   [name of the RDMA service: "rdma" when using /etc/init.d/rdma to start RDMA services; "openibd" when using /etc/init.d/openibd to start RDMA services [default=${default_rdma_service}]]))
>> +AC_SUBST(RDMA_SERVICE, ${with_rdma_service:-${default_rdma_service}})
>> +
> 
> There is also an option to run opensm with ibsim. In that case neither rdma
> nor openibd should run.

Does running opensm with ibsim require to preload libumad2sim ? If so, that's
something that's not supported by the current opensm init script, isn't it ?
If that is correct then it looks fine to me to make the dependence on the
openibd/rdma service explicit in the opensm startup script.

>>   start () {
>> +    if [ -e $pidfile ]; then
> 
> On opensm segfault (happens one in a while :), pidfile won't be removed, so
> you won't be able to start the opensm again. I guess that same thing can
> happen on warm reboot.
> 
>> +	echo Already started
>> +	return 1
>> +    fi

Good catch. I'll start testing the additional changes below:

diff --git a/scripts/opensm.init.in b/scripts/opensm.init.in
index ddd1d6b..c169974 100644
--- a/scripts/opensm.init.in
+++ b/scripts/opensm.init.in
@@ -68,12 +68,18 @@ if [[ -s $CONFIG ]]; then
     . $CONFIG
 fi
 
+running () {
+    test -e $pidfile &&
+        test "$(readlink "/proc/$(cat $pidfile)/exe")" = "@sbindir@/opensm"
+}
+
 start () {
-    if [ -e $pidfile ]; then
+    if running; then
 	echo Already started
 	return 1
     fi
     echo -n "Starting opensm: "
+    rm -f $pidfile
     @sbindir@/opensm --daemon --pidfile $pidfile $OPTIONS > /dev/null
     if [[ $RETVAL -eq 0 ]]; then
         success
@@ -124,7 +130,7 @@ case "$1" in
 	restart
 	;;
     try-restart | condrestart)
-	[ -e $pidfile ] && restart
+	running && restart
 	;;
     resweep)
 	killall -HUP opensm
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2012-10-24 14:40 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-21 14:44 [PATCH 3/4 for opensm] /etc/init.d/opensmd: Improve systemd integration Bart Van Assche
     [not found] ` <505C7D44.9060500-HInyCGIudOg@public.gmane.org>
2012-10-24 13:27   ` Alex Netes
2012-10-24 14:33     ` Doug Ledford
     [not found]       ` <5087FC29.4030303-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2012-10-24 14:45         ` Bart Van Assche
     [not found]           ` <5087FF1F.20907-HInyCGIudOg@public.gmane.org>
2012-10-24 14:48             ` Doug Ledford
2012-10-24 14:40     ` Bart Van Assche [this message]
     [not found]       ` <5087FDE5.30603-HInyCGIudOg@public.gmane.org>
2012-10-24 16:13         ` Alex Netes
2012-10-25  9:59           ` [PATCH 3/4 v2 " Bart Van Assche

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5087FDE5.30603@acm.org \
    --to=bvanassche-hinycgiudog@public.gmane.org \
    --cc=alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).