| /linux/fs/nfs/ |
| H A D | proc.c | 58 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() 539 struct nfs2_fsstat fsinfo; in nfs_proc_statfs() local 543 .rpc_resp = &fsinfo, in nfs_proc_statfs() 553 stat->tbytes = (u64)fsinfo.blocks * fsinfo.bsize; in nfs_proc_statfs() [all …]
|
| H A D | getroot.c | 71 struct nfs_fsinfo fsinfo; in nfs_get_root() local 83 fsinfo.fattr = nfs_alloc_fattr_with_label(server); in nfs_get_root() 84 if (fsinfo.fattr == NULL) in nfs_get_root() 87 error = server->nfs_client->rpc_ops->getroot(server, ctx->mntfh, &fsinfo); in nfs_get_root() 94 inode = nfs_fhget(s, ctx->mntfh, fsinfo.fattr); in nfs_get_root() 151 nfs_setsecurity(inode, fsinfo.fattr); in nfs_get_root() 155 nfs_free_fattr(fsinfo.fattr); in nfs_get_root()
|
| H A D | client.c | 843 struct nfs_fsinfo *fsinfo) in nfs_server_set_fsinfo() argument 850 server->rsize = nfs_io_size(fsinfo->rtpref, clp->cl_proto); in nfs_server_set_fsinfo() 852 server->wsize = nfs_io_size(fsinfo->wtpref, clp->cl_proto); in nfs_server_set_fsinfo() 854 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax) in nfs_server_set_fsinfo() 855 server->rsize = nfs_io_size(fsinfo->rtmax, clp->cl_proto); in nfs_server_set_fsinfo() 856 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax) in nfs_server_set_fsinfo() 857 server->wsize = nfs_io_size(fsinfo->wtmax, clp->cl_proto); in nfs_server_set_fsinfo() 873 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL); in nfs_server_set_fsinfo() 875 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL); in nfs_server_set_fsinfo() 886 server->maxfilesize = fsinfo->maxfilesize; in nfs_server_set_fsinfo() [all …]
|
| H A D | nfs4xdr.c | 4934 struct nfs_fsinfo *fsinfo) in decode_pnfs_layout_types() argument 4942 fsinfo->nlayouttypes = be32_to_cpup(p); in decode_pnfs_layout_types() 4945 if (fsinfo->nlayouttypes == 0) in decode_pnfs_layout_types() 4949 p = xdr_inline_decode(xdr, fsinfo->nlayouttypes * 4); in decode_pnfs_layout_types() 4954 if (fsinfo->nlayouttypes > NFS_MAX_LAYOUT_TYPES) { in decode_pnfs_layout_types() 4956 __func__, fsinfo->nlayouttypes); in decode_pnfs_layout_types() 4957 fsinfo->nlayouttypes = NFS_MAX_LAYOUT_TYPES; in decode_pnfs_layout_types() 4960 for(i = 0; i < fsinfo->nlayouttypes; ++i) in decode_pnfs_layout_types() 4961 fsinfo->layouttype[i] = be32_to_cpup(p++); in decode_pnfs_layout_types() 4970 struct nfs_fsinfo *fsinfo) in decode_attr_pnfstype() argument [all …]
|
| H A D | pnfs.c | 162 struct nfs_fsinfo *fsinfo) in set_pnfs_layoutdriver() argument 168 if (fsinfo->nlayouttypes == 0) in set_pnfs_layoutdriver() 177 sort(fsinfo->layouttype, fsinfo->nlayouttypes, in set_pnfs_layoutdriver() 178 sizeof(*fsinfo->layouttype), ld_cmp, NULL); in set_pnfs_layoutdriver() 180 for (i = 0; i < fsinfo->nlayouttypes; i++) { in set_pnfs_layoutdriver() 181 id = fsinfo->layouttype[i]; in set_pnfs_layoutdriver()
|
| H A D | nfs4_fs.h | 335 struct nfs_fsinfo *fsinfo);
|
| H A D | nfs4proc.c | 5530 struct nfs_fsinfo *fsinfo) in _nfs4_do_fsinfo() argument 5537 .fsinfo = fsinfo, in _nfs4_do_fsinfo() 5548 …ic int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) in nfs4_do_fsinfo() argument 5556 err = _nfs4_do_fsinfo(server, fhandle, fsinfo); in nfs4_do_fsinfo() 5557 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err); in nfs4_do_fsinfo() 5559 nfs4_set_lease_period(server->nfs_client, fsinfo->lease_time * HZ); in nfs4_do_fsinfo() 5567 … int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) in nfs4_proc_fsinfo() argument 5571 nfs_fattr_init(fsinfo->fattr); in nfs4_proc_fsinfo() 5572 error = nfs4_do_fsinfo(server, fhandle, fsinfo); in nfs4_proc_fsinfo() 5575 server->pnfs_blksize = fsinfo->blksize; in nfs4_proc_fsinfo() [all …]
|
| H A D | nfs4state.c | 97 struct nfs_fsinfo fsinfo; in nfs4_setup_state_renewal() local 104 status = nfs4_proc_get_lease_time(clp, &fsinfo); in nfs4_setup_state_renewal() 106 nfs4_set_lease_period(clp, fsinfo.lease_time * HZ); in nfs4_setup_state_renewal()
|
| H A D | pnfs.h | 810 struct nfs_fsinfo *fsinfo) in set_pnfs_layoutdriver() argument
|
| H A D | nfs3proc.c | 1100 .fsinfo = nfs3_proc_fsinfo,
|
| H A D | nfs3xdr.c | 2471 PROC(FSINFO, getattr, fsinfo, 0),
|
| /linux/fs/fat/ |
| H A D | misc.c | 72 struct fat_boot_fsinfo *fsinfo; in fat_clusters_flush() local 83 fsinfo = (struct fat_boot_fsinfo *)bh->b_data; in fat_clusters_flush() 85 if (!IS_FSINFO(fsinfo)) { in fat_clusters_flush() 88 le32_to_cpu(fsinfo->signature1), in fat_clusters_flush() 89 le32_to_cpu(fsinfo->signature2), in fat_clusters_flush() 93 fsinfo->free_clusters = cpu_to_le32(sbi->free_clusters); in fat_clusters_flush() 95 fsinfo->next_cluster = cpu_to_le32(sbi->prev_free); in fat_clusters_flush()
|
| H A D | inode.c | 1673 struct fat_boot_fsinfo *fsinfo; in fat_fill_super() local 1693 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data; in fat_fill_super() 1694 if (!IS_FSINFO(fsinfo)) { in fat_fill_super() 1697 le32_to_cpu(fsinfo->signature1), in fat_fill_super() 1698 le32_to_cpu(fsinfo->signature2), in fat_fill_super() 1703 sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters); in fat_fill_super() 1704 sbi->prev_free = le32_to_cpu(fsinfo->next_cluster); in fat_fill_super()
|
| /linux/fs/vboxsf/ |
| H A D | dir.c | 218 struct shfl_fsobjinfo fsinfo; in vboxsf_dir_lookup() local 224 err = vboxsf_stat_dentry(dentry, &fsinfo); in vboxsf_dir_lookup() 230 vboxsf_init_inode(sbi, inode, &fsinfo, false); in vboxsf_dir_lookup()
|
| /linux/include/linux/ |
| H A D | nfs_xdr.h | 1088 struct nfs_fsinfo *fsinfo; member 1825 int (*fsinfo) (struct nfs_server *, struct nfs_fh *, member
|
| /linux/Documentation/filesystems/ |
| H A D | mount_api.rst | 738 userspace using the fsinfo() syscall.
|