search for: dbg_debug

Displaying 5 results from an estimated 5 matches for "dbg_debug".

2016 Aug 29
1
Issue with acl_xattr:ignore system acls in 4.5rc2
...psd_blob, > - &hash_type, &xattr_version, &hash[0], &sys_acl_hash[0]); > - if (!NT_STATUS_IS_OK(status)) { > - DEBUG(10, ("parse_acl_blob returned %s\n", > - nt_errstr(status))); > - TALLOC_FREE(blob.data); > - goto out; > - } > + DBG_DEBUG("parse_acl_blob returned %s\n", nt_errstr(status)); > + goto fail; > } > > - TALLOC_FREE(blob.data); > - > /* determine which type of xattr we got */ > switch (xattr_version) { > case 1: > @@ -534,35 +533,29 @@ static NTSTATUS get_nt_acl_internal(vfs_...
2016 Aug 27
2
Issue with acl_xattr:ignore system acls in 4.5rc2
On Fri, Aug 26, 2016 at 04:03:49PM -0700, Jeremy Allison wrote: > On Fri, Aug 26, 2016 at 02:46:19PM -0700, Jeremy Allison via samba wrote: > > On Fri, Aug 26, 2016 at 06:44:05PM +0200, Ralph Böhme wrote: > > > > > > Cheerio! > > > -slow > > > > Still reviewing this - but a few things that will need changing: > > > > When adding the
2023 Jan 24
2
oplocks, kernel oplocks, kernel share modes, .. - how it all works?
...} 2785 2786 fsp->oplock_type = LEASE_OPLOCK; 2787 2788 status = grant_fsp_lease(fsp, lck, lease, granted); 2789 if (!NT_STATUS_IS_OK(status)) { 2790 return status; 2791 2792 } 2793 2794 DBG_DEBUG("lease_state=%d\n", fsp->lease->lease.lease_state); 2795 } else { which means you end up with LEASE_OPLOCK, granted=SMB2_LEASE_NONE which is what you see with smbstatus. If you turn on kernel oplocks = yes, I think you must also set smb2 leases = no in order for this to wo...
2016 Aug 26
2
Issue with acl_xattr:ignore system acls in 4.5rc2
...psd_blob, > - &hash_type, &xattr_version, &hash[0], &sys_acl_hash[0]); > - if (!NT_STATUS_IS_OK(status)) { > - DEBUG(10, ("parse_acl_blob returned %s\n", > - nt_errstr(status))); > - TALLOC_FREE(blob.data); > - goto out; > - } > + DBG_DEBUG("parse_acl_blob returned %s\n", nt_errstr(status)); > + goto fail; > } > > - TALLOC_FREE(blob.data); > - > /* determine which type of xattr we got */ > switch (xattr_version) { > case 1: > @@ -534,15 +533,13 @@ static NTSTATUS get_nt_acl_internal(vfs_...
2016 Aug 26
2
Issue with acl_xattr:ignore system acls in 4.5rc2
On Fri, Aug 26, 2016 at 06:33:26PM +0200, Ralph Böhme via samba wrote: > On Thu, Aug 25, 2016 at 12:14:00PM -0700, Jeremy Allison wrote: > > On Wed, Aug 24, 2016 at 04:06:42PM +0200, Ralph Böhme via samba wrote: > > > > > > Yeah, as much as I'd like to avoid adding a new option, I guess we > > > have to do something about it, my latest take on this is >