Whamcloud - gitweb
LUDOC-337 fix: flock example should mount using mgs not mds 58/22658/4
authorJoseph Gmitter <joseph.gmitter@intel.com>
Wed, 21 Sep 2016 14:22:58 +0000 (10:22 -0400)
committerJoseph Gmitter <joseph.gmitter@intel.com>
Fri, 2 Dec 2016 19:27:06 +0000 (19:27 +0000)
The mount command example should mount using mgs@tcp instead
of mds@tcp.  Also, a minor style issue is fixed with the example.

Signed-off-by: Joseph Gmitter <joseph.gmitter@intel.com>
Change-Id: I01d94aad640adebd239005ef14d18e6de8a25a8a
Reviewed-on: https://review.whamcloud.com/22658
Tested-by: Jenkins
SystemConfigurationUtilities.xml

index d9e7d59..d748e46 100644 (file)
@@ -2707,12 +2707,18 @@ lr_reader</title>
           </tbody>
         </tgroup>
       </informaltable>
-      <para>A call to use flock may be blocked if another process is holding an incompatible lock. Locks created using flock are applicable for an open file table entry. Therefore, a single process may hold only one type of lock (shared or exclusive) on a single file. Subsequent flock calls on a file that is already locked converts the existing lock to the new lock mode.</para>
+      <para>A call to use flock may be blocked if another process is holding an
+          incompatible lock. Locks created using flock are applicable for an
+          open file table entry. Therefore, a single process may hold only one
+          type of lock (shared or exclusive) on a single file. Subsequent flock
+          calls on a file that is already locked converts the existing lock to
+          the new lock mode.</para>
       <section remap="h4">
         <title>Example</title>
-        <screen>$ mount -t lustre -o flock mds@tcp0:/lustre /mnt/client</screen>
+        <screen>$ mount -t lustre -o flock mgs@tcp0:/lustre /mnt/client</screen>
         <para>You can check it in /etc/mtab. It should look like,</para>
-        <screen>mds@tcp0:/lustre /mnt/client lustre rw,flock         0       0</screen>
+        <screen>mgs@tcp0:/lustre /mnt/client lustre rw,flock         0       0
+        </screen>
       </section>
     </section>
     <section remap="h3" condition='l29'>