Thread (3 messages) read the whole thread 3 messages, 3 authors, 2012-10-24

Re: [PATCH 3/4 for opensm] /etc/init.d/opensmd: Improve systemd integration

From: Bart Van Assche <hidden>
Date: 2012-10-24 14:40:37
Subsystem: the rest · Maintainer: Linus Torvalds

Possibly related (same subject, not in this thread)

On 10/24/12 15:27, Alex Netes wrote:
On 16:44 Fri 21 Sep     , Bart Van Assche wrote:
quoted
+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.
quoted
  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.
quoted
+	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
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help