nfsd41: CREATE_EXCLUSIVE4_1
Implement the CREATE_EXCLUSIVE4_1 open mode conforming to http://tools.ietf.org/html/draft-ietf-nfsv4-minorversion1-26 This mode allows the client to atomically create a file if it doesn't exist while setting some of its attributes. It must be implemented if the server supports persistent reply cache and/or pnfs. Signed-off-by: Benny Halevy <bhalevy@panasas.com> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
This commit is contained in:

committed by
J. Bruce Fields

parent
8c18f2052e
commit
79fb54abd2
@@ -368,7 +368,13 @@ enum opentype4 {
|
||||
enum createmode4 {
|
||||
NFS4_CREATE_UNCHECKED = 0,
|
||||
NFS4_CREATE_GUARDED = 1,
|
||||
NFS4_CREATE_EXCLUSIVE = 2
|
||||
NFS4_CREATE_EXCLUSIVE = 2,
|
||||
/*
|
||||
* New to NFSv4.1. If session is persistent,
|
||||
* GUARDED4 MUST be used. Otherwise, use
|
||||
* EXCLUSIVE4_1 instead of EXCLUSIVE4.
|
||||
*/
|
||||
NFS4_CREATE_EXCLUSIVE4_1 = 3
|
||||
};
|
||||
|
||||
enum limit_by4 {
|
||||
|
Reference in New Issue
Block a user