/fs/ |
D | Makefile | 9 obj-y := open.o read_write.o file_table.o super.o \ 19 obj-y += buffer.o block_dev.o direct-io.o mpage.o 21 obj-y += no-block.o 24 obj-$(CONFIG_PROC_FS) += proc_namespace.o 26 obj-y += notify/ 27 obj-$(CONFIG_EPOLL) += eventpoll.o 28 obj-y += anon_inodes.o 29 obj-$(CONFIG_SIGNALFD) += signalfd.o 30 obj-$(CONFIG_TIMERFD) += timerfd.o 31 obj-$(CONFIG_EVENTFD) += eventfd.o [all …]
|
/fs/nls/ |
D | Makefile | 6 obj-$(CONFIG_NLS) += nls_base.o 8 obj-$(CONFIG_NLS_CODEPAGE_437) += nls_cp437.o 9 obj-$(CONFIG_NLS_CODEPAGE_737) += nls_cp737.o 10 obj-$(CONFIG_NLS_CODEPAGE_775) += nls_cp775.o 11 obj-$(CONFIG_NLS_CODEPAGE_850) += nls_cp850.o 12 obj-$(CONFIG_NLS_CODEPAGE_852) += nls_cp852.o 13 obj-$(CONFIG_NLS_CODEPAGE_855) += nls_cp855.o 14 obj-$(CONFIG_NLS_CODEPAGE_857) += nls_cp857.o 15 obj-$(CONFIG_NLS_CODEPAGE_860) += nls_cp860.o 16 obj-$(CONFIG_NLS_CODEPAGE_861) += nls_cp861.o [all …]
|
/fs/fscache/ |
D | object-list.c | 42 void fscache_objlist_add(struct fscache_object *obj) in fscache_objlist_add() argument 47 ASSERT(RB_EMPTY_NODE(&obj->objlist_link)); in fscache_objlist_add() 55 if (obj < xobj) in fscache_objlist_add() 57 else if (obj > xobj) in fscache_objlist_add() 63 rb_link_node(&obj->objlist_link, parent, p); in fscache_objlist_add() 64 rb_insert_color(&obj->objlist_link, &fscache_object_list); in fscache_objlist_add() 72 void fscache_objlist_remove(struct fscache_object *obj) in fscache_objlist_remove() argument 74 if (RB_EMPTY_NODE(&obj->objlist_link)) in fscache_objlist_remove() 80 rb_erase(&obj->objlist_link, &fscache_object_list); in fscache_objlist_remove() 90 struct fscache_object *pobj, *obj = NULL, *minobj = NULL; in fscache_objlist_lookup() local [all …]
|
/fs/adfs/ |
D | dir.c | 16 void adfs_object_fixup(struct adfs_dir *dir, struct object_info *obj) in adfs_object_fixup() argument 29 for (i = dots = 0; i < obj->name_len; i++) in adfs_object_fixup() 30 if (obj->name[i] == '/') { in adfs_object_fixup() 31 obj->name[i] = '.'; in adfs_object_fixup() 35 if (obj->name_len <= 2 && dots == obj->name_len) in adfs_object_fixup() 36 obj->name[0] = '^'; in adfs_object_fixup() 42 if (!(obj->attr & ADFS_NDA_DIRECTORY) && ADFS_SB(dir->sb)->s_ftsuffix) { in adfs_object_fixup() 43 u16 filetype = adfs_filetype(obj->loadaddr); in adfs_object_fixup() 46 obj->name[obj->name_len++] = ','; in adfs_object_fixup() 47 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 8); in adfs_object_fixup() [all …]
|
D | dir_f.c | 193 adfs_dir2obj(struct adfs_dir *dir, struct object_info *obj, in adfs_dir2obj() argument 202 obj->name[name_len] = de->dirobname[name_len]; in adfs_dir2obj() 205 obj->name_len = name_len; in adfs_dir2obj() 206 obj->indaddr = adfs_readval(de->dirinddiscadd, 3); in adfs_dir2obj() 207 obj->loadaddr = adfs_readval(de->dirload, 4); in adfs_dir2obj() 208 obj->execaddr = adfs_readval(de->direxec, 4); in adfs_dir2obj() 209 obj->size = adfs_readval(de->dirlen, 4); in adfs_dir2obj() 210 obj->attr = de->newdiratts; in adfs_dir2obj() 212 adfs_object_fixup(dir, obj); in adfs_dir2obj() 219 adfs_obj2dir(struct adfs_direntry *de, struct object_info *obj) in adfs_obj2dir() argument [all …]
|
D | inode.c | 240 adfs_iget(struct super_block *sb, struct object_info *obj) in adfs_iget() argument 250 inode->i_ino = obj->indaddr; in adfs_iget() 251 inode->i_size = obj->size; in adfs_iget() 262 ADFS_I(inode)->parent_id = obj->parent_id; in adfs_iget() 263 ADFS_I(inode)->loadaddr = obj->loadaddr; in adfs_iget() 264 ADFS_I(inode)->execaddr = obj->execaddr; in adfs_iget() 265 ADFS_I(inode)->attr = obj->attr; in adfs_iget() 353 struct object_info obj; in adfs_write_inode() local 356 obj.indaddr = inode->i_ino; in adfs_write_inode() 357 obj.name_len = 0; in adfs_write_inode() [all …]
|
D | dir_fplus.c | 160 adfs_fplus_getnext(struct adfs_dir *dir, struct object_info *obj) in adfs_fplus_getnext() argument 177 obj->loadaddr = le32_to_cpu(bde.bigdirload); in adfs_fplus_getnext() 178 obj->execaddr = le32_to_cpu(bde.bigdirexec); in adfs_fplus_getnext() 179 obj->size = le32_to_cpu(bde.bigdirlen); in adfs_fplus_getnext() 180 obj->indaddr = le32_to_cpu(bde.bigdirindaddr); in adfs_fplus_getnext() 181 obj->attr = le32_to_cpu(bde.bigdirattr); in adfs_fplus_getnext() 182 obj->name_len = le32_to_cpu(bde.bigdirobnamelen); in adfs_fplus_getnext() 189 dir_memcpy(dir, offset, obj->name, obj->name_len); in adfs_fplus_getnext() 190 adfs_object_fixup(dir, obj); in adfs_fplus_getnext()
|
D | adfs.h | 126 int (*getnext)(struct adfs_dir *dir, struct object_info *obj); 127 int (*update)(struct adfs_dir *dir, struct object_info *obj); 128 int (*create)(struct adfs_dir *dir, struct object_info *obj); 129 int (*remove)(struct adfs_dir *dir, struct object_info *obj); 142 struct inode *adfs_iget(struct super_block *sb, struct object_info *obj); 170 void adfs_object_fixup(struct adfs_dir *dir, struct object_info *obj); 171 extern int adfs_dir_update(struct super_block *sb, struct object_info *obj,
|
/fs/quota/ |
D | Makefile | 2 obj-$(CONFIG_QUOTA) += dquot.o 3 obj-$(CONFIG_QFMT_V1) += quota_v1.o 4 obj-$(CONFIG_QFMT_V2) += quota_v2.o 5 obj-$(CONFIG_QUOTA_TREE) += quota_tree.o 6 obj-$(CONFIG_QUOTACTL) += quota.o kqid.o 7 obj-$(CONFIG_QUOTACTL_COMPAT) += compat.o 8 obj-$(CONFIG_QUOTA_NETLINK_INTERFACE) += netlink.o
|
/fs/unicode/ |
D | Makefile | 3 obj-$(CONFIG_UNICODE) += unicode.o 4 obj-$(CONFIG_UNICODE_NORMALIZATION_SELFTEST) += utf8-selftest.o 8 $(obj)/utf8-norm.o: $(obj)/utf8data.h 27 $(obj)/utf8data.h: $(obj)/mkutf8data $(filter %.txt, $(cmd_utf8data)) FORCE 32 $(obj)/utf8data.h: $(src)/utf8data.h_shipped FORCE
|
/fs/nfs/ |
D | Makefile | 6 obj-$(CONFIG_NFS_FS) += nfs.o 17 obj-$(CONFIG_NFS_V2) += nfsv2.o 20 obj-$(CONFIG_NFS_V3) += nfsv3.o 24 obj-$(CONFIG_NFS_V4) += nfsv4.o 35 obj-$(CONFIG_PNFS_FILE_LAYOUT) += filelayout/ 36 obj-$(CONFIG_PNFS_BLOCK) += blocklayout/ 37 obj-$(CONFIG_PNFS_FLEXFILE_LAYOUT) += flexfilelayout/
|
/fs/ocfs2/ |
D | Makefile | 4 obj-$(CONFIG_OCFS2_FS) += \ 8 obj-$(CONFIG_OCFS2_FS_O2CB) += ocfs2_stack_o2cb.o 9 obj-$(CONFIG_OCFS2_FS_USERSPACE_CLUSTER) += ocfs2_stack_user.o 50 obj-$(CONFIG_OCFS2_FS) += dlmfs/ 52 obj-$(CONFIG_OCFS2_FS) += cluster/ 53 obj-$(CONFIG_OCFS2_FS_O2CB) += dlm/
|
/fs/notify/ |
D | Makefile | 2 obj-$(CONFIG_FSNOTIFY) += fsnotify.o notification.o group.o mark.o \ 5 obj-y += dnotify/ 6 obj-y += inotify/ 7 obj-y += fanotify/
|
D | fsnotify.h | 15 return container_of(conn->obj, struct inode, i_fsnotify_marks); in fsnotify_conn_inode() 21 return container_of(conn->obj, struct mount, mnt_fsnotify_marks); in fsnotify_conn_mount() 27 return container_of(conn->obj, struct super_block, s_fsnotify_marks); in fsnotify_conn_sb()
|
/fs/fuse/ |
D | Makefile | 6 obj-$(CONFIG_FUSE_FS) += fuse.o 7 obj-$(CONFIG_CUSE) += cuse.o 8 obj-$(CONFIG_VIRTIO_FS) += virtiofs.o
|
/fs/fat/ |
D | Makefile | 6 obj-$(CONFIG_FAT_FS) += fat.o 7 obj-$(CONFIG_VFAT_FS) += vfat.o 8 obj-$(CONFIG_MSDOS_FS) += msdos.o
|
/fs/nfs_common/ |
D | Makefile | 6 obj-$(CONFIG_NFS_ACL_SUPPORT) += nfs_acl.o 9 obj-$(CONFIG_GRACE_PERIOD) += grace.o
|
/fs/hostfs/ |
D | Makefile | 8 obj-y := 9 obj-$(CONFIG_HOSTFS) += hostfs.o
|
/fs/verity/ |
D | Makefile | 3 obj-$(CONFIG_FS_VERITY) += enable.o \ 10 obj-$(CONFIG_FS_VERITY_BUILTIN_SIGNATURES) += signature.o
|
/fs/pstore/ |
D | Makefile | 6 obj-$(CONFIG_PSTORE) += pstore.o 14 obj-$(CONFIG_PSTORE_RAM) += ramoops.o
|
/fs/erofs/ |
D | zdata.c | 74 atomic_set(&pcl->obj.refcount, 1); in z_erofs_pcluster_init_always() 172 pgoff_t index = pcl->obj.index + (pages - pcl->compressed_pages); in preload_compressed_pages() 215 container_of(grp, struct z_erofs_pcluster, obj); in erofs_try_to_free_all_cached_pages() 255 if (erofs_workgroup_try_to_freeze(&pcl->obj, 1)) { in erofs_try_to_free_cached_page() 265 erofs_workgroup_unfreeze(&pcl->obj, 1); in erofs_try_to_free_cached_page() 354 pcl = container_of(grp, struct z_erofs_pcluster, obj); in cllookup() 414 pcl->obj.index = map->m_pa >> PAGE_SHIFT; in clregister() 441 err = erofs_register_workgroup(inode->i_sb, &pcl->obj, 0); in clregister() 511 container_of(grp, struct z_erofs_pcluster, obj); in erofs_workgroup_free_rcu() 522 erofs_workgroup_put(&pcl->obj); in z_erofs_collection_put() [all …]
|
/fs/ocfs2/cluster/ |
D | masklog.c | 127 static ssize_t mlog_show(struct kobject *obj, struct attribute *attr, in mlog_show() argument 135 static ssize_t mlog_store(struct kobject *obj, struct attribute *attr, in mlog_store() argument
|
/fs/notify/dnotify/ |
D | Makefile | 2 obj-$(CONFIG_DNOTIFY) += dnotify.o
|
/fs/notify/fanotify/ |
D | Makefile | 2 obj-$(CONFIG_FANOTIFY) += fanotify.o fanotify_user.o
|
/fs/notify/inotify/ |
D | Makefile | 2 obj-$(CONFIG_INOTIFY_USER) += inotify_fsnotify.o inotify_user.o
|