From patchwork Thu Apr 14 05:32:23 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zorro Lang X-Patchwork-Id: 8831611 Return-Path: X-Original-To: patchwork-fstests@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 3EE769F3A0 for ; Thu, 14 Apr 2016 05:32:36 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 671432035D for ; Thu, 14 Apr 2016 05:32:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3CA63202F0 for ; Thu, 14 Apr 2016 05:32:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752445AbcDNFce (ORCPT ); Thu, 14 Apr 2016 01:32:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52023 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752423AbcDNFcd (ORCPT ); Thu, 14 Apr 2016 01:32:33 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8A37462643 for ; Thu, 14 Apr 2016 05:32:32 +0000 (UTC) Received: from localhost (dhcp-13-181.nay.redhat.com [10.66.13.181]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u3E5WV0J024731; Thu, 14 Apr 2016 01:32:32 -0400 From: Zorro Lang To: fstests@vger.kernel.org Cc: Zorro Lang Subject: [PATCH] xfs/299: change variable name from "temp" to "tmp" for typo error Date: Thu, 14 Apr 2016 13:32:23 +0800 Message-Id: <1460611943-14660-1-git-send-email-zlang@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Thu, 14 Apr 2016 05:32:32 +0000 (UTC) Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Spam-Status: No, score=-7.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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 Reviewed-by: Eryu Guan --- 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(-) 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