• Home
  • Raw
  • Download

Lines Matching defs:smb_vol

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