| /OK3568_Linux_fs/kernel/fs/nfs/ |
| H A D | nfs4getroot.c | 15 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()
|
| H A D | getroot.c | 71 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()
|
| 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() 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 …]
|
| H A D | client.c | 751 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 …]
|
| H A D | nfs4xdr.c | 4747 struct nfs_fsinfo *fsinfo) in decode_pnfs_layout_types() argument 4755 fsinfo->nlayouttypes = be32_to_cpup(p); in decode_pnfs_layout_types() 4758 if (fsinfo->nlayouttypes == 0) in decode_pnfs_layout_types() 4762 p = xdr_inline_decode(xdr, fsinfo->nlayouttypes * 4); in decode_pnfs_layout_types() 4767 if (fsinfo->nlayouttypes > NFS_MAX_LAYOUT_TYPES) { in decode_pnfs_layout_types() 4769 __func__, fsinfo->nlayouttypes); in decode_pnfs_layout_types() 4770 fsinfo->nlayouttypes = NFS_MAX_LAYOUT_TYPES; in decode_pnfs_layout_types() 4773 for(i = 0; i < fsinfo->nlayouttypes; ++i) in decode_pnfs_layout_types() 4774 fsinfo->layouttype[i] = be32_to_cpup(p++); in decode_pnfs_layout_types() 4783 struct nfs_fsinfo *fsinfo) in decode_attr_pnfstype() argument [all …]
|
| H A D | pnfs.c | 161 struct nfs_fsinfo *fsinfo) in set_pnfs_layoutdriver() argument 167 if (fsinfo->nlayouttypes == 0) in set_pnfs_layoutdriver() 176 sort(fsinfo->layouttype, fsinfo->nlayouttypes, in set_pnfs_layoutdriver() 177 sizeof(*fsinfo->layouttype), ld_cmp, NULL); in set_pnfs_layoutdriver() 179 for (i = 0; i < fsinfo->nlayouttypes; i++) { in set_pnfs_layoutdriver() 180 id = fsinfo->layouttype[i]; in set_pnfs_layoutdriver()
|
| H A D | nfs4proc.c | 5135 struct nfs_fsinfo *fsinfo) in _nfs4_do_fsinfo() argument 5142 .fsinfo = fsinfo, in _nfs4_do_fsinfo() 5153 …ic int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) in nfs4_do_fsinfo() argument 5161 err = _nfs4_do_fsinfo(server, fhandle, fsinfo); in nfs4_do_fsinfo() 5162 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err); in nfs4_do_fsinfo() 5164 nfs4_set_lease_period(server->nfs_client, fsinfo->lease_time * HZ); in nfs4_do_fsinfo() 5172 … int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) in nfs4_proc_fsinfo() argument 5176 nfs_fattr_init(fsinfo->fattr); in nfs4_proc_fsinfo() 5177 error = nfs4_do_fsinfo(server, fhandle, fsinfo); in nfs4_proc_fsinfo() 5180 server->pnfs_blksize = fsinfo->blksize; in nfs4_proc_fsinfo() [all …]
|
| H A D | nfs4_fs.h | 329 struct nfs_fsinfo *fsinfo);
|
| H A D | nfs4state.c | 95 struct nfs_fsinfo fsinfo; in nfs4_setup_state_renewal() local 102 status = nfs4_proc_get_lease_time(clp, &fsinfo); in nfs4_setup_state_renewal() 104 nfs4_set_lease_period(clp, fsinfo.lease_time * HZ); in nfs4_setup_state_renewal()
|
| H A D | pnfs.h | 797 struct nfs_fsinfo *fsinfo) in set_pnfs_layoutdriver() argument
|
| H A D | nfs3proc.c | 1024 .fsinfo = nfs3_proc_fsinfo,
|
| H A D | nfs3xdr.c | 2534 PROC(FSINFO, getattr, fsinfo, 0),
|
| /OK3568_Linux_fs/kernel/fs/fat/ |
| H A D | misc.c | 66 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()
|
| H A D | inode.c | 1717 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()
|
| /OK3568_Linux_fs/u-boot/drivers/fpga/ |
| H A D | zynqpl.c | 400 fpga_fs_info *fsinfo) in zynq_loadfs() argument 410 blocksize = fsinfo->blocksize; in zynq_loadfs() 411 interface = fsinfo->interface; in zynq_loadfs() 412 dev_part = fsinfo->dev_part; in zynq_loadfs() 413 filename = fsinfo->filename; in zynq_loadfs() 414 fstype = fsinfo->fstype; in zynq_loadfs()
|
| /OK3568_Linux_fs/kernel/fs/vboxsf/ |
| H A D | dir.c | 216 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()
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | runqemu | 200 self.fsinfo = {} 629 for fsinfo in qb_fsinfo: 631 fstype, fsflag = fsinfo.split(':') 645 if fstype in self.fsinfo: 646 self.fsinfo[fstype].append(fsflag) 648 self.fsinfo[fstype] = [fsflag] 650 logger.error('Invalid parameter "%s" in QB_FSINFO', fsinfo) 981 fstype_flags = ' (' + ', '.join(self.fsinfo[self.fstype]) + ')'
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.JFFS2 | 9 fsinfo - print information about file systems
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | jffs2.c | 616 fsinfo, 1, 1, do_jffs2_fsinfo,
|
| H A D | Kconfig | 1568 version 2) filesystem. This enables fsload, ls and fsinfo which
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | nfs_xdr.h | 1039 struct nfs_fsinfo *fsinfo; member 1758 int (*fsinfo) (struct nfs_server *, struct nfs_fh *, member
|
| /OK3568_Linux_fs/u-boot/board/freescale/m54455evb/ |
| H A D | README | 300 fsinfo - print information about filesystems
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | mount_api.rst | 739 userspace using the fsinfo() syscall.
|
| /OK3568_Linux_fs/buildroot/ |
| H A D | CHANGES | 9199 xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
|