<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hello!<br>
    <div class="moz-forward-container"> <br>
      While trying to mount two different lustre filesystems on a local
      node with the "llmount.sh" script, I noticed that the path to
      mount mds and ost(s) was computed like this:<br>
      <blockquote>eval mntpt=${!var:-${MOUNT%/*}/$facet} # var is not
        defined by default, so this removes<br>
                                                                        
            # everything after the last '/' of $MOUNT<br>
      </blockquote>
      The code can be found at test-framework.sh in the function
      "facet_mntpt" around the line 3226.<br>
      <br>
      <br>
      By default MOUNT is initialized like this:<br>
      <blockquote>MOUNT=${MOUNT:-/mnt/${FSNAME}} # default:
        "/mnt/lustre"<br>
      </blockquote>
      Thus the default mountpoints for mds and ost(s) are "/mnt/mds1"
      and "/mnt/ost1".<br>
      Because of that, when trying to do two successive calls to
      "llmount.sh" with two different values for FSNAME, the second fs
      to be mounted will unmount the first's mds and ost(s) (paths are
      identical).<br>
      <br>
      <br>
      Is there any reason to truncate the MOUNT variable like this ?
      Shouldn't the mountpoint path look more like
      "/mnt/<fsname>-mds1" and "/mnt/<fsname>-ost1" ?<br>
      <br>
      <br>
      Regards,<br>
      Quentin Bouget<br>
      <br>
    </div>
    <br>
  </body>
</html>