Print this page
NEX-17457 kernel share list fails to be updated after fs import
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Yuri Pankov <yuripv@yuripv.net>
NEX-9808 SMB3 persistent handles
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
NEX-9808 SMB3 persistent handles
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
NEX-10098 Disabling SMB server service does not change the sharestate of a smb share to “offline”.
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Rob Gittins <rob.gittins@nexenta.com>
NEX-4083 Upstream changes from illumos 5917 and 5995
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
NEX-2188 Browsing top level share produces RPC error 1728
        
*** 8,18 ****
   * source.  A copy of the CDDL is also available via the Internet at
   * http://www.illumos.org/license/CDDL.
   */
  
  /*
!  * Copyright 2014 Nexenta Systems, Inc.  All rights reserved.
   */
  
  /*
   * Replace the smb_shr_load() function in libmlsvc, because
   * fksmbd doesn't want the real shares known by libshare,
--- 8,18 ----
   * source.  A copy of the CDDL is also available via the Internet at
   * http://www.illumos.org/license/CDDL.
   */
  
  /*
!  * Copyright 2018 Nexenta Systems, Inc.  All rights reserved.
   */
  
  /*
   * Replace the smb_shr_load() function in libmlsvc, because
   * fksmbd doesn't want the real shares known by libshare,
*** 113,125 ****
--- 113,137 ----
           * in the real shares, because fksmbd runs (only) with
           * the credentials of the user who runs it.
           */
          new_share("test", "/var/smb/test", "fksmbd test share",
              SMB_SHRF_GUEST_OK);
+         new_share("testca", "/var/smb/test", "fksmbd test CA share",
+             SMB_SHRF_CA);
  
          /* Allow creating lots of shares for testing. */
          shr_file = getenv("FKSMBD_SHARE_FILE");
          if (shr_file != NULL)
                  shr_load_file(shr_file);
  
          return (NULL);
+ }
+ 
+ void
+ smb_shr_load_execinfo()
+ {
+ }
+ 
+ void
+ smb_shr_unload()
+ {
  }