Whamcloud - gitweb
Branch b1_4
authoradilger <adilger>
Fri, 2 Sep 2005 16:57:34 +0000 (16:57 +0000)
committeradilger <adilger>
Fri, 2 Sep 2005 16:57:34 +0000 (16:57 +0000)
Add documentation for the supplementary group upcall in lmc docs.
Fix minor inconsistency between lmc and lconf usage.
b=9259

lustre/doc/lmc.1
lustre/doc/lmc.lyx
lustre/utils/lconf
lustre/utils/lmc

index 1f05f0b..0377c33 100644 (file)
@@ -51,6 +51,9 @@ Specify the location of the Portals upcall scripts used by the client for recove
 --upcall <path> 
 Specify the location of both (Lustre and Portals) upcall scripts used by the client for recovery.
 .TP
+--group_upcall <path> 
+Specify the location of the group upcall scripts used by the MDS for determiningsupplementary group membership.
+.TP
 --ptldebug <debug_level>
 Set the portals debug level.
 .TP
index 837c61f..aa44852 100644 (file)
@@ -170,6 +170,11 @@ The arguments required are:
  scripts used by the client for recovery
 \layout Description
 
+--group_upcall\SpecialChar ~
+<path> Specify the location of the group upcall scripts used by the MDS
+ for determiningsupplementary group membership
+\layout Description
+
 --ptldebug\SpecialChar ~
 <debug_level> Set the portals debug level.
 \layout Description
index 0411946..66628bf 100755 (executable)
@@ -871,7 +871,7 @@ def mkfs(dev, devsize, fstype, jsize, isize, mkfsoptions, isblock=1):
         # devsize is in 1k, and fs block count is in 4k
         block_cnt = devsize/4
 
-    if fstype in ('ext3', 'extN', 'ldiskfs'):
+    if fstype in ('ext3', 'ldiskfs'):
         # ext3 journal size is in megabytes
         if jsize == 0:
             if devsize == 0:
@@ -944,7 +944,7 @@ def mkfs(dev, devsize, fstype, jsize, isize, mkfsoptions, isblock=1):
     if ret:
         panic("Unable to build fs:", dev, string.join(out))
     # enable hash tree indexing on fsswe
-    if fstype in ('ext3', 'extN', 'ldiskfs'):
+    if fstype in ('ext3', 'ldiskfs'):
         htree = 'tune2fs -O dir_index'
         (ret, out) = run (htree, dev)
         if ret:
index 78435c0..5b6ea40 100755 (executable)
@@ -66,7 +66,7 @@ Object creation command summary:
   --timeout num
   --upcall path
   --lustre_upcall path
-  --groups_upcall path
+  --group_upcall path
   --portals_upcall path
   --ptldebug debug_level
   --subsystem subsystem_name
@@ -162,7 +162,7 @@ lmc_options = [
     ('timeout', "Set timeout to initiate recovery.", PARAM),
     ('upcall', "Set both lustre and portals upcall scripts.", PARAM),
     ('lustre_upcall', "Set location of lustre upcall script.", PARAM),
-    ('groups_upcall', "Set location of extended groups upcall script.", PARAM),
+    ('group_upcall', "Set location of extended groups upcall script.", PARAM),
     ('portals_upcall', "Set location of portals upcall script.", PARAM),
     ('ptldebug', "Set the portals debug level",  PARAM),
     ('subsystem', "Specify which Lustre subsystems have debug output recorded in the log",  PARAM),