Lines Matching defs:smb_vol

494 struct smb_vol {  struct
495 char *username;
496 char *password;
497 char *domainname;
498 char *UNC;
499 char *iocharset; /* local code page for mapping to and from Unicode */
500 char source_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* clnt nb name */
501 char target_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* srvr nb name */
502 kuid_t cred_uid;
503 kuid_t linux_uid;
504 kgid_t linux_gid;
505 kuid_t backupuid;
506 kgid_t backupgid;
507 umode_t file_mode;
508 umode_t dir_mode;
509 enum securityEnum sectype; /* sectype requested via mnt opts */
510 bool sign; /* was signing requested via mnt opts? */
511 bool retry:1;
512 bool intr:1;
513 bool setuids:1;
514 bool setuidfromacl:1;
515 bool override_uid:1;
516 bool override_gid:1;
517 bool dynperm:1;
518 bool noperm:1;
519 bool no_psx_acl:1; /* set if posix acl support should be disabled */
520 bool cifs_acl:1;
521 bool backupuid_specified; /* mount option backupuid is specified */
522 bool backupgid_specified; /* mount option backupgid is specified */
523 bool no_xattr:1; /* set if xattr (EA) support should be disabled*/
524 bool server_ino:1; /* use inode numbers from server ie UniqueId */
525 bool direct_io:1;
526 bool strict_io:1; /* strict cache behavior */
527 bool remap:1; /* set to remap seven reserved chars in filenames */
528 bool sfu_remap:1; /* remap seven reserved chars ala SFU */
529 bool posix_paths:1; /* unset to not ask for posix pathnames. */
530 bool no_linux_ext:1;
531 bool linux_ext:1;
532 bool sfu_emul:1;
533 bool nullauth:1; /* attempt to authenticate with null user */
534 bool nocase:1; /* request case insensitive filenames */
535 bool nobrl:1; /* disable sending byte range locks to srv */
536 bool nohandlecache:1; /* disable caching dir handles if srvr probs */
537 bool mand_lock:1; /* send mandatory not posix byte range lock reqs */
538 bool seal:1; /* request transport encryption on share */
539 bool nodfs:1; /* Do not request DFS, even if available */
540 bool local_lease:1; /* check leases only on local system, not remote */
541 bool noblocksnd:1;
542 bool noautotune:1;
543 bool nostrictsync:1; /* do not force expensive SMBflush on every sync */
544 bool fsc:1; /* enable fscache */
545 bool mfsymlinks:1; /* use Minshall+French Symlinks */
546 bool multiuser:1;
547 bool rwpidforward:1; /* pid forward for read/write operations */
548 bool nosharesock:1;
549 bool persistent:1;
550 bool nopersistent:1;
551 bool resilient:1; /* noresilient not required since not fored for CA */
552 bool domainauto:1;
553 bool rdma:1;
554 unsigned int rsize;
555 unsigned int wsize;
556 bool sockopt_tcp_nodelay:1;
557 unsigned long actimeo; /* attribute cache timeout (jiffies) */
558 struct smb_version_operations *ops;
559 struct smb_version_values *vals;
560 char *prepath;
561 struct sockaddr_storage dstaddr; /* destination address */
562 struct sockaddr_storage srcaddr; /* allow binding to a local IP */
586 struct smb_vol *vol; argument