From: Nathan Scott Date: Thu, 2 Jun 2005 06:02:53 +0000 (+0000) Subject: Add three additional quota tests - 106/107/108. X-Git-Tag: v1.1.0~726 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=e52c143e3c82792beaa6cf1a45d991f7334878d6;p=users%2Fhch%2Fxfstests-dev.git Add three additional quota tests - 106/107/108. Merge of master-melb:xfs-cmds:22775a by kenmcd. --- diff --git a/106 b/106 new file mode 100755 index 000000000..00451a9ca --- /dev/null +++ b/106 @@ -0,0 +1,217 @@ +#! /bin/sh +# FS QA Test No. 106 +# +# Exercise basic xfs_quota functionality (user/group/project quota) +# +#----------------------------------------------------------------------- +# Copyright (c) 2005 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of version 2 of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# Further, this software is distributed without any warranty that it is +# free of the rightful claim of any third person regarding infringement +# or the like. Any license provided herein, whether implied or +# otherwise, applies only to this software file. Patent licenses, if +# any, provided herein do not apply to combinations of this program with +# other software, or any other product whatsoever. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write the Free Software Foundation, Inc., 59 +# Temple Place - Suite 330, Boston MA 02111-1307, USA. +# +# Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, +# Mountain View, CA 94043, or: +# +# http://www.sgi.com +# +# For further information regarding this notice, see: +# +# http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ +#----------------------------------------------------------------------- +# +# creator +owner=nathans@sgi.com + +seq=`basename $0` +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15 + +# get standard environment, filters and checks +. ./common.rc +. ./common.filter +. ./common.quota + +_supported_fs xfs +_supported_os Linux #IRIX +_require_scratch +_require_quota + +# real QA test starts here +_scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs +cat $tmp.mkfs >>$seq.full +. $tmp.mkfs + +# setup a default run +[ -z "$MOUNT_OPTIONS" ] && export MOUNT_OPTIONS="-o uquota" + +# initial populate +_qmount +target=$SCRATCH_MNT/target +ltp/fsstress -s 0xdeed -m8 -w -p4 -n1000 $FSSTRESS_AVOID -d $target +ltp/fsstress -s 0xdeed -m8 -z -p4 -n1000 -fchproj=500 -fchown=500 -d $target + +# also use space, to be able to go over/under limits easily +uid=255 +gid=254 +prid=253 +rm -f $SCRATCH_MNT/resv +xfs_io -fc "resvsp 0 200m" -c "chproj $prid" $SCRATCH_MNT/resv +chown $uid $SCRATCH_MNT/resv +chgrp $gid $SCRATCH_MNT/resv + +_qmount + +filter_xfs_quota() +{ + perl -ne " +s,$SCRATCH_MNT,[SCR_MNT],; +s,$SCRATCH_DEV,[SCR_DEV],; +s/Inode: \#\d+ \(0 blocks, 0 extents\)/Inode: #[INO] (0 blocks, 0 extents)/; +s/Inode: \#\d+ \(\d+ blocks, \d+ extents\)/Inode: #[INO] (X blocks, Y extents)/; + print;" +} + +test_quot() +{ + echo "checking quot command (type=$type)" # not deterministic on blks + xfs_quota -x -c "quot -n -$type" $SCRATCH_MNT >>$seq.full 2>&1 +} + +test_report() +{ + echo "checking report command (type=$type)" + xfs_quota -x -c "report -h -$type -U 256" $SCRATCH_MNT +} + +test_limit1() +{ + echo "checking limit command, pass 1 (type=$type)" + xfs_quota -x -c "limit -$type bsoft=100m bhard=100m ihard=2 $id" \ + $SCRATCH_MNT + xfs_quota -x -c "limit -$type isoft=1 rtbsoft=100m rtbhard=110m $id"\ + $SCRATCH_MNT + sleep 2 # let the timer day transition happen + xfs_quota -x -c "quota -$type -b -hnv $id" $SCRATCH_MNT + xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT + #xfs_quota -x -c "quota -$type -r -hnv $id" $SCRATCH_MNT +} + +test_limit2() +{ + # push limits up high, so that timers are cleared, etc. (for later) + echo "checking limit command, pass2 (type=$type)" + xfs_quota -x -c "limit -$type bsoft=300m bhard=400m ihard=8800 $id" \ + $SCRATCH_MNT + xfs_quota -x -c "limit -$type isoft=8000 rtbsoft=310m rtbhard=410m $id"\ + $SCRATCH_MNT + xfs_quota -x -c "quota -$type -b -hnv $id" $SCRATCH_MNT + xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT + #xfs_quota -x -c "quota -$type -r -hnv $id" $SCRATCH_MNT +} + +test_warn() +{ + echo "checking warn command (type=$type)" + xfs_quota -x -c "warn -$type -b 4 $id" $SCRATCH_MNT + xfs_quota -x -c "warn -$type -i 3 $id" $SCRATCH_MNT + #xfs_quota -x -c "warn -$type -r 2 $id" $SCRATCH_MNT + xfs_quota -x -c "quota -$type -b -hnv $id" $SCRATCH_MNT + xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT + #xfs_quota -x -c "quota -$type -r -hnv $id" $SCRATCH_MNT +} + +test_timer() +{ + echo "checking timer command (type=$type)" + xfs_quota -x -c "timer -$type -b 3days" $SCRATCH_MNT + xfs_quota -x -c "timer -$type -i 2days" $SCRATCH_MNT + #xfs_quota -x -c "timer -$type -r 1day" $SCRATCH_MNT +} + +test_state() +{ + echo "checking state command (type=$type)" + xfs_quota -x -c "state -$type" $SCRATCH_MNT + # not yet working properly? + #echo "checking disable command (type=$type)" + #xfs_quota -x -c "disable -$type -v" $SCRATCH_MNT + #echo "checking enable command (type=$type)" + #xfs_quota -x -c "enable -$type -v" $SCRATCH_MNT + #echo "checking off command (type=$type)" + #xfs_quota -x -c "off -$type -v" $SCRATCH_MNT + #echo "checking remove command (type=$type)" + #xfs_quota -x -c "remove -$type -v" $SCRATCH_MNT +} + +test_backup() +{ + echo "checking dump command (type=$type)" + rm -f $tmp.backup + xfs_quota -x -c "dump -$type -f $tmp.backup -U 256" $SCRATCH_MNT + cat $tmp.backup + + echo "changing limits (type=$type)" + xfs_quota -x -c "limit -$type isoft=1000 ihard=1100 $id" $SCRATCH_MNT + xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT + + echo "checking restore command (type=$type)" + xfs_quota -x -c "restore -$type -f $tmp.backup" $SCRATCH_MNT + xfs_quota -x -c "quota -$type -i -hnv $id" $SCRATCH_MNT + rm -f $tmp.backup +} + +test_xfs_quota() +{ + test_quot ; echo + test_report ; echo + test_timer ; echo + test_limit1 ; echo + test_warn ; echo + test_limit2 ; echo + test_backup ; echo + test_state ; echo + echo ; echo +} + +# real QA test starts here +export MOUNT_OPTIONS="-ouquota" +_qmount +type=u +id=$uid +test_xfs_quota | filter_xfs_quota + +export MOUNT_OPTIONS="-ogquota" +_qmount +type=g +id=$gid +test_xfs_quota | filter_xfs_quota + +export MOUNT_OPTIONS="-opquota" +_qmount +type=p +id=$prid +test_xfs_quota | filter_xfs_quota + +umount $SCRATCH_DEV +status=0 +exit diff --git a/106.out b/106.out new file mode 100644 index 000000000..1096acb10 --- /dev/null +++ b/106.out @@ -0,0 +1,379 @@ +QA output created by 106 +meta-data=DDEV isize=XXX agcount=N, agsize=XXX blks +data = bsize=XXX blocks=XXX, imaxpct=PCT + = sunit=XXX swidth=XXX, unwritten=X +naming =VERN bsize=XXX +log =LDEV bsize=XXX blocks=XXX +realtime =RDEV extsz=XXX blocks=XXX, rtextents=XXX +checking quot command (type=u) + +checking report command (type=u) +User quota on [SCR_MNT] ([SCR_DEV]) + Blocks +User ID Used Soft Hard Warn/Grace +---------- --------------------------------- +#0 84.4M 0 0 00 [------] +#1 5.5M 0 0 00 [------] +#2 1.2M 0 0 00 [------] +#3 1.2M 0 0 00 [------] +#4 2.3M 0 0 00 [------] +#5 1004K 0 0 00 [------] +#6 2.1M 0 0 00 [------] +#7 1.0M 0 0 00 [------] +#8 0 0 0 00 [------] +#9 0 0 0 00 [------] +#10 0 0 0 00 [------] +#11 0 0 0 00 [------] +#12 8K 0 0 00 [------] +#13 228K 0 0 00 [------] +#14 0 0 0 00 [------] +#15 696K 0 0 00 [------] +#16 0 0 0 00 [------] +#17 300K 0 0 00 [------] +#18 0 0 0 00 [------] +#20 40K 0 0 00 [------] +#22 256K 0 0 00 [------] +#23 128K 0 0 00 [------] +#24 1.9M 0 0 00 [------] +#25 0 0 0 00 [------] +#26 176K 0 0 00 [------] +#27 0 0 0 00 [------] +#28 0 0 0 00 [------] +#29 0 0 0 00 [------] +#31 616K 0 0 00 [------] +#32 0 0 0 00 [------] +#35 128K 0 0 00 [------] +#37 0 0 0 00 [------] +#38 100K 0 0 00 [------] +#40 0 0 0 00 [------] +#42 412K 0 0 00 [------] +#44 0 0 0 00 [------] +#48 0 0 0 00 [------] +#50 0 0 0 00 [------] +#53 288K 0 0 00 [------] +#54 0 0 0 00 [------] +#55 0 0 0 00 [------] +#56 400K 0 0 00 [------] +#58 0 0 0 00 [------] +#61 0 0 0 00 [------] +#63 528K 0 0 00 [------] +#69 0 0 0 00 [------] +#70 1.2M 0 0 00 [------] +#72 32K 0 0 00 [------] +#75 248K 0 0 00 [------] +#76 0 0 0 00 [------] +#77 0 0 0 00 [------] +#78 632K 0 0 00 [------] +#83 296K 0 0 00 [------] +#89 0 0 0 00 [------] +#91 4K 0 0 00 [------] +#95 0 0 0 00 [------] +#96 0 0 0 00 [------] +#105 0 0 0 00 [------] +#113 0 0 0 00 [------] +#118 0 0 0 00 [------] +#127 0 0 0 00 [------] +#255 200M 0 0 00 [------] + + +checking timer command (type=u) + +checking limit command, pass 1 (type=u) +Disk quotas for User #255 (255) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 200M 100M 100M 00 [-none-] [SCR_MNT] +Disk quotas for User #255 (255) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 1 2 00 [1 day] [SCR_MNT] + +checking warn command (type=u) +Disk quotas for User #255 (255) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 200M 100M 100M 04 [-none-] [SCR_MNT] +Disk quotas for User #255 (255) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 1 2 03 [1 day] [SCR_MNT] + +checking limit command, pass2 (type=u) +Disk quotas for User #255 (255) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 200M 300M 400M 00 [------] [SCR_MNT] +Disk quotas for User #255 (255) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 8k 8.8k 03 [------] [SCR_MNT] + +checking dump command (type=u) +fs = [SCR_DEV] +255 614400 819200 8000 8800 634880 839680 +changing limits (type=u) +Disk quotas for User #255 (255) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 1000 1.1k 00 [------] [SCR_MNT] +checking restore command (type=u) +Disk quotas for User #255 (255) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 8k 8.8k 00 [------] [SCR_MNT] + +checking state command (type=u) +User quota state on [SCR_MNT] ([SCR_DEV]) + Accounting: ON + Enforcement: ON + Inode: #[INO] (X blocks, Y extents) +Blocks grace time: [3 days] +Inodes grace time: [2 days] +Realtime Blocks grace time: [7 days] + + + +checking quot command (type=g) + +checking report command (type=g) +Group quota on [SCR_MNT] ([SCR_DEV]) + Blocks +Group ID Used Soft Hard Warn/Grace +---------- --------------------------------- +#0 85.0M 0 0 00 [------] +#1 6.1M 0 0 00 [------] +#2 676K 0 0 00 [------] +#3 1.9M 0 0 00 [------] +#4 604K 0 0 00 [------] +#5 224K 0 0 00 [------] +#6 504K 0 0 00 [------] +#7 4K 0 0 00 [------] +#8 400K 0 0 00 [------] +#9 0 0 0 00 [------] +#10 56K 0 0 00 [------] +#11 2.6M 0 0 00 [------] +#12 892K 0 0 00 [------] +#13 0 0 0 00 [------] +#14 0 0 0 00 [------] +#15 0 0 0 00 [------] +#17 0 0 0 00 [------] +#20 0 0 0 00 [------] +#21 616K 0 0 00 [------] +#22 0 0 0 00 [------] +#23 472K 0 0 00 [------] +#24 0 0 0 00 [------] +#25 36K 0 0 00 [------] +#26 1.1M 0 0 00 [------] +#27 128K 0 0 00 [------] +#28 0 0 0 00 [------] +#30 248K 0 0 00 [------] +#31 1.0M 0 0 00 [------] +#33 0 0 0 00 [------] +#34 0 0 0 00 [------] +#35 0 0 0 00 [------] +#36 0 0 0 00 [------] +#37 0 0 0 00 [------] +#38 240K 0 0 00 [------] +#41 412K 0 0 00 [------] +#43 32K 0 0 00 [------] +#44 0 0 0 00 [------] +#45 0 0 0 00 [------] +#46 0 0 0 00 [------] +#49 0 0 0 00 [------] +#51 124K 0 0 00 [------] +#53 0 0 0 00 [------] +#55 0 0 0 00 [------] +#56 176K 0 0 00 [------] +#57 288K 0 0 00 [------] +#58 528K 0 0 00 [------] +#59 0 0 0 00 [------] +#67 4K 0 0 00 [------] +#69 624K 0 0 00 [------] +#70 0 0 0 00 [------] +#71 0 0 0 00 [------] +#72 632K 0 0 00 [------] +#73 0 0 0 00 [------] +#75 0 0 0 00 [------] +#79 100K 0 0 00 [------] +#87 1.2M 0 0 00 [------] +#88 0 0 0 00 [------] +#91 0 0 0 00 [------] +#94 4K 0 0 00 [------] +#99 248K 0 0 00 [------] +#101 0 0 0 00 [------] +#108 0 0 0 00 [------] +#112 64K 0 0 00 [------] +#115 296K 0 0 00 [------] +#121 0 0 0 00 [------] +#127 0 0 0 00 [------] +#254 200M 0 0 00 [------] + + +checking timer command (type=g) + +checking limit command, pass 1 (type=g) +Disk quotas for Group #254 (254) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 200M 100M 100M 00 [-none-] [SCR_MNT] +Disk quotas for Group #254 (254) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 1 2 00 [1 day] [SCR_MNT] + +checking warn command (type=g) +Disk quotas for Group #254 (254) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 200M 100M 100M 04 [-none-] [SCR_MNT] +Disk quotas for Group #254 (254) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 1 2 03 [1 day] [SCR_MNT] + +checking limit command, pass2 (type=g) +Disk quotas for Group #254 (254) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 200M 300M 400M 00 [------] [SCR_MNT] +Disk quotas for Group #254 (254) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 8k 8.8k 03 [------] [SCR_MNT] + +checking dump command (type=g) +fs = [SCR_DEV] +254 614400 819200 8000 8800 634880 839680 +changing limits (type=g) +Disk quotas for Group #254 (254) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 1000 1.1k 00 [------] [SCR_MNT] +checking restore command (type=g) +Disk quotas for Group #254 (254) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 1 8k 8.8k 00 [------] [SCR_MNT] + +checking state command (type=g) +Group quota state on [SCR_MNT] ([SCR_DEV]) + Accounting: ON + Enforcement: ON + Inode: #[INO] (X blocks, Y extents) +Blocks grace time: [3 days] +Inodes grace time: [2 days] +Realtime Blocks grace time: [7 days] + + + +checking quot command (type=p) + +checking report command (type=p) +Project quota on [SCR_MNT] ([SCR_DEV]) + Blocks +Project ID Used Soft Hard Warn/Grace +---------- --------------------------------- +#0 85.0M 0 0 00 [------] +#1 6.1M 0 0 00 [------] +#2 676K 0 0 00 [------] +#3 1.9M 0 0 00 [------] +#4 604K 0 0 00 [------] +#5 224K 0 0 00 [------] +#6 504K 0 0 00 [------] +#7 4K 0 0 00 [------] +#8 400K 0 0 00 [------] +#9 0 0 0 00 [------] +#10 56K 0 0 00 [------] +#11 2.6M 0 0 00 [------] +#12 892K 0 0 00 [------] +#13 0 0 0 00 [------] +#14 0 0 0 00 [------] +#15 0 0 0 00 [------] +#17 0 0 0 00 [------] +#20 0 0 0 00 [------] +#21 616K 0 0 00 [------] +#22 0 0 0 00 [------] +#23 472K 0 0 00 [------] +#24 0 0 0 00 [------] +#25 36K 0 0 00 [------] +#26 1.1M 0 0 00 [------] +#27 128K 0 0 00 [------] +#28 0 0 0 00 [------] +#30 248K 0 0 00 [------] +#31 1.0M 0 0 00 [------] +#33 0 0 0 00 [------] +#34 0 0 0 00 [------] +#35 0 0 0 00 [------] +#36 0 0 0 00 [------] +#37 0 0 0 00 [------] +#38 240K 0 0 00 [------] +#41 412K 0 0 00 [------] +#43 32K 0 0 00 [------] +#44 0 0 0 00 [------] +#45 0 0 0 00 [------] +#46 0 0 0 00 [------] +#49 0 0 0 00 [------] +#51 124K 0 0 00 [------] +#53 0 0 0 00 [------] +#55 0 0 0 00 [------] +#56 176K 0 0 00 [------] +#57 288K 0 0 00 [------] +#58 528K 0 0 00 [------] +#59 0 0 0 00 [------] +#67 4K 0 0 00 [------] +#69 624K 0 0 00 [------] +#70 0 0 0 00 [------] +#71 0 0 0 00 [------] +#72 632K 0 0 00 [------] +#73 0 0 0 00 [------] +#75 0 0 0 00 [------] +#79 100K 0 0 00 [------] +#87 1.2M 0 0 00 [------] +#88 0 0 0 00 [------] +#91 0 0 0 00 [------] +#94 4K 0 0 00 [------] +#99 248K 0 0 00 [------] +#101 0 0 0 00 [------] +#108 0 0 0 00 [------] +#112 64K 0 0 00 [------] +#115 296K 0 0 00 [------] +#121 0 0 0 00 [------] +#127 0 0 0 00 [------] +#254 200M 300M 400M 00 [------] + + +checking timer command (type=p) + +checking limit command, pass 1 (type=p) +Disk quotas for Project #253 (253) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 0 100M 100M 00 [------] [SCR_MNT] +Disk quotas for Project #253 (253) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 0 1 2 00 [------] [SCR_MNT] + +checking warn command (type=p) +Disk quotas for Project #253 (253) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 0 100M 100M 00 [------] [SCR_MNT] +Disk quotas for Project #253 (253) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 0 1 2 00 [------] [SCR_MNT] + +checking limit command, pass2 (type=p) +Disk quotas for Project #253 (253) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 0 300M 400M 00 [------] [SCR_MNT] +Disk quotas for Project #253 (253) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 0 8k 8.8k 00 [------] [SCR_MNT] + +checking dump command (type=p) +fs = [SCR_DEV] +253 614400 819200 8000 8800 634880 839680 +fs = [SCR_DEV] +254 614400 819200 8000 8800 634880 839680 +changing limits (type=p) +Disk quotas for Project #253 (253) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 0 1000 1.1k 00 [------] [SCR_MNT] +checking restore command (type=p) +Disk quotas for Project #253 (253) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 0 8k 8.8k 00 [------] [SCR_MNT] + +checking state command (type=p) +Project quota state on [SCR_MNT] ([SCR_DEV]) + Accounting: ON + Enforcement: ON + Inode: #[INO] (X blocks, Y extents) +Blocks grace time: [3 days] +Inodes grace time: [2 days] +Realtime Blocks grace time: [7 days] + + + diff --git a/107 b/107 new file mode 100755 index 000000000..6030be0e1 --- /dev/null +++ b/107 @@ -0,0 +1,137 @@ +#! /bin/sh +# FS QA Test No. 107 +# +# Project quota +# +#----------------------------------------------------------------------- +# Copyright (c) 2005 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of version 2 of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# Further, this software is distributed without any warranty that it is +# free of the rightful claim of any third person regarding infringement +# or the like. Any license provided herein, whether implied or +# otherwise, applies only to this software file. Patent licenses, if +# any, provided herein do not apply to combinations of this program with +# other software, or any other product whatsoever. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write the Free Software Foundation, Inc., 59 +# Temple Place - Suite 330, Boston MA 02111-1307, USA. +# +# Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, +# Mountain View, CA 94043, or: +# +# http://www.sgi.com +# +# For further information regarding this notice, see: +# +# http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ +#----------------------------------------------------------------------- +# +# creator +owner=nathans@sgi.com + +seq=`basename $0` +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15 + +# get standard environment, filters and checks +. ./common.rc +. ./common.filter +. ./common.quota + +filter_xfs_quota() +{ + perl -ne " +s,$target,[TARGET],; +s,$tmp.projects,[PROJECTS_FILE],; +s,$SCRATCH_MNT,[SCR_MNT],; +s,$SCRATCH_DEV,[SCR_DEV],; +s/Inode: \#\d+ \(0 blocks, 0 extents\)/Inode: #[INO] (0 blocks, 0 extents)/; +s/Inode: \#\d+ \(\d+ blocks, \d+ extents\)/Inode: #[INO] (X blocks, Y extents)/; + print;" +} + +_supported_fs xfs +_supported_os Linux #IRIX +_require_scratch +_require_quota + +# real QA test starts here +_scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs +cat $tmp.mkfs >$seq.full +. $tmp.mkfs + +# setup a default run +[ -z "$MOUNT_OPTIONS" ] && export MOUNT_OPTIONS="-o pquota" + +_qmount +src/feature -p $SCRATCH_MNT && _notrun "Cannot run without project quota" + +echo "### create projects file" +rm -f $tmp.projects +target=$SCRATCH_MNT/project +echo "6:$target" | tee -a $seq.full > $tmp.projects + +echo "### populate filesystem" +mkdir $target || exit +FSSTRESS_AVOID="$FSSTRESS_AVOID -fmknod=0 -fsymlink=0" +ltp/fsstress -s 0xfeed -m8 -w -p4 -n1000 $FSSTRESS_AVOID -d $target +ltp/fsstress -s 0xbabe -m8 -z -p4 -n500 -fchproj=250 -fchown=250 -d $target + +QARGS="-x -D $tmp.projects -P /dev/null $SCRATCH_MNT" + +echo "### initial report" +xfs_quota -c 'quot -p' -c 'quota -ip 6' $QARGS | filter_xfs_quota + +echo "### check the project, should give warnings" +xfs_quota -c 'project -c 6' $QARGS | filter_xfs_quota + +echo "### recursively setup the project" +xfs_quota -c 'project -s 6' $QARGS | filter_xfs_quota +xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota + +echo "### check the project, should give no warnings now" +xfs_quota -c 'project -c 6' $QARGS | filter_xfs_quota + +echo "### deny a hard link - wrong project ID" +rm -f $SCRATCH_MNT/outer $target/inner +xfs_io -f -c 'chproj 789' $SCRATCH_MNT/outer +ln $SCRATCH_MNT/outer $target/inner 2>/dev/null +if [ $? -eq 0 ]; then + echo hard link succeeded + ls -ld $SCRATCH_MNT/outer $target/inner +else + echo hard link failed +fi +xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota + +echo "### allow a hard link - right project ID" +xfs_io -c 'chproj 6' $SCRATCH_MNT/outer +ln $SCRATCH_MNT/outer $target/inner +if [ $? -eq 0 ]; then + echo hard link succeeded +else + echo hard link failed + ls -ld $SCRATCH_MNT/outer $target/inner +fi +xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota + +echo "### recursively clear the project" +xfs_quota -c 'project -C 6' $QARGS | filter_xfs_quota +#no output... +xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota + +status=0 +exit diff --git a/107.out b/107.out new file mode 100644 index 000000000..ded6adaaf --- /dev/null +++ b/107.out @@ -0,0 +1,1550 @@ +QA output created by 107 +meta-data=DDEV isize=XXX agcount=N, agsize=XXX blks +data = bsize=XXX blocks=XXX, imaxpct=PCT + = sunit=XXX swidth=XXX, unwritten=X +naming =VERN bsize=XXX +log =LDEV bsize=XXX blocks=XXX +realtime =RDEV extsz=XXX blocks=XXX, rtextents=XXX +### create projects file +### populate filesystem +### initial report +[SCR_DEV] ([SCR_MNT]) Project: +Disk quotas for Project #6 (6) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 2 0 0 00 [--------] [SCR_MNT] +### check the project, should give warnings +Checking project 6 (path [TARGET])... +[TARGET]/p0/d0/fa - project identifier is not set (inode=11, tree=6) +[TARGET]/p0/d0/fa - project inheritance flag is not set +[TARGET]/p0/d0/db/dc/f11 - project identifier is not set (inode=1, tree=6) +[TARGET]/p0/d0/db/dc/f11 - project inheritance flag is not set +[TARGET]/p0/d0/db/dc/f46 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/dc/f46 - project inheritance flag is not set +[TARGET]/p0/d0/db/dc/f49 - project identifier is not set (inode=11, tree=6) +[TARGET]/p0/d0/db/dc/f49 - project inheritance flag is not set +[TARGET]/p0/d0/db/dc/f94 - project identifier is not set (inode=1, tree=6) +[TARGET]/p0/d0/db/dc/f94 - project inheritance flag is not set +[TARGET]/p0/d0/db/dc/fa4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/dc/fa4 - project inheritance flag is not set +[TARGET]/p0/d0/db/dc/ff2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/dc/ff2 - project inheritance flag is not set +[TARGET]/p0/d0/db/dc/f100 - project identifier is not set (inode=2, tree=6) +[TARGET]/p0/d0/db/dc/f100 - project inheritance flag is not set +[TARGET]/p0/d0/db/dc - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/dc - project inheritance flag is not set +[TARGET]/p0/d0/db/f2c - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/f2c - project inheritance flag is not set +[TARGET]/p0/d0/db/d38/f59 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d38/f59 - project inheritance flag is not set +[TARGET]/p0/d0/db/d38/f62 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d38/f62 - project inheritance flag is not set +[TARGET]/p0/d0/db/d38/fa3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d38/fa3 - project inheritance flag is not set +[TARGET]/p0/d0/db/d38/ddb/ff8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d38/ddb/ff8 - project inheritance flag is not set +[TARGET]/p0/d0/db/d38/ddb/d10c - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d38/ddb/d10c - project inheritance flag is not set +[TARGET]/p0/d0/db/d38/ddb - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d38/ddb - project inheritance flag is not set +[TARGET]/p0/d0/db/d38/f105 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d38/f105 - project inheritance flag is not set +[TARGET]/p0/d0/db/d38 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d38 - project inheritance flag is not set +[TARGET]/p0/d0/db/f45 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/f45 - project inheritance flag is not set +[TARGET]/p0/d0/db/f47 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/f47 - project inheritance flag is not set +[TARGET]/p0/d0/db/d9e/fc8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d9e/fc8 - project inheritance flag is not set +[TARGET]/p0/d0/db/d9e/de0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d9e/de0 - project inheritance flag is not set +[TARGET]/p0/d0/db/d9e - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/d9e - project inheritance flag is not set +[TARGET]/p0/d0/db/fdf - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/fdf - project inheritance flag is not set +[TARGET]/p0/d0/db/ff0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db/ff0 - project inheritance flag is not set +[TARGET]/p0/d0/db - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/db - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/f17 - project identifier is not set (inode=1, tree=6) +[TARGET]/p0/d0/d12/d16/f17 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/f29 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/f29 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/f7a - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/f7a - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/faf - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/faf - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/f28 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/f28 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f36 - project identifier is not set (inode=26, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f36 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f3d - project identifier is not set (inode=1, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f3d - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f43 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f43 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/f4b - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/f4b - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/f51 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/f51 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/fb5 - project identifier is not set (inode=5, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/fb5 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/db7/fd5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/db7/fd5 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/db7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44/db7 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d44 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f5e - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f5e - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f67 - project identifier is not set (inode=12, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f67 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f6c - project identifier is not set (inode=2, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f6c - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f7c - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f7c - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/d88 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/d88 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f9b - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/f9b - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc/fc1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc/fc1 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc/fc3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc/fc3 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc/fcd - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc/fcd - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc/fff - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc/fff - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53/dbc - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d53 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f6a - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f6a - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f79 - project identifier is not set (inode=48, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/f79 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d99/f89 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d99/f89 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d99/fda - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d99/fda - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d99 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/d99 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/fb3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30/fb3 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d30 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d30 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/f39 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/f39 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d90/fa2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d90/fa2 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d90/fc7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d90/fc7 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d90/fd4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d90/fd4 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/d90 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/d90 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/f96 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/f96 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/fb0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/fb0 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/fec - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/fec - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/def/ff5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/def/ff5 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/def/d103 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/def/d103 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8/def - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8/def - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/db8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/db8 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/fc5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/fc5 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e/ffb - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e/ffb - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d3e - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d3e - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/f7b - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/f7b - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/f7f - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/f7f - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/d97/fe6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/d97/fe6 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/d97/f10a - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/d97/f10a - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/d97 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/d97 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/f9c - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/f9c - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/fa0 - project identifier is not set (inode=48, tree=6) +[TARGET]/p0/d0/d12/d16/d61/fa0 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/fad - project identifier is not set (inode=48, tree=6) +[TARGET]/p0/d0/d12/d16/d61/fad - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/fb1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/fb1 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/dc0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/dc0 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/fcf - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/fcf - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/ffc - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/ffc - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61/f102 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61/f102 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/d61 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/d61 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16/f91 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16/f91 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d16 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d16 - project inheritance flag is not set +[TARGET]/p0/d0/d12/f2a - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/f2a - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/f3a - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/f3a - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/d8c/f8d - project identifier is not set (inode=17, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/d8c/f8d - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/d8c/dc9/dd2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/d8c/dc9/dd2 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/d8c/dc9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/d8c/dc9 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/d8c/fee - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/d8c/fee - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/d8c - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/d8c - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/fa5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/fa5 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/fcb - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/fcb - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/fe3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/fe3 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b/ff6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b/ff6 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/d8b - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/d8b - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/fb9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/fb9 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/fce - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/fce - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/dd1/fe4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/dd1/fe4 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/dd1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/dd1 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/df4/f68 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/df4/f68 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/df4/ded/d104 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/df4/ded/d104 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/df4/ded - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/df4/ded - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42/df4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42/df4 - project inheritance flag is not set +[TARGET]/p0/d0/d12/d42 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/d42 - project inheritance flag is not set +[TARGET]/p0/d0/d12/f63 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/f63 - project inheritance flag is not set +[TARGET]/p0/d0/d12/f66 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/f66 - project inheritance flag is not set +[TARGET]/p0/d0/d12/f93 - project identifier is not set (inode=121, tree=6) +[TARGET]/p0/d0/d12/f93 - project inheritance flag is not set +[TARGET]/p0/d0/d12/fe8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/fe8 - project inheritance flag is not set +[TARGET]/p0/d0/d12/f107 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12/f107 - project inheritance flag is not set +[TARGET]/p0/d0/d12 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d12 - project inheritance flag is not set +[TARGET]/p0/d0/d1f/f74 - project identifier is not set (inode=12, tree=6) +[TARGET]/p0/d0/d1f/f74 - project inheritance flag is not set +[TARGET]/p0/d0/d1f/fc6 - project identifier is not set (inode=3, tree=6) +[TARGET]/p0/d0/d1f/fc6 - project inheritance flag is not set +[TARGET]/p0/d0/d1f/ffe - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d1f/ffe - project inheritance flag is not set +[TARGET]/p0/d0/d1f/f109 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d1f/f109 - project inheritance flag is not set +[TARGET]/p0/d0/d1f - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d1f - project inheritance flag is not set +[TARGET]/p0/d0/d32/f3b - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32/f3b - project inheritance flag is not set +[TARGET]/p0/d0/d32/f40 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32/f40 - project inheritance flag is not set +[TARGET]/p0/d0/d32/d78/fc2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32/d78/fc2 - project inheritance flag is not set +[TARGET]/p0/d0/d32/d78/dd3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32/d78/dd3 - project inheritance flag is not set +[TARGET]/p0/d0/d32/d78/fe2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32/d78/fe2 - project inheritance flag is not set +[TARGET]/p0/d0/d32/d78 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32/d78 - project inheritance flag is not set +[TARGET]/p0/d0/d32/f82 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32/f82 - project inheritance flag is not set +[TARGET]/p0/d0/d32/f8a - project identifier is not set (inode=12, tree=6) +[TARGET]/p0/d0/d32/f8a - project inheritance flag is not set +[TARGET]/p0/d0/d32/fdc - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32/fdc - project inheritance flag is not set +[TARGET]/p0/d0/d32 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d32 - project inheritance flag is not set +[TARGET]/p0/d0/f58 - project identifier is not set (inode=1, tree=6) +[TARGET]/p0/d0/f58 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/f3c - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/f3c - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab/fca - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab/fca - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab/fe5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab/fe5 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab/dfd/fa8 - project identifier is not set (inode=4, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab/dfd/fa8 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab/dfd - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab/dfd - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a/dab - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a/fba - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a/fba - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a/dd7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a/dd7 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a/fea - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a/fea - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d5a - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d5a - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d7d/dd9/fe9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d7d/dd9/fe9 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d7d/dd9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d7d/dd9 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d7d - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d7d - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d81/f83 - project identifier is not set (inode=7, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d81/f83 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d81/fd6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d81/fd6 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d81 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d81 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/f86 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/f86 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/d8f - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/d8f - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/fb4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/fb4 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/deb - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/deb - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/f106 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/f106 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56/f108 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56/f108 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d56 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d56 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d65/f6d - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d65/f6d - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d65/f6e - project identifier is not set (inode=39, tree=6) +[TARGET]/p0/d0/d64/d6b/d65/f6e - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d65/ff3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d65/ff3 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d65/df7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d65/df7 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/d65 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/d65 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b/f6f - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b/f6f - project inheritance flag is not set +[TARGET]/p0/d0/d64/d6b - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d6b - project inheritance flag is not set +[TARGET]/p0/d0/d64/f7e - project identifier is not set (inode=2, tree=6) +[TARGET]/p0/d0/d64/f7e - project inheritance flag is not set +[TARGET]/p0/d0/d64/d95/fb6 - project identifier is not set (inode=2, tree=6) +[TARGET]/p0/d0/d64/d95/fb6 - project inheritance flag is not set +[TARGET]/p0/d0/d64/d95/fbf - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d95/fbf - project inheritance flag is not set +[TARGET]/p0/d0/d64/d95 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/d95 - project inheritance flag is not set +[TARGET]/p0/d0/d64/fa9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/fa9 - project inheritance flag is not set +[TARGET]/p0/d0/d64/fe1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/fe1 - project inheritance flag is not set +[TARGET]/p0/d0/d64/df1/f10b - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/df1/f10b - project inheritance flag is not set +[TARGET]/p0/d0/d64/df1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64/df1 - project inheritance flag is not set +[TARGET]/p0/d0/d64 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/d64 - project inheritance flag is not set +[TARGET]/p0/d0/df9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/df9 - project inheritance flag is not set +[TARGET]/p0/d0/ffa - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0/ffa - project inheritance flag is not set +[TARGET]/p0/d0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0/d0 - project inheritance flag is not set +[TARGET]/p0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p0 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d12/f2e - project identifier is not set (inode=2, tree=6) +[TARGET]/p1/d7/dc/de/d12/f2e - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d12/fbe - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/d12/fbe - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d12/fe1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/d12/fe1 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d12/f10d - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/d12/f10d - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d12 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/d12 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d58/f77 - project identifier is not set (inode=8, tree=6) +[TARGET]/p1/d7/dc/de/d58/f77 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d58/fd7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/d58/fd7 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d58/ffd - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/dc/de/d58/ffd - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/d58 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/d58 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/f85 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/f85 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/f96 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/f96 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/f97 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/f97 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/fae - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/fae - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/fb4 - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/dc/de/fb4 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/fca - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/fca - project inheritance flag is not set +[TARGET]/p1/d7/dc/de/ff6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de/ff6 - project inheritance flag is not set +[TARGET]/p1/d7/dc/de - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/de - project inheritance flag is not set +[TARGET]/p1/d7/dc/d13/f2b - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d13/f2b - project inheritance flag is not set +[TARGET]/p1/d7/dc/d13/f45 - project identifier is not set (inode=1, tree=6) +[TARGET]/p1/d7/dc/d13/f45 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d13/f49 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d13/f49 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d13/f95 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d13/f95 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d13/fa5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d13/fa5 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d13/fd4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d13/fd4 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d13 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d13 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/f30 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/f30 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/f57 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/f57 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/f6f - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/f6f - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/f9d - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/f9d - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2/fc1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2/fc1 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2/fe4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2/fe4 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2/d100/f10b - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2/d100/f10b - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2/d100 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2/d100 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da2 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fa6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fa6 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da8/fe9 - project identifier is not set (inode=7, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da8/fe9 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da8/df0/f114 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da8/df0/f114 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da8/df0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da8/df0 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/da8 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fab - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fab - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fb7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fb7 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fc0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fc0 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fc8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fc8 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fd2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/fd2 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/ffc - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6/ffc - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2/de6 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/de2 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/fe8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/fe8 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/ffb - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/ffb - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/f10c - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89/f10c - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d89 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/f93 - project identifier is not set (inode=4, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/f93 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/fb9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/fb9 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d107 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/d107 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/f108 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80/f108 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/d80 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f38 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f38 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40/f72 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40/f72 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40/fbc - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40/fbc - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40/fda - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40/fda - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40/f110 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40/f110 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/d40 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f4a - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f4a - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f51 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f51 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f56 - project identifier is not set (inode=1, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f56 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/ddd/fe7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/ddd/fe7 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/ddd/dfe/f103 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/ddd/dfe/f103 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/ddd/dfe - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/ddd/dfe - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/ddd - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/ddd - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f104 - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f104 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f112 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5/f112 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f/df5 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/d5f - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/fef - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32/fef - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d32 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d32 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/f35 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/f35 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/f81 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/f81 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/d86/fc7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/d86/fc7 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/d86/fd5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/d86/fd5 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/d86/fea - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/d86/fea - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/d86 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d41/d86 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d41 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d41 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/f60 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/f60 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/f73 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/f73 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/f8d - project identifier is not set (inode=4, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/f8d - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/f8f - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/f8f - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/fc5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/fc5 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/ff8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/ff8 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/d10f - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d50/d10f - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/d50 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/d50 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/f6d - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/f6d - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27/fa3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27/fa3 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d27 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d27 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/f3b - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/f3b - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47/f62 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47/f62 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47/fbf - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47/fbf - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47/fc2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47/fc2 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47/dc4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47/dc4 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47/dde/f10e - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47/dde/f10e - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47/dde - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47/dde - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47/feb - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47/feb - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47/fee - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47/fee - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/d47 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/d47 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/f6c - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/f6c - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/f7b - project identifier is not set (inode=1, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/f7b - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/fad - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/fad - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/f102 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/f102 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a/f117 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a/f117 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d3a - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d3a - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d4b/f7f - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d4b/f7f - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d4b/dba/fd3 - project identifier is not set (inode=7, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d4b/dba/fd3 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d4b/dba/f101 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d4b/dba/f101 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d4b/dba - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d4b/dba - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d4b/fe0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d4b/fe0 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d4b/ff1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d4b/ff1 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d4b/d115 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d4b/d115 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d4b - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d4b - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/f5c - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/f5c - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/f8a - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/f8a - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/f90 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/f90 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/dcb - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/dcb - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f25 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f25 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f55 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f55 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f67 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f67 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f6a - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f6a - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f7e - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/f7e - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1/faa - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1/faa - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1/fdb - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1/fdb - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1/fdf - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1/fdf - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1/ded - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1/ded - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/db1 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/fe5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/fe5 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/df4/f106 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/df4/f106 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/df4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/df4 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/ffa - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/ffa - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/f116 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82/f116 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70/d82 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d70 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/f76 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/f76 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/f78 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/f78 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/da4/dd9/ff2 - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/da4/dd9/ff2 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/da4/dd9/ff9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/da4/dd9/ff9 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/da4/dd9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/da4/dd9 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/da4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/da4 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/fb2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88/fb2 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/d88 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/faf - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/faf - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/fcd - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/fcd - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105/de3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105/de3 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/d105 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/d105 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61/f109 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61/f109 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d61 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d61 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/f1d - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/f1d - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/f23 - project identifier is not set (inode=4, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/f23 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/f6e - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/f6e - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/d7c/da0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/d7c/da0 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/d7c/fd8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/d7c/fd8 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/d7c/ff3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/d7c/ff3 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/d7c - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/d7c - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/fd0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/fd0 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/fdc - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/fdc - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79/d111 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79/d111 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/d79 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/d79 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/fc3 - project identifier is not set (inode=4, tree=6) +[TARGET]/p1/d7/dc/d15/d44/fc3 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44/fd6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44/fd6 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/d44 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/d44 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/f5b - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/f5b - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/fec - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/fec - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15/f10a - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15/f10a - project inheritance flag is not set +[TARGET]/p1/d7/dc/d15 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d15 - project inheritance flag is not set +[TARGET]/p1/d7/dc/f24 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/f24 - project inheritance flag is not set +[TARGET]/p1/d7/dc/f46 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/f46 - project inheritance flag is not set +[TARGET]/p1/d7/dc/d5d/f8b - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d5d/f8b - project inheritance flag is not set +[TARGET]/p1/d7/dc/d5d/f9a - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d5d/f9a - project inheritance flag is not set +[TARGET]/p1/d7/dc/d5d/fff - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/dc/d5d/fff - project inheritance flag is not set +[TARGET]/p1/d7/dc/d5d - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc/d5d - project inheritance flag is not set +[TARGET]/p1/d7/dc/f9e - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/dc/f9e - project inheritance flag is not set +[TARGET]/p1/d7/dc - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/dc - project inheritance flag is not set +[TARGET]/p1/d7/ff - project identifier is not set (inode=3, tree=6) +[TARGET]/p1/d7/ff - project inheritance flag is not set +[TARGET]/p1/d7/f65 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/f65 - project inheritance flag is not set +[TARGET]/p1/d7/f8e - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/f8e - project inheritance flag is not set +[TARGET]/p1/d7/fac - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/fac - project inheritance flag is not set +[TARGET]/p1/d7/fb8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/fb8 - project inheritance flag is not set +[TARGET]/p1/d7/ff7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7/ff7 - project inheritance flag is not set +[TARGET]/p1/d7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1/d7 - project inheritance flag is not set +[TARGET]/p1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p1 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/f32 - project identifier is not set (inode=10, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/f32 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/f58 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/f58 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/f74 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/f74 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/faf - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/faf - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/fd5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/fd5 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/fe4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/fe4 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/feb - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/feb - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/d11d - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/d11d - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/f128 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1/f128 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/db1 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/dd4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/dd4 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/fe5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42/fe5 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d42 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/f80 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/f80 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/f88 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/f88 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d8b/d112 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d8b/d112 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d8b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/d8b - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/f9f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/f9f - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/fa8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/fa8 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/fb4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/fb4 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/dcc/f123 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/dcc/f123 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/dcc/f125 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/dcc/f125 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/dcc/f12d - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/dcc/f12d - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/dcc - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/dcc - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/ff6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c/ff6 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d6c - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/fad - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/fad - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/fd3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/fd3 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/ff4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/ff4 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/ff7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/ff7 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/f122 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/f122 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/f127 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/f127 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/f130 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38/f130 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d38 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d3f/f45 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d3f/f45 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d3f/f11b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d3f/f11b - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d3f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d3f - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f41 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f41 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56/f66 - project identifier is not set (inode=59, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56/f66 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56/f8e - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56/f8e - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56/dd0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56/dd0 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56/ffc - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56/ffc - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d56 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f72 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f72 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f9b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f9b - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/f4f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/f4f - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/f5f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/f5f - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/fa3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/fa3 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/fb5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/fb5 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/d133 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5/d133 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/da5 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/fdb - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/fdb - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/df5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/df5 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f105 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f105 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f10b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/f10b - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d124 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b/d124 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d7b - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/f8a - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/f8a - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/f98 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/f98 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/dd2/f106 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/dd2/f106 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/dd2/d107 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/dd2/d107 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/dd2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/dd2 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d132 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c/d132 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/d5c - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/d5c - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/f6a - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/f6a - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/f84 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/f84 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/f85 - project identifier is not set (inode=13, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/f85 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b/fff - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b/fff - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/d2b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/d2b - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/f34 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/f34 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/f40 - project identifier is not set (inode=1, tree=6) +[TARGET]/p2/d0/d7/d1d/f40 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/f44 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/f44 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/f76 - project identifier is not set (inode=46, tree=6) +[TARGET]/p2/d0/d7/d1d/f76 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/f92 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/f92 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/db0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/db0 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/dc0/ff0 - project identifier is not set (inode=17, tree=6) +[TARGET]/p2/d0/d7/d1d/dc0/ff0 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/dc0/f102 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/dc0/f102 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/dc0/d12f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/dc0/d12f - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/dc0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/dc0 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/dd8/fdd - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/dd8/fdd - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/dd8/f11c - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/dd8/f11c - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/dd8/f12b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/dd8/f12b - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/dd8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/dd8 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/fe7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/fe7 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d/fee - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d/fee - project inheritance flag is not set +[TARGET]/p2/d0/d7/d1d - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d1d - project inheritance flag is not set +[TARGET]/p2/d0/d7/d26/fa - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d26/fa - project inheritance flag is not set +[TARGET]/p2/d0/d7/d26/f57 - project identifier is not set (inode=13, tree=6) +[TARGET]/p2/d0/d7/d26/f57 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d26/f10d - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d26/f10d - project inheritance flag is not set +[TARGET]/p2/d0/d7/d26/f114 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d26/f114 - project inheritance flag is not set +[TARGET]/p2/d0/d7/d26/f12a - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d26/f12a - project inheritance flag is not set +[TARGET]/p2/d0/d7/d26 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/d26 - project inheritance flag is not set +[TARGET]/p2/d0/d7/f6e - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/f6e - project inheritance flag is not set +[TARGET]/p2/d0/d7/df2/f10c - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/df2/f10c - project inheritance flag is not set +[TARGET]/p2/d0/d7/df2/f10e - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/df2/f10e - project inheritance flag is not set +[TARGET]/p2/d0/d7/df2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/df2 - project inheritance flag is not set +[TARGET]/p2/d0/d7/f12e - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7/f12e - project inheritance flag is not set +[TARGET]/p2/d0/d7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d7 - project inheritance flag is not set +[TARGET]/p2/d0/dd/f17 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/f17 - project inheritance flag is not set +[TARGET]/p2/d0/dd/f1b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/f1b - project inheritance flag is not set +[TARGET]/p2/d0/dd/f1c - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/f1c - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d36/f52 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d36/f52 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d36/f53 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d36/f53 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d36/fa7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d36/fa7 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d36/fbb - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d36/fbb - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d36/f108 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d36/f108 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d36 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d36 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d24/d2f/f90 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d24/d2f/f90 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d24/d2f/f9d - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d24/d2f/f9d - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d24/d2f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d24/d2f - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d24/f33 - project identifier is not set (inode=59, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d24/f33 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d24/da2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d24/da2 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d24/f100 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d24/f100 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d24/f110 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d24/f110 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d24 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d24 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/f4b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/f4b - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/f6b - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/f6b - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d78/f96 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d78/f96 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d78/f11e - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d78/f11e - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/d78 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/d78 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50/f7c - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50/f7c - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/d50 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/d50 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/f82 - project identifier is not set (inode=41, tree=6) +[TARGET]/p2/d0/dd/d25/f82 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/dae/fc2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/dae/fc2 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/dae/fe3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/dae/fe3 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/dae/ff3 - project identifier is not set (inode=17, tree=6) +[TARGET]/p2/d0/dd/d25/dae/ff3 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/dae/f10f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/dae/f10f - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/dae/f113 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/dae/f113 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/dae - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/dae - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/fd7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/fd7 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25/f109 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25/f109 - project inheritance flag is not set +[TARGET]/p2/d0/dd/d25 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/d25 - project inheritance flag is not set +[TARGET]/p2/d0/dd/f47 - project identifier is not set (inode=46, tree=6) +[TARGET]/p2/d0/dd/f47 - project inheritance flag is not set +[TARGET]/p2/d0/dd/f86 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/f86 - project inheritance flag is not set +[TARGET]/p2/d0/dd/fa0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/fa0 - project inheritance flag is not set +[TARGET]/p2/d0/dd/fbc - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/fbc - project inheritance flag is not set +[TARGET]/p2/d0/dd/fbe - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/fbe - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/fce - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/fce - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/ffe - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/ffe - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/f11a - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/f11a - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/f14 - project identifier is not set (inode=1, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/f14 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/f16 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/f16 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d4a/fc9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d4a/fc9 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d4a/fd9 - project identifier is not set (inode=17, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d4a/fd9 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d4a/fe2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d4a/fe2 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d4a/f11f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d4a/f11f - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d4a - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d4a - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/f61 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/f61 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/f69 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/f69 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/f7f - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/f7f - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/fd1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/fd1 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/fe8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/fe8 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/ffd - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/ffd - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d116/f126 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d116/f126 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d116/f129 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d116/f129 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d116 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d116 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c/d119 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c/d119 - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb/d12c - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb/d12c - project inheritance flag is not set +[TARGET]/p2/d0/dd/dcb - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/dcb - project inheritance flag is not set +[TARGET]/p2/d0/dd/ded - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/ded - project inheritance flag is not set +[TARGET]/p2/d0/dd/fef - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd/fef - project inheritance flag is not set +[TARGET]/p2/d0/dd - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/dd - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/d64/d87/de6/f117 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/d64/d87/de6/f117 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/d64/d87/de6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/d64/d87/de6 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/d64/d87 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/d64/d87 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/d64/faa - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/d64/faa - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/d64/fde - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/d64/fde - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/d64/f121 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/d64/f121 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/d64 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/d64 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/f75 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/f75 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/fea - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/fea - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/f104 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63/f104 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63/f115 - project identifier is not set (inode=59, tree=6) +[TARGET]/p2/d0/d51/d63/f115 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d63 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d63 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/fa1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/fa1 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/da9/fc7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/da9/fc7 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/da9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/da9 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db3/fac - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db3/fac - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db3/f120 - project identifier is not set (inode=59, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db3/f120 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db3 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db6/fb8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db6/fb8 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db6/f111 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db6/f111 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db6 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/fb7 - project identifier is not set (inode=4, tree=6) +[TARGET]/p2/d0/d51/d68/d83/fb7 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db9/dbf/fc5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db9/dbf/fc5 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db9/dbf/fe0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db9/dbf/fe0 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db9/dbf/ffb - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db9/dbf/ffb - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db9/dbf - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db9/dbf - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db9/dec - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db9/dec - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db9/f131 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db9/f131 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/db9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/db9 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/ff1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/ff1 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83/f103 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83/f103 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d83 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d83 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/f99 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/f99 - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68/d10a - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68/d10a - project inheritance flag is not set +[TARGET]/p2/d0/d51/d68 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/d68 - project inheritance flag is not set +[TARGET]/p2/d0/d51/dc4/fe9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/dc4/fe9 - project inheritance flag is not set +[TARGET]/p2/d0/d51/dc4/f118 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/dc4/f118 - project inheritance flag is not set +[TARGET]/p2/d0/d51/dc4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/dc4 - project inheritance flag is not set +[TARGET]/p2/d0/d51/fca - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/fca - project inheritance flag is not set +[TARGET]/p2/d0/d51/f134 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51/f134 - project inheritance flag is not set +[TARGET]/p2/d0/d51 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/d51 - project inheritance flag is not set +[TARGET]/p2/d0/f8d - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/f8d - project inheritance flag is not set +[TARGET]/p2/d0/fc3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/fc3 - project inheritance flag is not set +[TARGET]/p2/d0/fd6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0/fd6 - project inheritance flag is not set +[TARGET]/p2/d0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2/d0 - project inheritance flag is not set +[TARGET]/p2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p2 - project inheritance flag is not set +[TARGET]/p3/d6/f8 - project identifier is not set (inode=10, tree=6) +[TARGET]/p3/d6/f8 - project inheritance flag is not set +[TARGET]/p3/d6/fb - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/fb - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/d3b/f41 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/d3b/f41 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/d3b/d84/fb2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/d3b/d84/fb2 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/d3b/d84/f109 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/d3b/d84/f109 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/d3b/d84 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/d3b/d84 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/d3b/fa7 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/d3b/d106/f10d - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/d3b/d106/f10d - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/d3b/d106 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/d3b/d106 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/d3b - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/d3b - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/f77 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/f77 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/fc0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/fc0 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/ffe - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/ffe - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/f114 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/f114 - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e/f11d - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e/f11d - project inheritance flag is not set +[TARGET]/p3/d6/de/d1e - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d1e - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/d5c/f68 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d/d5c/f68 - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/d5c/fbe - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d/d5c/fbe - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/d5c/dcf - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d/d5c/dcf - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/d5c/f10b - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d/d5c/f10b - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/d5c/f118 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d/d5c/f118 - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/d5c - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d/d5c - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/f6e - project identifier is not set (inode=11, tree=6) +[TARGET]/p3/d6/de/d23/d2d/f6e - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/f92 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d/f92 - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d/d107 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d/d107 - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/d2d - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/d2d - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/f34 - project identifier is not set (inode=115, tree=6) +[TARGET]/p3/d6/de/d23/f34 - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/f62 - project identifier is not set (inode=8, tree=6) +[TARGET]/p3/d6/de/d23/f62 - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/f8f - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/f8f - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/f9c - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/f9c - project inheritance flag is not set +[TARGET]/p3/d6/de/d23/fb9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23/fb9 - project inheritance flag is not set +[TARGET]/p3/d6/de/d23 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/d23 - project inheritance flag is not set +[TARGET]/p3/d6/de/f26 - project identifier is not set (inode=7, tree=6) +[TARGET]/p3/d6/de/f26 - project inheritance flag is not set +[TARGET]/p3/d6/de/f45 - project identifier is not set (inode=81, tree=6) +[TARGET]/p3/d6/de/f45 - project inheritance flag is not set +[TARGET]/p3/d6/de/f99 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/f99 - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/fab - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/fab - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/db6/df9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/db6/df9 - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/db6/f10a - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/db6/f10a - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/db6/f115 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/db6/f115 - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/db6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/db6 - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/fbb - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/fbb - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/de7/f75 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/de7/f75 - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/de7/dd5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/de7/dd5 - project inheritance flag is not set +[TARGET]/p3/d6/de/da8/de7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8/de7 - project inheritance flag is not set +[TARGET]/p3/d6/de/da8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/da8 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/f40 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/f40 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/f55 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/f55 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/f7e - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/f7e - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dc3/de3/fe4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dc3/de3/fe4 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dc3/de3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dc3/de3 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dc3/d117 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dc3/d117 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dc3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dc3 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dda/f90 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dda/f90 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dda/dac/dd1/df2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dda/dac/dd1/df2 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dda/dac/dd1/ff7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dda/dac/dd1/ff7 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dda/dac/dd1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dda/dac/dd1 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dda/dac - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dda/dac - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dda/fd2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dda/fd2 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dda/df3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dda/df3 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/dda - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/dda - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f/fdd - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f/fdd - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d3f - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d3f - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d5a/f7d - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d5a/fc9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d5a/fc9 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d5a/fcd - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d5a/fcd - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/d5a - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/d5a - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/f66 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/f66 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/f6b - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/f6b - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/f7b - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/f7b - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/faa - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/faa - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/fe2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/fe2 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf/fe8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf/fe8 - project inheritance flag is not set +[TARGET]/p3/d6/de/daf - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/daf - project inheritance flag is not set +[TARGET]/p3/d6/de/fea - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/fea - project inheritance flag is not set +[TARGET]/p3/d6/de/f102 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/f102 - project inheritance flag is not set +[TARGET]/p3/d6/de/f113 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de/f113 - project inheritance flag is not set +[TARGET]/p3/d6/de - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/de - project inheritance flag is not set +[TARGET]/p3/d6/f1a - project identifier is not set (inode=4, tree=6) +[TARGET]/p3/d6/f1a - project inheritance flag is not set +[TARGET]/p3/d6/d1f/f20 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/f20 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/f2f - project identifier is not set (inode=97, tree=6) +[TARGET]/p3/d6/d1f/f2f - project inheritance flag is not set +[TARGET]/p3/d6/d1f/f3e - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/f3e - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/f64 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/f64 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/f69 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/f69 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/f86 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/f86 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/fa9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/fa9 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/fb7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/fb7 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7/deb/dee - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7/deb/dee - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7/deb/ffc - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7/deb/ffc - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7/deb - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7/deb - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7/f10e - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7/f10e - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/dc7 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/fd6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/fd6 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/fdc - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/fdc - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/ff6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/ff6 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72/f105 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72/f105 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/d72 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b/d72 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b/f8c - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d5b - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d5b - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/f61 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/f61 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/f6f - project identifier is not set (inode=70, tree=6) +[TARGET]/p3/d6/d1f/d4f/f6f - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/f80 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/f80 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d97/fe9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d97/fe9 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/d97 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/d97 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/f98 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/f98 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/dce/fdf - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/dce/fdf - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/dce - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/dce - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/f104 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/f104 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f/f110 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f/f110 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/d4f - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/d4f - project inheritance flag is not set +[TARGET]/p3/d6/d1f/f65 - project identifier is not set (inode=53, tree=6) +[TARGET]/p3/d6/d1f/f65 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/f9e - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/f9e - project inheritance flag is not set +[TARGET]/p3/d6/d1f/fc5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/fc5 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/ddb/f81 - project identifier is not set (inode=11, tree=6) +[TARGET]/p3/d6/d1f/ddb/f81 - project inheritance flag is not set +[TARGET]/p3/d6/d1f/ddb - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f/ddb - project inheritance flag is not set +[TARGET]/p3/d6/d1f - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d1f - project inheritance flag is not set +[TARGET]/p3/d6/f28 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/f28 - project inheritance flag is not set +[TARGET]/p3/d6/f39 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/f39 - project inheritance flag is not set +[TARGET]/p3/d6/f48 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/f48 - project inheritance flag is not set +[TARGET]/p3/d6/d59/f52 - project identifier is not set (inode=2, tree=6) +[TARGET]/p3/d6/d59/f52 - project inheritance flag is not set +[TARGET]/p3/d6/d59/f60 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/f60 - project inheritance flag is not set +[TARGET]/p3/d6/d59/f7a - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/f7a - project inheritance flag is not set +[TARGET]/p3/d6/d59/f89 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/f89 - project inheritance flag is not set +[TARGET]/p3/d6/d59/da5/fb4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/da5/fb4 - project inheritance flag is not set +[TARGET]/p3/d6/d59/da5/dd9 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/da5/dd9 - project inheritance flag is not set +[TARGET]/p3/d6/d59/da5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/da5 - project inheritance flag is not set +[TARGET]/p3/d6/d59/df5/f112 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/df5/f112 - project inheritance flag is not set +[TARGET]/p3/d6/d59/df5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/df5 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/f25 - project identifier is not set (inode=2, tree=6) +[TARGET]/p3/d6/d59/d11a/f25 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/f4d - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/f4d - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/f9d - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/f9d - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/f9f - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/f9f - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/f8b - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/f8b - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/f8d - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/f8d - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/f9b - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/f9b - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/fcb - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/fcb - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/fff - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/fff - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/f116 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a/f116 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d6a - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/fba - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/fba - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d111 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a/d111 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d2a - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d7f/db8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d7f/db8 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d7f/fed - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d7f/fed - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d7f - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/d7f - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/fa2 - project identifier is not set (inode=11, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/fa2 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/fc4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/fc4 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/fd8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/fd8 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/ffb - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/ffb - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/f103 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82/f103 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/d82 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/d82 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/f83 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/f83 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/fa4 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/fa4 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/fb3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/fb3 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/fde - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/fde - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/fe1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/fe1 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51/dfa - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51/dfa - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/d51 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/d51 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/dc2/fca - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/dc2/fca - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/dc2/df1/f10c - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/dc2/df1/f10c - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/dc2/df1/f119 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/dc2/df1/f119 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/dc2/df1/f11b - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/dc2/df1/f11b - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/dc2/df1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/dc2/df1 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/dc2 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/dc2 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/fe0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/fe0 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1/f10f - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1/f10f - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/db1 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/db1 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/de6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/de6 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/ffd - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/ffd - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a/f101 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a/f101 - project inheritance flag is not set +[TARGET]/p3/d6/d59/d11a - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/d11a - project inheritance flag is not set +[TARGET]/p3/d6/d59/f11c - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59/f11c - project inheritance flag is not set +[TARGET]/p3/d6/d59 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d59 - project inheritance flag is not set +[TARGET]/p3/d6/d5e/f9a - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d5e/f9a - project inheritance flag is not set +[TARGET]/p3/d6/d5e/fa3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d5e/fa3 - project inheritance flag is not set +[TARGET]/p3/d6/d5e - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d5e - project inheritance flag is not set +[TARGET]/p3/d6/d78/d8e/f93 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d78/d8e/f93 - project inheritance flag is not set +[TARGET]/p3/d6/d78/d8e/f94 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d78/d8e/f94 - project inheritance flag is not set +[TARGET]/p3/d6/d78/d8e/ff8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d78/d8e/ff8 - project inheritance flag is not set +[TARGET]/p3/d6/d78/d8e - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d78/d8e - project inheritance flag is not set +[TARGET]/p3/d6/d78/fc6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d78/fc6 - project inheritance flag is not set +[TARGET]/p3/d6/d78/de5 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d78/de5 - project inheritance flag is not set +[TARGET]/p3/d6/d78/ff0 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d78/ff0 - project inheritance flag is not set +[TARGET]/p3/d6/d78 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/d78 - project inheritance flag is not set +[TARGET]/p3/d6/fc8 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/fc8 - project inheritance flag is not set +[TARGET]/p3/d6/f100 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6/f100 - project inheritance flag is not set +[TARGET]/p3/d6 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3/d6 - project inheritance flag is not set +[TARGET]/p3 - project identifier is not set (inode=0, tree=6) +[TARGET]/p3 - project inheritance flag is not set +[TARGET] - project identifier is not set (inode=0, tree=6) +[TARGET] - project inheritance flag is not set +Processed 1 [PROJECTS_FILE] paths for project 6 +### recursively setup the project +Setting up project 6 (path [TARGET])... +Processed 1 [PROJECTS_FILE] paths for project 6 +Disk quotas for Project #6 (6) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 660 0 0 00 [--------] [SCR_MNT] +### check the project, should give no warnings now +Checking project 6 (path [TARGET])... +Processed 1 [PROJECTS_FILE] paths for project 6 +### deny a hard link - wrong project ID +hard link failed +Disk quotas for Project #6 (6) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 660 0 0 00 [--------] [SCR_MNT] +### allow a hard link - right project ID +hard link succeeded +Disk quotas for Project #6 (6) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 661 0 0 00 [--------] [SCR_MNT] +### recursively clear the project +Clearing project 6 (path [TARGET])... +Processed 1 [PROJECTS_FILE] paths for project 6 diff --git a/108 b/108 new file mode 100755 index 000000000..d7c6667db --- /dev/null +++ b/108 @@ -0,0 +1,143 @@ +#! /bin/sh +# FS QA Test No. 108 +# +# Simple quota accounting test for direct/buffered/mmap IO. +# +#----------------------------------------------------------------------- +# Copyright (c) 2005 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of version 2 of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# Further, this software is distributed without any warranty that it is +# free of the rightful claim of any third person regarding infringement +# or the like. Any license provided herein, whether implied or +# otherwise, applies only to this software file. Patent licenses, if +# any, provided herein do not apply to combinations of this program with +# other software, or any other product whatsoever. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write the Free Software Foundation, Inc., 59 +# Temple Place - Suite 330, Boston MA 02111-1307, USA. +# +# Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, +# Mountain View, CA 94043, or: +# +# http://www.sgi.com +# +# For further information regarding this notice, see: +# +# http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ +#----------------------------------------------------------------------- +# +# creator +owner=nathans@sgi.com + +seq=`basename $0` +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15 + +# get standard environment, filters and checks +. ./common.rc +. ./common.filter +. ./common.quota + +filter_scratch() +{ + perl -ne " +s,$SCRATCH_MNT,[SCR_MNT],; +s,$SCRATCH_DEV,[SCR_DEV],; + print;" +} + +# real QA test starts here +_supported_fs xfs +_supported_os Linux #IRIX +_require_scratch +_require_quota + +test_files() +{ + echo; echo "### create files, setting up ownership (type=$type)" + rm -f $SCRATCH_MNT/{buffer,direct,mmap} + xfs_io -fc "chproj $prid" $SCRATCH_MNT/{buffer,direct,mmap} + chown $uid $SCRATCH_MNT/{buffer,direct,mmap} + chgrp $gid $SCRATCH_MNT/{buffer,direct,mmap} + for file in $SCRATCH_MNT/{buffer,direct,mmap}; do + $here/src/lstat64 $file | head -3 | filter_scratch + xfs_io -c lsproj $file + done +} + +test_accounting() +{ + echo "### some controlled buffered, direct and mmapd IO (type=$type)" + echo "--- initiating parallel IO..." >>$seq.full + xfs_io -c 'pwrite -b 1m 0 16m' -c 'fsync' \ + $SCRATCH_MNT/buffer >>$seq.full 2>&1 & + xfs_io -c 'pwrite -b 1m 0 16m' -d \ + $SCRATCH_MNT/direct >>$seq.full 2>&1 & + xfs_io -c 't 16m' -c 'mm -rw 0 16m' -c 'mw 0 16m' -c 'ms -s' \ + $SCRATCH_MNT/mmap >>$seq.full 2>&1 & + wait + echo "--- completed parallel IO ($type)" >>$seq.full + + for file in $SCRATCH_MNT/{buffer,direct,mmap}; do + $here/src/lstat64 $file | head -3 | filter_scratch + done + xfs_quota -c "quota -hnb -$type $id" $QARGS | filter_scratch + xfs_quota -c "quota -hni -$type $id" $QARGS | filter_scratch + xfs_quota -c "quota -hnr -$type $id" $QARGS | filter_scratch +} + +# real QA test starts here +rm -f $tmp.projects $seq.full +umount $SCRATCH_DEV 2>/dev/null +_scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs +cat $tmp.mkfs >>$seq.full +_scratch_mount + +uid=1 +gid=2 +prid=3 +export QARGS="-x -D /dev/null -P /dev/null $SCRATCH_MNT" +umount $SCRATCH_DEV + +echo; echo "### test user accounting" +export MOUNT_OPTIONS="-ouquota" +_qmount +type=u +id=$uid +test_files +test_accounting +umount $SCRATCH_DEV 2>/dev/null + +echo; echo "### test group accounting" +export MOUNT_OPTIONS="-ogquota" +_qmount +type=g +id=$gid +test_files +test_accounting +umount $SCRATCH_DEV 2>/dev/null + +#echo; echo "### test project accounting" +export MOUNT_OPTIONS="-opquota" +_qmount +type=p +id=$prid +#test_files +#test_accounting +umount $SCRATCH_DEV 2>/dev/null + +status=0 +exit diff --git a/108.out b/108.out new file mode 100644 index 000000000..e8062ad5d --- /dev/null +++ b/108.out @@ -0,0 +1,71 @@ +QA output created by 108 +meta-data=DDEV isize=XXX agcount=N, agsize=XXX blks +data = bsize=XXX blocks=XXX, imaxpct=PCT + = sunit=XXX swidth=XXX, unwritten=X +naming =VERN bsize=XXX +log =LDEV bsize=XXX blocks=XXX +realtime =RDEV extsz=XXX blocks=XXX, rtextents=XXX + +### test user accounting + +### create files, setting up ownership (type=u) + File: "[SCR_MNT]/buffer" + Size: 0 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) +projid = 3 + File: "[SCR_MNT]/direct" + Size: 0 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) +projid = 3 + File: "[SCR_MNT]/mmap" + Size: 0 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) +projid = 3 +### some controlled buffered, direct and mmapd IO (type=u) + File: "[SCR_MNT]/buffer" + Size: 16777216 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) + File: "[SCR_MNT]/direct" + Size: 16777216 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) + File: "[SCR_MNT]/mmap" + Size: 16777216 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) +Disk quotas for User #1 (1) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 48M 0 0 00 [------] [SCR_MNT] +Disk quotas for User #1 (1) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 3 0 0 00 [------] [SCR_MNT] + +### test group accounting + +### create files, setting up ownership (type=g) + File: "[SCR_MNT]/buffer" + Size: 0 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) +projid = 3 + File: "[SCR_MNT]/direct" + Size: 0 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) +projid = 3 + File: "[SCR_MNT]/mmap" + Size: 0 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) +projid = 3 +### some controlled buffered, direct and mmapd IO (type=g) + File: "[SCR_MNT]/buffer" + Size: 16777216 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) + File: "[SCR_MNT]/direct" + Size: 16777216 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) + File: "[SCR_MNT]/mmap" + Size: 16777216 Filetype: Regular File + Mode: (0600/-rw-------) Uid: (1) Gid: (2) +Disk quotas for Group #2 (2) +Filesystem Blocks Quota Limit Warn/Time Mounted on +[SCR_DEV] 48M 0 0 00 [------] [SCR_MNT] +Disk quotas for Group #2 (2) +Filesystem Files Quota Limit Warn/Time Mounted on +[SCR_DEV] 3 0 0 00 [------] [SCR_MNT] diff --git a/common.quota b/common.quota index 4f82546ae..3814974c5 100644 --- a/common.quota +++ b/common.quota @@ -41,8 +41,7 @@ _require_quota() { src/feature -q $TEST_DEV [ $? -ne 0 ] && _notrun "Installed kernel does not support XFS quota" - [ -x /usr/etc/quotaon -o -x /sbin/quotaon -o -x /usr/sbin/quotaon ] || \ - _notrun "Quota user tools not installed" + [ -x /usr/sbin/xfs_quota ] || _notrun "Quota user tools not installed" } # create a file as a specific user (uid) @@ -89,6 +88,16 @@ _choose_gid() /etc/group } +_choose_prid() +{ + if [ ! -f /etc/projid ]; then + echo 0 + return + fi + perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[1],$a[0] }' \ + /etc/projid +} + # # filter to get the guts out # and make linux and irix similar @@ -122,7 +131,6 @@ _qmount() umount $SCRATCH_DEV >/dev/null 2>&1 _scratch_mount || _fail "qmount failed" chmod ugo+rwx $SCRATCH_MNT - [ -x /usr/sbin/quot ] && quot $SCRATCH_MNT >>$seq.full 2>&1 } _qsetup() @@ -135,6 +143,9 @@ _qsetup() elif src/feature -g $SCRATCH_DEV then type=g ; eval `_choose_gid`; ln -s $seq.grpquota $seq.out + elif src/feature -p $SCRATCH_DEV + then + type=p ; eval `_choose_prid`; ln -s $seq.prjquota $seq.out elif src/feature -U $SCRATCH_DEV then type=u ; eval `_choose_uid`; ln -s $seq.uqnoenforce $seq.out @@ -143,6 +154,10 @@ _qsetup() then type=g ; eval `_choose_gid`; ln -s $seq.gqnoenforce $seq.out enforce=0 + elif src/feature -P $SCRATCH_DEV + then + type=p ; eval `_choose_prid`; ln -s $seq.pqnoenforce $seq.out + enforce=0 else _notrun "No quota support at mount time" fi diff --git a/group b/group index 79d7e7e04..4ee458608 100644 --- a/group +++ b/group @@ -182,6 +182,9 @@ aio nathans@sgi.com 103 metadata dir ioctl auto 104 growfs ioctl 105 acl auto +106 quota auto +107 quota auto +108 quota auto 112 rw aio auto 113 rw aio 114 parent attr auto