/fs/ |
D | Makefile | 8 obj-y := open.o read_write.o file_table.o super.o \ 17 obj-y += buffer.o block_dev.o direct-io.o mpage.o 19 obj-y += no-block.o 22 obj-$(CONFIG_PROC_FS) += proc_namespace.o 24 obj-y += notify/ 25 obj-$(CONFIG_EPOLL) += eventpoll.o 26 obj-$(CONFIG_ANON_INODES) += anon_inodes.o 27 obj-$(CONFIG_SIGNALFD) += signalfd.o 28 obj-$(CONFIG_TIMERFD) += timerfd.o 29 obj-$(CONFIG_EVENTFD) += eventfd.o [all …]
|
/fs/nls/ |
D | Makefile | 5 obj-$(CONFIG_NLS) += nls_base.o 7 obj-$(CONFIG_NLS_CODEPAGE_437) += nls_cp437.o 8 obj-$(CONFIG_NLS_CODEPAGE_737) += nls_cp737.o 9 obj-$(CONFIG_NLS_CODEPAGE_775) += nls_cp775.o 10 obj-$(CONFIG_NLS_CODEPAGE_850) += nls_cp850.o 11 obj-$(CONFIG_NLS_CODEPAGE_852) += nls_cp852.o 12 obj-$(CONFIG_NLS_CODEPAGE_855) += nls_cp855.o 13 obj-$(CONFIG_NLS_CODEPAGE_857) += nls_cp857.o 14 obj-$(CONFIG_NLS_CODEPAGE_860) += nls_cp860.o 15 obj-$(CONFIG_NLS_CODEPAGE_861) += nls_cp861.o [all …]
|
/fs/fscache/ |
D | object-list.c | 48 void fscache_objlist_add(struct fscache_object *obj) in fscache_objlist_add() argument 53 ASSERT(RB_EMPTY_NODE(&obj->objlist_link)); in fscache_objlist_add() 61 if (obj < xobj) in fscache_objlist_add() 63 else if (obj > xobj) in fscache_objlist_add() 69 rb_link_node(&obj->objlist_link, parent, p); in fscache_objlist_add() 70 rb_insert_color(&obj->objlist_link, &fscache_object_list); in fscache_objlist_add() 78 void fscache_objlist_remove(struct fscache_object *obj) in fscache_objlist_remove() argument 80 if (RB_EMPTY_NODE(&obj->objlist_link)) in fscache_objlist_remove() 86 rb_erase(&obj->objlist_link, &fscache_object_list); in fscache_objlist_remove() 96 struct fscache_object *pobj, *obj = NULL, *minobj = NULL; in fscache_objlist_lookup() local [all …]
|
/fs/adfs/ |
D | dir_f.c | 210 adfs_dir2obj(struct adfs_dir *dir, struct object_info *obj, in adfs_dir2obj() argument 213 obj->name_len = adfs_readname(obj->name, de->dirobname, ADFS_F_NAME_LEN); in adfs_dir2obj() 214 obj->file_id = adfs_readval(de->dirinddiscadd, 3); in adfs_dir2obj() 215 obj->loadaddr = adfs_readval(de->dirload, 4); in adfs_dir2obj() 216 obj->execaddr = adfs_readval(de->direxec, 4); in adfs_dir2obj() 217 obj->size = adfs_readval(de->dirlen, 4); in adfs_dir2obj() 218 obj->attr = de->newdiratts; in adfs_dir2obj() 219 obj->filetype = -1; in adfs_dir2obj() 225 if ((0 == (obj->attr & ADFS_NDA_DIRECTORY)) && in adfs_dir2obj() 226 (0xfff00000 == (0xfff00000 & obj->loadaddr))) { in adfs_dir2obj() [all …]
|
D | dir.c | 25 struct object_info obj; in adfs_readdir() local 52 while (ops->getnext(&dir, &obj) == 0) { in adfs_readdir() 53 if (!dir_emit(ctx, obj.name, obj.name_len, in adfs_readdir() 54 obj.file_id, DT_UNKNOWN)) in adfs_readdir() 68 adfs_dir_update(struct super_block *sb, struct object_info *obj, int wait) in adfs_dir_update() argument 76 obj->file_id, obj->parent_id); in adfs_dir_update() 83 ret = ops->read(sb, obj->parent_id, 0, &dir); in adfs_dir_update() 88 ret = ops->update(&dir, obj); in adfs_dir_update() 104 adfs_match(struct qstr *name, struct object_info *obj) in adfs_match() argument 108 if (name->len != obj->name_len) in adfs_match() [all …]
|
D | dir_fplus.c | 166 adfs_fplus_getnext(struct adfs_dir *dir, struct object_info *obj) in adfs_fplus_getnext() argument 183 obj->loadaddr = le32_to_cpu(bde.bigdirload); in adfs_fplus_getnext() 184 obj->execaddr = le32_to_cpu(bde.bigdirexec); in adfs_fplus_getnext() 185 obj->size = le32_to_cpu(bde.bigdirlen); in adfs_fplus_getnext() 186 obj->file_id = le32_to_cpu(bde.bigdirindaddr); in adfs_fplus_getnext() 187 obj->attr = le32_to_cpu(bde.bigdirattr); in adfs_fplus_getnext() 188 obj->name_len = le32_to_cpu(bde.bigdirobnamelen); in adfs_fplus_getnext() 195 dir_memcpy(dir, offset, obj->name, obj->name_len); in adfs_fplus_getnext() 196 for (i = 0; i < obj->name_len; i++) in adfs_fplus_getnext() 197 if (obj->name[i] == '/') in adfs_fplus_getnext() [all …]
|
D | inode.c | 243 adfs_iget(struct super_block *sb, struct object_info *obj) in adfs_iget() argument 253 inode->i_ino = obj->file_id; in adfs_iget() 254 inode->i_size = obj->size; in adfs_iget() 265 ADFS_I(inode)->parent_id = obj->parent_id; in adfs_iget() 266 ADFS_I(inode)->loadaddr = obj->loadaddr; in adfs_iget() 267 ADFS_I(inode)->execaddr = obj->execaddr; in adfs_iget() 268 ADFS_I(inode)->attr = obj->attr; in adfs_iget() 269 ADFS_I(inode)->filetype = obj->filetype; in adfs_iget() 270 ADFS_I(inode)->stamped = ((obj->loadaddr & 0xfff00000) == 0xfff00000); in adfs_iget() 358 struct object_info obj; in adfs_write_inode() local [all …]
|
D | adfs.h | 131 int (*getnext)(struct adfs_dir *dir, struct object_info *obj); 132 int (*update)(struct adfs_dir *dir, struct object_info *obj); 133 int (*create)(struct adfs_dir *dir, struct object_info *obj); 134 int (*remove)(struct adfs_dir *dir, struct object_info *obj); 147 struct inode *adfs_iget(struct super_block *sb, struct object_info *obj); 174 extern int adfs_dir_update(struct super_block *sb, struct object_info *obj,
|
/fs/quota/ |
D | Makefile | 1 obj-$(CONFIG_QUOTA) += dquot.o 2 obj-$(CONFIG_QFMT_V1) += quota_v1.o 3 obj-$(CONFIG_QFMT_V2) += quota_v2.o 4 obj-$(CONFIG_QUOTA_TREE) += quota_tree.o 5 obj-$(CONFIG_QUOTACTL) += quota.o kqid.o 6 obj-$(CONFIG_QUOTACTL_COMPAT) += compat.o 7 obj-$(CONFIG_QUOTA_NETLINK_INTERFACE) += netlink.o
|
/fs/nfs/ |
D | Makefile | 5 obj-$(CONFIG_NFS_FS) += nfs.o 15 obj-$(CONFIG_NFS_V2) += nfsv2.o 18 obj-$(CONFIG_NFS_V3) += nfsv3.o 22 obj-$(CONFIG_NFS_V4) += nfsv4.o 33 obj-$(CONFIG_PNFS_FILE_LAYOUT) += filelayout/ 34 obj-$(CONFIG_PNFS_OBJLAYOUT) += objlayout/ 35 obj-$(CONFIG_PNFS_BLOCK) += blocklayout/ 36 obj-$(CONFIG_PNFS_FLEXFILE_LAYOUT) += flexfilelayout/
|
/fs/ocfs2/ |
D | Makefile | 5 obj-$(CONFIG_OCFS2_FS) += \ 9 obj-$(CONFIG_OCFS2_FS_O2CB) += ocfs2_stack_o2cb.o 10 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 | 1 obj-$(CONFIG_FSNOTIFY) += fsnotify.o notification.o group.o inode_mark.o \ 4 obj-y += dnotify/ 5 obj-y += inotify/ 6 obj-y += fanotify/
|
/fs/exofs/ |
D | super.c | 221 void exofs_make_credential(u8 cred_a[OSD_CAP_LEN], const struct osd_obj_id *obj) in exofs_make_credential() argument 223 osd_sec_init_nosec_doall_caps(cred_a, obj, false, true); in exofs_make_credential() 226 static int exofs_read_kern(struct osd_dev *od, u8 *cred, struct osd_obj_id *obj, in exofs_read_kern() argument 237 ret = osd_req_read_kern(or, obj, offset, p, length); in exofs_read_kern() 258 _LLU(obj->id), _LLU(offset), _LLU(length), od, ret); in exofs_read_kern() 465 sbi->one_comp.obj.partition); in exofs_put_super() 595 comp.obj.partition = sbi->one_comp.obj.partition; in exofs_read_lookup_dev_table() 596 comp.obj.id = EXOFS_DEVTABLE_ID; in exofs_read_lookup_dev_table() 597 exofs_make_credential(comp.cred, &comp.obj); in exofs_read_lookup_dev_table() 599 ret = exofs_read_kern(fscb_od, comp.cred, &comp.obj, 0, dt, in exofs_read_lookup_dev_table() [all …]
|
D | exofs.h | 180 const struct osd_obj_id *obj); 226 one_comp->obj.partition = sbi->one_comp.obj.partition; in exofs_init_comps() 227 one_comp->obj.id = oid; in exofs_init_comps() 228 exofs_make_credential(one_comp->cred, &one_comp->obj); in exofs_init_comps()
|
D | Kbuild | 17 obj-$(CONFIG_ORE) += libore.o 20 obj-$(CONFIG_EXOFS_FS) += exofs.o
|
D | ore.c | 131 return &ios->oc->comps[index & ios->oc->single_comp].obj; in _ios_obj() 962 struct osd_obj_id *obj = _ios_obj(ios, cur_comp); in _ore_read_mirror() local 963 unsigned first_dev = (unsigned)obj->id; in _ore_read_mirror() 983 osd_req_read_sg(or, obj, per_dev->bio, in _ore_read_mirror() 987 osd_req_read(or, obj, per_dev->offset, in _ore_read_mirror() 992 " dev=%d sg_len=%d\n", _LLU(obj->id), in _ore_read_mirror() 998 osd_req_get_attributes(or, obj); in _ore_read_mirror() 1000 _LLU(obj->id), in _ore_read_mirror() 1147 _LLU(oc->comps->obj.id), _LLU(obj_size), i); in ore_truncate()
|
/fs/fat/ |
D | Makefile | 5 obj-$(CONFIG_FAT_FS) += fat.o 6 obj-$(CONFIG_VFAT_FS) += vfat.o 7 obj-$(CONFIG_MSDOS_FS) += msdos.o
|
/fs/nfs_common/ |
D | Makefile | 5 obj-$(CONFIG_NFS_ACL_SUPPORT) += nfs_acl.o 8 obj-$(CONFIG_GRACE_PERIOD) += grace.o
|
/fs/hostfs/ |
D | Makefile | 8 obj-y := 9 obj-$(CONFIG_HOSTFS) += hostfs.o
|
/fs/fuse/ |
D | Makefile | 5 obj-$(CONFIG_FUSE_FS) += fuse.o 6 obj-$(CONFIG_CUSE) += cuse.o
|
/fs/pstore/ |
D | Makefile | 5 obj-$(CONFIG_PSTORE) += pstore.o 13 obj-$(CONFIG_PSTORE_RAM) += ramoops.o
|
/fs/ocfs2/cluster/ |
D | masklog.c | 141 static ssize_t mlog_show(struct kobject *obj, struct attribute *attr, in mlog_show() argument 149 static ssize_t mlog_store(struct kobject *obj, struct attribute *attr, in mlog_store() argument
|
/fs/notify/dnotify/ |
D | Makefile | 1 obj-$(CONFIG_DNOTIFY) += dnotify.o
|
/fs/notify/inotify/ |
D | Makefile | 1 obj-$(CONFIG_INOTIFY_USER) += inotify_fsnotify.o inotify_user.o
|
/fs/notify/fanotify/ |
D | Makefile | 1 obj-$(CONFIG_FANOTIFY) += fanotify.o fanotify_user.o
|