diff --git a/lustre/ChangeLog b/lustre/ChangeLog index f745d479240bd8eb1ead4acf9e708aa8be793f8f..cd2acd2adf2158c311f6f96fe5c1eb6ea6557e6a 100644 --- a/lustre/ChangeLog +++ b/lustre/ChangeLog @@ -139,6 +139,11 @@ Bugzilla : 12446 Description: OSS needs mutliple precreate threads Details : Add ability to start more than one create thread per OSS. +Severity : normal +Bugzilla : 13362 +Description: Sanity.sh test_65k failed: setstripe should have succeeded +Details : execute lfs setstripe on client + -------------------------------------------------------------------------------- 2007-08-10 Cluster File Systems, Inc. <info@clusterfs.com> diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 195319f6e074085a539fb97443efc5f29507b856..81183a190f572a07daf4e11592a2a7d4dbcaea32 100644 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -2851,7 +2851,7 @@ test_65k() { # bug11679 echo $OSC "is activate" do_facet mds lctl --device %$OSC activate done - mkdir -p $DIR/$tdir + do_facet client mkdir -p $DIR/$tdir for INACTIVE_OSC in $MDS_OSCS; do echo $INACTIVE_OSC "is Deactivate:" do_facet mds lctl --device %$INACTIVE_OSC deactivate @@ -2860,11 +2860,11 @@ test_65k() { # bug11679 STRIPE_INDEX=`do_facet mds cat $LPROC/lov/*md*/target_obd | grep $STRIPE_OST | awk -F: '{print $1}'` echo "$SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} 0 ${STRIPE_INDEX} 1" - do_facet mds $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} 0 ${STRIPE_INDEX} 1 + do_facet client $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} 0 ${STRIPE_INDEX} 1 RC=$? [ $RC -ne 0 ] && error "setstripe should have succeeded" done - rm -f $DIR/$tdir/* + do_facet client rm -f $DIR/$tdir/* echo $INACTIVE_OSC "is Activate." do_facet mds lctl --device %$INACTIVE_OSC activate done