Displaying 1 result from an estimated 1 matches for "lease_oplock".
2023 Jan 24
2
oplocks, kernel oplocks, kernel share modes, .. - how it all works?
...;again as per your prior explanations. As I wrote before, this LEASE()
>appeared here (instead of LEASE(RH) etc) when I enabled kernel oplocks
>(for this share anyway).
What are the settings in your smb.conf ?
The 4.17 code does (in source3/smbd/open.c):
2727 if (oplock_request == LEASE_OPLOCK) {
2728 if (lease == NULL) {
2729 /*
2730 * The SMB2 layer should have checked this
2731 */
2732 return NT_STATUS_INTERNAL_ERROR;
2733 }
2734
2735 grant...