Message ID | 1460611943-14660-1-git-send-email-zlang@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, Apr 14, 2016 at 01:32:23PM +0800, Zorro Lang wrote: > In xfs/299, project IDs are in $tmp.projid file. But there's one > line code try to use $temp.projid. Fortunately, it doesn't bring > any problems until now, but if keep using $temp.projid it really > don't make sense. > > Signed-off-by: Zorro Lang <zlang@redhat.com> Reviewed-by: Eryu Guan <eguan@redhat.com> -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/tests/xfs/299 b/tests/xfs/299 index 1f61eea..d2670f8 100755 --- a/tests/xfs/299 +++ b/tests/xfs/299 @@ -143,7 +143,7 @@ _exercise() _file_as_id $SCRATCH_MNT/initme $id $type 1024 0 echo "ls -l $SCRATCH_MNT" >>$seqres.full ls -l $SCRATCH_MNT >>$seqres.full - xfs_quota -D $tmp.projects -P $temp.projid -x \ + xfs_quota -D $tmp.projects -P $tmp.projid -x \ -c "limit -$type bsoft=${bsoft}k bhard=${bhard}k $id" \ -c "limit -$type isoft=$isoft ihard=$ihard $id" \ $SCRATCH_DEV
In xfs/299, project IDs are in $tmp.projid file. But there's one line code try to use $temp.projid. Fortunately, it doesn't bring any problems until now, but if keep using $temp.projid it really don't make sense. Signed-off-by: Zorro Lang <zlang@redhat.com> --- Hi, When I found xfs/299 run failed, I try to dig into it. Although I sent a duplicate patch for XFS, but there's another tiny problem I found when I check xfs/299 failure. I know this problem is very potty, so if someone is writting another patch about xfs/299, you can fix this incidentally. Thanks, Zorro tests/xfs/299 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)