Lines Matching defs:smb_vol
535 struct smb_vol { struct
536 char *username;
537 char *password;
538 char *domainname;
539 char *UNC;
540 char *iocharset; /* local code page for mapping to and from Unicode */
541 char source_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* clnt nb name */
542 char target_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* srvr nb name */
543 kuid_t cred_uid;
544 kuid_t linux_uid;
545 kgid_t linux_gid;
546 kuid_t backupuid;
547 kgid_t backupgid;
548 umode_t file_mode;
549 umode_t dir_mode;
550 enum securityEnum sectype; /* sectype requested via mnt opts */
551 bool sign; /* was signing requested via mnt opts? */
552 bool ignore_signature:1;
553 bool retry:1;
554 bool intr:1;
555 bool setuids:1;
556 bool setuidfromacl:1;
557 bool override_uid:1;
558 bool override_gid:1;
559 bool dynperm:1;
560 bool noperm:1;
561 bool mode_ace:1;
562 bool no_psx_acl:1; /* set if posix acl support should be disabled */
563 bool cifs_acl:1;
564 bool backupuid_specified; /* mount option backupuid is specified */
565 bool backupgid_specified; /* mount option backupgid is specified */
566 bool no_xattr:1; /* set if xattr (EA) support should be disabled*/
567 bool server_ino:1; /* use inode numbers from server ie UniqueId */
568 bool direct_io:1;
569 bool strict_io:1; /* strict cache behavior */
570 bool cache_ro:1;
571 bool cache_rw:1;
572 bool remap:1; /* set to remap seven reserved chars in filenames */
573 bool sfu_remap:1; /* remap seven reserved chars ala SFU */
574 bool posix_paths:1; /* unset to not ask for posix pathnames. */
575 bool no_linux_ext:1;
576 bool linux_ext:1;
577 bool sfu_emul:1;
578 bool nullauth:1; /* attempt to authenticate with null user */
579 bool nocase:1; /* request case insensitive filenames */
580 bool nobrl:1; /* disable sending byte range locks to srv */
581 bool nohandlecache:1; /* disable caching dir handles if srvr probs */
582 bool mand_lock:1; /* send mandatory not posix byte range lock reqs */
583 bool seal:1; /* request transport encryption on share */
584 bool nodfs:1; /* Do not request DFS, even if available */
585 bool local_lease:1; /* check leases only on local system, not remote */
586 bool noblocksnd:1;
587 bool noautotune:1;
588 bool nostrictsync:1; /* do not force expensive SMBflush on every sync */
589 bool no_lease:1; /* disable requesting leases */
590 bool fsc:1; /* enable fscache */
591 bool mfsymlinks:1; /* use Minshall+French Symlinks */
592 bool multiuser:1;
593 bool rwpidforward:1; /* pid forward for read/write operations */
594 bool nosharesock:1;
595 bool persistent:1;
596 bool nopersistent:1;
597 bool resilient:1; /* noresilient not required since not fored for CA */
598 bool domainauto:1;
599 bool rdma:1;
600 unsigned int bsize;
601 unsigned int rsize;
602 unsigned int wsize;
603 unsigned int min_offload;
604 bool sockopt_tcp_nodelay:1;
605 unsigned long actimeo; /* attribute cache timeout (jiffies) */
606 struct smb_version_operations *ops;
607 struct smb_version_values *vals;
608 char *prepath;
609 struct sockaddr_storage dstaddr; /* destination address */
610 struct sockaddr_storage srcaddr; /* allow binding to a local IP */
611 struct nls_table *local_nls;
612 unsigned int echo_interval; /* echo interval in secs */
613 __u64 snapshot_time; /* needed for timewarp tokens */
614 __u32 handle_timeout; /* persistent and durable handle timeout in ms */
615 unsigned int max_credits; /* smb3 max_credits 10 < credits < 60000 */
616 __u16 compression; /* compression algorithm 0xFFFF default 0=disabled */
617 bool rootfs:1; /* if it's a SMB root file system */