Home
last modified time | relevance | path

Searched refs:obj (Results 1 – 25 of 84) sorted by relevance

1234

/fs/
DMakefile8 obj-y := open.o read_write.o file_table.o super.o \
17 obj-y += buffer.o bio.o block_dev.o direct-io.o mpage.o ioprio.o
19 obj-y += no-block.o
22 obj-$(CONFIG_BLK_DEV_INTEGRITY) += bio-integrity.o
23 obj-y += notify/
24 obj-$(CONFIG_EPOLL) += eventpoll.o
25 obj-$(CONFIG_ANON_INODES) += anon_inodes.o
26 obj-$(CONFIG_SIGNALFD) += signalfd.o
27 obj-$(CONFIG_TIMERFD) += timerfd.o
28 obj-$(CONFIG_EVENTFD) += eventfd.o
[all …]
/fs/nls/
DMakefile5 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/partitions/
DMakefile5 obj-$(CONFIG_BLOCK) := check.o
7 obj-$(CONFIG_ACORN_PARTITION) += acorn.o
8 obj-$(CONFIG_AMIGA_PARTITION) += amiga.o
9 obj-$(CONFIG_ATARI_PARTITION) += atari.o
10 obj-$(CONFIG_MAC_PARTITION) += mac.o
11 obj-$(CONFIG_LDM_PARTITION) += ldm.o
12 obj-$(CONFIG_MSDOS_PARTITION) += msdos.o
13 obj-$(CONFIG_OSF_PARTITION) += osf.o
14 obj-$(CONFIG_SGI_PARTITION) += sgi.o
15 obj-$(CONFIG_SUN_PARTITION) += sun.o
[all …]
/fs/yaffs2/
Dyaffs_guts.c52 static void yaffs_UpdateParent(yaffs_Object *obj);
53 static int yaffs_UnlinkObject(yaffs_Object *obj);
54 static int yaffs_ObjectHasCachedWriteData(yaffs_Object *obj);
68 yaffs_Object *obj);
71 static void yaffs_RemoveObjectFromDirectory(yaffs_Object *obj);
83 static int yaffs_UnlinkWorker(yaffs_Object *obj);
545 static void yaffs_VerifyObjectHeader(yaffs_Object *obj, yaffs_ObjectHeader *oh, yaffs_ExtendedTags … in yaffs_VerifyObjectHeader() argument
547 if (obj && yaffs_SkipVerification(obj->myDev)) in yaffs_VerifyObjectHeader()
550 if (!(tags && obj && oh)) { in yaffs_VerifyObjectHeader()
553 (__u32)tags, (__u32)obj, (__u32)oh)); in yaffs_VerifyObjectHeader()
[all …]
Dyaffs_fs.c435 yaffs_Object *obj);
448 yaffs_Object *obj; in yaffs_lookup() local
459 obj = yaffs_FindObjectByName(yaffs_InodeToObject(dir), in yaffs_lookup()
462 obj = yaffs_GetEquivalentObject(obj); /* in case it was a hardlink */ in yaffs_lookup()
467 if (obj) { in yaffs_lookup()
469 ("yaffs_lookup found %d\n", obj->objectId)); in yaffs_lookup()
471 inode = yaffs_get_inode(dir->i_sb, obj->yst_mode, 0, obj); in yaffs_lookup()
517 yaffs_Object *obj; in yaffs_clear_inode() local
520 obj = yaffs_InodeToObject(inode); in yaffs_clear_inode()
525 obj ? "object exists" : "null object")); in yaffs_clear_inode()
[all …]
Dyaffs_guts.h598 void (*removeObjectCallback)(struct yaffs_ObjectStruct *obj);
823 int yaffs_DeleteObject(yaffs_Object *obj);
825 int yaffs_GetObjectName(yaffs_Object *obj, YCHAR *name, int buffSize);
826 int yaffs_GetObjectFileLength(yaffs_Object *obj);
827 int yaffs_GetObjectInode(yaffs_Object *obj);
828 unsigned yaffs_GetObjectType(yaffs_Object *obj);
829 int yaffs_GetObjectLinkCount(yaffs_Object *obj);
831 int yaffs_SetAttributes(yaffs_Object *obj, struct iattr *attr);
832 int yaffs_GetAttributes(yaffs_Object *obj, struct iattr *attr);
835 int yaffs_ReadDataFromFile(yaffs_Object *obj, __u8 *buffer, loff_t offset,
[all …]
/fs/adfs/
Ddir.c34 struct object_info obj; in adfs_readdir() local
67 while (ops->getnext(&dir, &obj) == 0) { in adfs_readdir()
68 if (filldir(dirent, obj.name, obj.name_len, in adfs_readdir()
69 filp->f_pos, obj.file_id, DT_UNKNOWN) < 0) in adfs_readdir()
86 adfs_dir_update(struct super_block *sb, struct object_info *obj) in adfs_dir_update() argument
94 obj->file_id, obj->parent_id); in adfs_dir_update()
101 ret = ops->read(sb, obj->parent_id, 0, &dir); in adfs_dir_update()
106 ret = ops->update(&dir, obj); in adfs_dir_update()
116 adfs_match(struct qstr *name, struct object_info *obj) in adfs_match() argument
120 if (name->len != obj->name_len) in adfs_match()
[all …]
Ddir_f.c219 adfs_dir2obj(struct object_info *obj, struct adfs_direntry *de) in adfs_dir2obj() argument
221 obj->name_len = adfs_readname(obj->name, de->dirobname, ADFS_F_NAME_LEN); in adfs_dir2obj()
222 obj->file_id = adfs_readval(de->dirinddiscadd, 3); in adfs_dir2obj()
223 obj->loadaddr = adfs_readval(de->dirload, 4); in adfs_dir2obj()
224 obj->execaddr = adfs_readval(de->direxec, 4); in adfs_dir2obj()
225 obj->size = adfs_readval(de->dirlen, 4); in adfs_dir2obj()
226 obj->attr = de->newdiratts; in adfs_dir2obj()
233 adfs_obj2dir(struct adfs_direntry *de, struct object_info *obj) in adfs_obj2dir() argument
235 adfs_writeval(de->dirinddiscadd, 3, obj->file_id); in adfs_obj2dir()
236 adfs_writeval(de->dirload, 4, obj->loadaddr); in adfs_obj2dir()
[all …]
Dinode.c263 adfs_iget(struct super_block *sb, struct object_info *obj) in adfs_iget() argument
273 inode->i_ino = obj->file_id; in adfs_iget()
274 inode->i_size = obj->size; in adfs_iget()
285 ADFS_I(inode)->parent_id = obj->parent_id; in adfs_iget()
286 ADFS_I(inode)->loadaddr = obj->loadaddr; in adfs_iget()
287 ADFS_I(inode)->execaddr = obj->execaddr; in adfs_iget()
288 ADFS_I(inode)->attr = obj->attr; in adfs_iget()
289 ADFS_I(inode)->stamped = ((obj->loadaddr & 0xfff00000) == 0xfff00000); in adfs_iget()
382 struct object_info obj; in adfs_write_inode() local
386 obj.file_id = inode->i_ino; in adfs_write_inode()
[all …]
Ddir_fplus.c125 adfs_fplus_getnext(struct adfs_dir *dir, struct object_info *obj) in adfs_fplus_getnext() argument
141 obj->loadaddr = le32_to_cpu(bde.bigdirload); in adfs_fplus_getnext()
142 obj->execaddr = le32_to_cpu(bde.bigdirexec); in adfs_fplus_getnext()
143 obj->size = le32_to_cpu(bde.bigdirlen); in adfs_fplus_getnext()
144 obj->file_id = le32_to_cpu(bde.bigdirindaddr); in adfs_fplus_getnext()
145 obj->attr = le32_to_cpu(bde.bigdirattr); in adfs_fplus_getnext()
146 obj->name_len = le32_to_cpu(bde.bigdirobnamelen); in adfs_fplus_getnext()
153 dir_memcpy(dir, offset, obj->name, obj->name_len); in adfs_fplus_getnext()
154 for (i = 0; i < obj->name_len; i++) in adfs_fplus_getnext()
155 if (obj->name[i] == '/') in adfs_fplus_getnext()
[all …]
Dadfs.h52 int (*getnext)(struct adfs_dir *dir, struct object_info *obj);
53 int (*update)(struct adfs_dir *dir, struct object_info *obj);
54 int (*create)(struct adfs_dir *dir, struct object_info *obj);
55 int (*remove)(struct adfs_dir *dir, struct object_info *obj);
67 struct inode *adfs_iget(struct super_block *sb, struct object_info *obj);
93 extern int adfs_dir_update(struct super_block *sb, struct object_info *obj);
/fs/ocfs2/
DMakefile5 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
52 obj-$(CONFIG_OCFS2_FS) += cluster/
53 obj-$(CONFIG_OCFS2_FS_O2CB) += dlm/
/fs/fat/
DMakefile5 obj-$(CONFIG_FAT_FS) += fat.o
6 obj-$(CONFIG_VFAT_FS) += vfat.o
7 obj-$(CONFIG_MSDOS_FS) += msdos.o
/fs/notify/
DMakefile1 obj-y += dnotify/
2 obj-y += inotify/
/fs/notify/inotify/
DMakefile1 obj-$(CONFIG_INOTIFY) += inotify.o
2 obj-$(CONFIG_INOTIFY_USER) += inotify_user.o
/fs/hostfs/
DMakefile8 obj-y :=
9 obj-$(CONFIG_HOSTFS) += hostfs.o
/fs/gfs2/
DMakefile1 obj-$(CONFIG_GFS2_FS) += gfs2.o
8 obj-$(CONFIG_GFS2_FS_LOCKING_DLM) += locking/dlm/
/fs/ocfs2/cluster/
Dmasklog.c121 static ssize_t mlog_show(struct kobject *obj, struct attribute *attr, in mlog_show() argument
129 static ssize_t mlog_store(struct kobject *obj, struct attribute *attr, in mlog_store() argument
/fs/hppfs/
DMakefile6 obj-$(CONFIG_HPPFS) += hppfs.o
/fs/notify/dnotify/
DMakefile1 obj-$(CONFIG_DNOTIFY) += dnotify.o
/fs/nfs_common/
DMakefile5 obj-$(CONFIG_NFS_ACL_SUPPORT) += nfs_acl.o
/fs/exportfs/
DMakefile4 obj-$(CONFIG_EXPORTFS) += exportfs.o
/fs/hugetlbfs/
DMakefile5 obj-$(CONFIG_HUGETLBFS) += hugetlbfs.o
/fs/devpts/
DMakefile5 obj-$(CONFIG_UNIX98_PTYS) += devpts.o
/fs/romfs/
DMakefile5 obj-$(CONFIG_ROMFS_FS) += romfs.o

1234