diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-04-18 22:32:25 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-04-19 01:54:45 +0200 |
commit | 39d23027218c02dc3055d8a0cc28dcc169e8b064 (patch) | |
tree | 66be933dad63522632d4ec5a73660f8a8c983373 /source4/ntvfs | |
parent | 8b5f03a225b7e3ab478f5de22e7a84e78c909741 (diff) | |
download | samba-39d23027218c02dc3055d8a0cc28dcc169e8b064.tar.gz samba-39d23027218c02dc3055d8a0cc28dcc169e8b064.tar.bz2 samba-39d23027218c02dc3055d8a0cc28dcc169e8b064.zip |
ntvfs_generic: map RAW_LOCK_SMB2_BREAK to RAW_LOCK_GENERIC
metze
(This used to be commit b781bb733c9a563457f87c94abe8c91b426c07ee)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/ntvfs_generic.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source4/ntvfs/ntvfs_generic.c b/source4/ntvfs/ntvfs_generic.c index debcfc3f8a..3653ad82c1 100644 --- a/source4/ntvfs/ntvfs_generic.c +++ b/source4/ntvfs/ntvfs_generic.c @@ -1043,6 +1043,23 @@ NTSTATUS ntvfs_map_lock(struct ntvfs_module_context *ntvfs, /* initialize output value */ lck->smb2.out.unknown1 = 0; break; + + case RAW_LOCK_SMB2_BREAK: + lck2->generic.level = RAW_LOCK_GENERIC; + lck2->generic.in.file.ntvfs = lck->smb2_break.in.file.ntvfs; + lck2->generic.in.mode = LOCKING_ANDX_OPLOCK_RELEASE | + ((lck->smb2_break.in.oplock_level << 8) & 0xFF00); + lck2->generic.in.timeout = 0; + lck2->generic.in.ulock_cnt = 0; + lck2->generic.in.lock_cnt = 0; + lck2->generic.in.locks = NULL; + + /* initialize output value */ + lck->smb2_break.out.oplock_level= lck->smb2_break.in.oplock_level; + lck->smb2_break.out.reserved = lck->smb2_break.in.reserved; + lck->smb2_break.out.reserved2 = lck->smb2_break.in.reserved2; + lck->smb2_break.out.file = lck->smb2_break.in.file; + break; } /* |