From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cn.fujitsu.com ([222.73.24.84]:65168 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1755977Ab1HXIuF (ORCPT ); Wed, 24 Aug 2011 04:50:05 -0400 Message-ID: <4E54BC2D.70305@cn.fujitsu.com> Date: Wed, 24 Aug 2011 16:54:05 +0800 From: Mi Jinlong To: "J. Bruce Fields" , NFS Subject: [PATCH 3/4 v4] 4.1 CLNT: test open before RECLAIM_COMPLETE References: <4E4C7679.7000108@cn.fujitsu.com> In-Reply-To: <4E4C7679.7000108@cn.fujitsu.com> Content-Type: text/plain; charset=ISO-2022-JP Sender: linux-nfs-owner@vger.kernel.org List-ID: MIME-Version: 1.0 Signed-off-by: Mi Jinlong --- nfs4.1/server41tests/st_reclaim_complete.py | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/nfs4.1/server41tests/st_reclaim_complete.py b/nfs4.1/server41tests/st_reclaim_complete.py index 108e7b6..adb368d 100644 --- a/nfs4.1/server41tests/st_reclaim_complete.py +++ b/nfs4.1/server41tests/st_reclaim_complete.py @@ -1,6 +1,6 @@ from st_create_session import create_session from nfs4_const import * -from environment import check, fail, open_file, create_confirm +from environment import check, fail, open_file, create_file, create_confirm import nfs4_ops as op import nfs4lib @@ -45,3 +45,21 @@ def testReclaimAfterRECC(t, env): deleg_type=OPEN_DELEGATE_NONE) check(res, NFS4ERR_NO_GRACE, warnlist = [NFS4ERR_EXIST | NFS4ERR_RECLAIM_BAD]) + +def testOpenBeforeRECC(t, env): + """After a client establishes a new client ID, if non-reclaim + locking operations are done before the RECLAIM_COMPLETE, + error NFS4ERR_GRACE will be returned. rfc5661 18.51.3 + + FLAGS: reclaim_complete all + CODE: RECC3 + """ + name = env.testname(t) + c = env.c1.new_client(name) + sess = c.create_session() + + fname = "owner_%s" % name + path = sess.c.homedir + [name] + + res = create_file(sess, fname, path, access=OPEN4_SHARE_ACCESS_BOTH) + check(res, NFS4ERR_GRACE) -- 1.7.6