Home
last modified time | relevance | path

Searched refs:fsinfo (Results 1 – 17 of 17) sorted by relevance

/kernel/linux/linux-5.10/fs/nfs/
Dnfs4getroot.c15 struct nfs_fsinfo fsinfo; in nfs4_get_rootfh() local
18 fsinfo.fattr = nfs_alloc_fattr(); in nfs4_get_rootfh()
19 if (fsinfo.fattr == NULL) in nfs4_get_rootfh()
23 ret = nfs4_proc_get_rootfh(server, mntfh, &fsinfo, auth_probe); in nfs4_get_rootfh()
29 if (!(fsinfo.fattr->valid & NFS_ATTR_FATTR_TYPE) in nfs4_get_rootfh()
30 || !S_ISDIR(fsinfo.fattr->mode)) { in nfs4_get_rootfh()
37 memcpy(&server->fsid, &fsinfo.fattr->fsid, sizeof(server->fsid)); in nfs4_get_rootfh()
39 nfs_free_fattr(fsinfo.fattr); in nfs4_get_rootfh()
Dgetroot.c71 struct nfs_fsinfo fsinfo; in nfs_get_root() local
83 fsinfo.fattr = nfs_alloc_fattr(); in nfs_get_root()
84 if (fsinfo.fattr == NULL) in nfs_get_root()
87 fsinfo.fattr->label = nfs4_label_alloc(server, GFP_KERNEL); in nfs_get_root()
88 if (IS_ERR(fsinfo.fattr->label)) in nfs_get_root()
90 error = server->nfs_client->rpc_ops->getroot(server, ctx->mntfh, &fsinfo); in nfs_get_root()
97 inode = nfs_fhget(s, ctx->mntfh, fsinfo.fattr, NULL); in nfs_get_root()
150 nfs_setsecurity(inode, fsinfo.fattr, fsinfo.fattr->label); in nfs_get_root()
154 nfs4_label_free(fsinfo.fattr->label); in nfs_get_root()
156 nfs_free_fattr(fsinfo.fattr); in nfs_get_root()
Dproc.c58 struct nfs2_fsstat fsinfo; in nfs_proc_get_root() local
77 msg.rpc_resp = &fsinfo; in nfs_proc_get_root()
86 info->rtpref = fsinfo.tsize; in nfs_proc_get_root()
87 info->rtmult = fsinfo.bsize; in nfs_proc_get_root()
89 info->wtpref = fsinfo.tsize; in nfs_proc_get_root()
90 info->wtmult = fsinfo.bsize; in nfs_proc_get_root()
91 info->dtpref = fsinfo.tsize; in nfs_proc_get_root()
533 struct nfs2_fsstat fsinfo; in nfs_proc_statfs() local
537 .rpc_resp = &fsinfo, in nfs_proc_statfs()
547 stat->tbytes = (u64)fsinfo.blocks * fsinfo.bsize; in nfs_proc_statfs()
[all …]
Dclient.c751 struct nfs_fsinfo *fsinfo) in nfs_server_set_fsinfo() argument
757 server->rsize = nfs_block_size(fsinfo->rtpref, NULL); in nfs_server_set_fsinfo()
759 server->wsize = nfs_block_size(fsinfo->wtpref, NULL); in nfs_server_set_fsinfo()
761 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax) in nfs_server_set_fsinfo()
762 server->rsize = nfs_block_size(fsinfo->rtmax, NULL); in nfs_server_set_fsinfo()
763 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax) in nfs_server_set_fsinfo()
764 server->wsize = nfs_block_size(fsinfo->wtmax, NULL); in nfs_server_set_fsinfo()
781 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL); in nfs_server_set_fsinfo()
783 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL); in nfs_server_set_fsinfo()
794 server->maxfilesize = fsinfo->maxfilesize; in nfs_server_set_fsinfo()
[all …]
Dnfs4xdr.c4748 struct nfs_fsinfo *fsinfo) in decode_pnfs_layout_types() argument
4756 fsinfo->nlayouttypes = be32_to_cpup(p); in decode_pnfs_layout_types()
4759 if (fsinfo->nlayouttypes == 0) in decode_pnfs_layout_types()
4763 p = xdr_inline_decode(xdr, fsinfo->nlayouttypes * 4); in decode_pnfs_layout_types()
4768 if (fsinfo->nlayouttypes > NFS_MAX_LAYOUT_TYPES) { in decode_pnfs_layout_types()
4770 __func__, fsinfo->nlayouttypes); in decode_pnfs_layout_types()
4771 fsinfo->nlayouttypes = NFS_MAX_LAYOUT_TYPES; in decode_pnfs_layout_types()
4774 for(i = 0; i < fsinfo->nlayouttypes; ++i) in decode_pnfs_layout_types()
4775 fsinfo->layouttype[i] = be32_to_cpup(p++); in decode_pnfs_layout_types()
4784 struct nfs_fsinfo *fsinfo) in decode_attr_pnfstype() argument
[all …]
Dpnfs.c150 struct nfs_fsinfo *fsinfo) in set_pnfs_layoutdriver() argument
156 if (fsinfo->nlayouttypes == 0) in set_pnfs_layoutdriver()
165 sort(fsinfo->layouttype, fsinfo->nlayouttypes, in set_pnfs_layoutdriver()
166 sizeof(*fsinfo->layouttype), ld_cmp, NULL); in set_pnfs_layoutdriver()
168 for (i = 0; i < fsinfo->nlayouttypes; i++) { in set_pnfs_layoutdriver()
169 id = fsinfo->layouttype[i]; in set_pnfs_layoutdriver()
Dnfs4proc.c5124 struct nfs_fsinfo *fsinfo) in _nfs4_do_fsinfo() argument
5131 .fsinfo = fsinfo, in _nfs4_do_fsinfo()
5142 …ic int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) in nfs4_do_fsinfo() argument
5150 err = _nfs4_do_fsinfo(server, fhandle, fsinfo); in nfs4_do_fsinfo()
5151 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err); in nfs4_do_fsinfo()
5153 nfs4_set_lease_period(server->nfs_client, fsinfo->lease_time * HZ); in nfs4_do_fsinfo()
5161 … int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) in nfs4_proc_fsinfo() argument
5165 nfs_fattr_init(fsinfo->fattr); in nfs4_proc_fsinfo()
5166 error = nfs4_do_fsinfo(server, fhandle, fsinfo); in nfs4_proc_fsinfo()
5169 server->pnfs_blksize = fsinfo->blksize; in nfs4_proc_fsinfo()
[all …]
Dnfs4_fs.h328 struct nfs_fsinfo *fsinfo);
Dnfs4state.c94 struct nfs_fsinfo fsinfo; in nfs4_setup_state_renewal() local
101 status = nfs4_proc_get_lease_time(clp, &fsinfo); in nfs4_setup_state_renewal()
103 nfs4_set_lease_period(clp, fsinfo.lease_time * HZ); in nfs4_setup_state_renewal()
Dpnfs.h794 struct nfs_fsinfo *fsinfo) in set_pnfs_layoutdriver() argument
Dnfs3proc.c1024 .fsinfo = nfs3_proc_fsinfo,
Dnfs3xdr.c2543 PROC(FSINFO, getattr, fsinfo, 0),
/kernel/linux/linux-5.10/fs/fat/
Dmisc.c66 struct fat_boot_fsinfo *fsinfo; in fat_clusters_flush() local
77 fsinfo = (struct fat_boot_fsinfo *)bh->b_data; in fat_clusters_flush()
79 if (!IS_FSINFO(fsinfo)) { in fat_clusters_flush()
82 le32_to_cpu(fsinfo->signature1), in fat_clusters_flush()
83 le32_to_cpu(fsinfo->signature2), in fat_clusters_flush()
87 fsinfo->free_clusters = cpu_to_le32(sbi->free_clusters); in fat_clusters_flush()
89 fsinfo->next_cluster = cpu_to_le32(sbi->prev_free); in fat_clusters_flush()
Dinode.c1717 struct fat_boot_fsinfo *fsinfo; in fat_fill_super() local
1737 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data; in fat_fill_super()
1738 if (!IS_FSINFO(fsinfo)) { in fat_fill_super()
1741 le32_to_cpu(fsinfo->signature1), in fat_fill_super()
1742 le32_to_cpu(fsinfo->signature2), in fat_fill_super()
1747 sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters); in fat_fill_super()
1748 sbi->prev_free = le32_to_cpu(fsinfo->next_cluster); in fat_fill_super()
/kernel/linux/linux-5.10/fs/vboxsf/
Ddir.c216 struct shfl_fsobjinfo fsinfo; in vboxsf_dir_lookup() local
222 err = vboxsf_stat_dentry(dentry, &fsinfo); in vboxsf_dir_lookup()
228 vboxsf_init_inode(sbi, inode, &fsinfo); in vboxsf_dir_lookup()
/kernel/linux/linux-5.10/include/linux/
Dnfs_xdr.h1039 struct nfs_fsinfo *fsinfo; member
1758 int (*fsinfo) (struct nfs_server *, struct nfs_fh *, member
/kernel/linux/linux-5.10/Documentation/filesystems/
Dmount_api.rst739 userspace using the fsinfo() syscall.