Lines Matching defs:smb_vol

445 struct smb_vol {  struct
446 char *username;
447 char *password;
448 char *domainname;
449 char *UNC;
450 char *iocharset; /* local code page for mapping to and from Unicode */
451 char source_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* clnt nb name */
452 char target_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* srvr nb name */
453 kuid_t cred_uid;
454 kuid_t linux_uid;
455 kgid_t linux_gid;
456 kuid_t backupuid;
457 kgid_t backupgid;
458 umode_t file_mode;
459 umode_t dir_mode;
460 enum securityEnum sectype; /* sectype requested via mnt opts */
461 bool sign; /* was signing requested via mnt opts? */
462 bool retry:1;
463 bool intr:1;
464 bool setuids:1;
465 bool override_uid:1;
466 bool override_gid:1;
467 bool dynperm:1;
468 bool noperm:1;
469 bool no_psx_acl:1; /* set if posix acl support should be disabled */
470 bool cifs_acl:1;
471 bool backupuid_specified; /* mount option backupuid is specified */
472 bool backupgid_specified; /* mount option backupgid is specified */
473 bool no_xattr:1; /* set if xattr (EA) support should be disabled*/
474 bool server_ino:1; /* use inode numbers from server ie UniqueId */
475 bool direct_io:1;
476 bool strict_io:1; /* strict cache behavior */
477 bool remap:1; /* set to remap seven reserved chars in filenames */
478 bool sfu_remap:1; /* remap seven reserved chars ala SFU */
479 bool posix_paths:1; /* unset to not ask for posix pathnames. */
480 bool no_linux_ext:1;
481 bool sfu_emul:1;
482 bool nullauth:1; /* attempt to authenticate with null user */
483 bool nocase:1; /* request case insensitive filenames */
484 bool nobrl:1; /* disable sending byte range locks to srv */
485 bool mand_lock:1; /* send mandatory not posix byte range lock reqs */
486 bool seal:1; /* request transport encryption on share */
487 bool nodfs:1; /* Do not request DFS, even if available */
488 bool local_lease:1; /* check leases only on local system, not remote */
489 bool noblocksnd:1;
490 bool noautotune:1;
491 bool nostrictsync:1; /* do not force expensive SMBflush on every sync */
492 bool fsc:1; /* enable fscache */
493 bool mfsymlinks:1; /* use Minshall+French Symlinks */
494 bool multiuser:1;
495 bool rwpidforward:1; /* pid forward for read/write operations */
496 bool nosharesock:1;
497 bool persistent:1;
498 bool nopersistent:1;
499 bool resilient:1; /* noresilient not required since not fored for CA */
500 unsigned int rsize;
501 unsigned int wsize;
502 bool sockopt_tcp_nodelay:1;
503 unsigned long actimeo; /* attribute cache timeout (jiffies) */
504 struct smb_version_operations *ops;
505 struct smb_version_values *vals;
529 struct smb_vol *vol; argument