Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@xxxxxxx> --- nfs4.1/server41tests/st_current_stateid.py | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/nfs4.1/server41tests/st_current_stateid.py b/nfs4.1/server41tests/st_current_stateid.py index 3732907..fb0c360 100644 --- a/nfs4.1/server41tests/st_current_stateid.py +++ b/nfs4.1/server41tests/st_current_stateid.py @@ -146,3 +146,16 @@ def testOpenSetattr(t, env): res = sess.compound( open_op + [ op.setattr(current_stateid, {FATTR4_SIZE: size})]) check(res, NFS4_OK) + +def testOpenFreestateidClose(t, env): + """test current state id processing by having OPEN, FREE_STATEID and CLOSE + in a single compound + + FLAGS: currentstateid all + CODE: CSID9 + """ + sess1 = env.c1.new_client_session(env.testname(t)) + + open_op = open_create_file_op(sess1, env.testname(t), open_create=OPEN4_CREATE) + res = sess1.compound(open_op + [op.free_stateid(current_stateid), op.close(0, current_stateid)]) + checklist(res, [NFS4ERR_STALE_STATEID, NFS4ERR_BAD_STATEID]) -- 1.7.7.5 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html