Home
last modified time | relevance | path

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

12345

/fs/
A DMakefile24 obj-y += notify/
26 obj-y += anon_inodes.o
51 obj-y += iomap/
53 obj-y += quota/
59 obj-y += devpts/
61 obj-$(CONFIG_DLM) += dlm/
73 obj-y += ramfs/
89 obj-$(CONFIG_NLS) += nls/
90 obj-y += unicode/
112 obj-$(CONFIG_9P_FS) += 9p/
[all …]
/fs/nls/
A DMakefile6 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
30 obj-$(CONFIG_NLS_ASCII) += nls_ascii.o
43 obj-$(CONFIG_NLS_KOI8_R) += nls_koi8-r.o
[all …]
/fs/adfs/
A Ddir_f.c187 obj->name_len = name_len; in adfs_dir2obj()
192 obj->attr = de->newdiratts; in adfs_dir2obj()
194 adfs_object_fixup(dir, obj); in adfs_dir2obj()
206 adfs_writeval(de->dirlen, 4, obj->size); in adfs_obj2dir()
207 de->newdiratts = obj->attr; in adfs_obj2dir()
227 adfs_dir2obj(dir, obj, &de); in __adfs_dir_get()
256 struct object_info obj; in adfs_f_iterate() local
260 if (__adfs_dir_get(dir, pos, &obj)) in adfs_f_iterate()
262 if (!dir_emit(ctx, obj.name, obj.name_len, in adfs_f_iterate()
263 obj.indaddr, DT_UNKNOWN)) in adfs_f_iterate()
[all …]
A Ddir.c214 if (obj->name[i] == '/') { in adfs_object_fixup()
215 obj->name[i] = '.'; in adfs_object_fixup()
219 if (obj->name_len <= 2 && dots == obj->name_len) in adfs_object_fixup()
220 obj->name[0] = '^'; in adfs_object_fixup()
230 obj->name[obj->name_len++] = ','; in adfs_object_fixup()
231 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 8); in adfs_object_fixup()
232 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 4); in adfs_object_fixup()
233 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 0); in adfs_object_fixup()
292 ret = ops->update(&dir, obj); in adfs_dir_update()
370 if (!__adfs_compare(name, name_len, obj->name, obj->name_len)) { in adfs_dir_lookup_byname()
[all …]
A Ddir_fplus.c189 obj->loadaddr = le32_to_cpu(bde.bigdirload); in adfs_fplus_getnext()
190 obj->execaddr = le32_to_cpu(bde.bigdirexec); in adfs_fplus_getnext()
191 obj->size = le32_to_cpu(bde.bigdirlen); in adfs_fplus_getnext()
199 ret = adfs_dir_copyfrom(obj->name, dir, offset, obj->name_len); in adfs_fplus_getnext()
203 adfs_object_fixup(dir, obj); in adfs_fplus_getnext()
212 struct object_info obj; in adfs_fplus_iterate() local
220 while (!adfs_fplus_getnext(dir, &obj)) { in adfs_fplus_iterate()
221 if (!dir_emit(ctx, obj.name, obj.name_len, in adfs_fplus_iterate()
222 obj.indaddr, DT_UNKNOWN)) in adfs_fplus_iterate()
254 bde.bigdirlen = cpu_to_le32(obj->size); in adfs_fplus_update()
[all …]
A Dinode.c256 inode->i_ino = obj->indaddr; in adfs_iget()
257 inode->i_size = obj->size; in adfs_iget()
269 ADFS_I(inode)->indaddr = obj->indaddr; in adfs_iget()
272 ADFS_I(inode)->attr = obj->attr; in adfs_iget()
364 struct object_info obj; in adfs_write_inode() local
366 obj.indaddr = ADFS_I(inode)->indaddr; in adfs_write_inode()
367 obj.name_len = 0; in adfs_write_inode()
369 obj.loadaddr = ADFS_I(inode)->loadaddr; in adfs_write_inode()
370 obj.execaddr = ADFS_I(inode)->execaddr; in adfs_write_inode()
371 obj.attr = ADFS_I(inode)->attr; in adfs_write_inode()
[all …]
A Dadfs.h130 int (*getnext)(struct adfs_dir *dir, struct object_info *obj);
131 int (*update)(struct adfs_dir *dir, struct object_info *obj);
132 int (*create)(struct adfs_dir *dir, struct object_info *obj);
133 int (*remove)(struct adfs_dir *dir, struct object_info *obj);
145 struct inode *adfs_iget(struct super_block *sb, struct object_info *obj);
183 void adfs_object_fixup(struct adfs_dir *dir, struct object_info *obj);
184 extern int adfs_dir_update(struct super_block *sb, struct object_info *obj,
/fs/bcachefs/
A Dasync_objs.c16 static void promote_obj_to_text(struct printbuf *out, void *obj) in promote_obj_to_text() argument
18 bch2_promote_op_to_text(out, obj); in promote_obj_to_text()
21 static void rbio_obj_to_text(struct printbuf *out, void *obj) in rbio_obj_to_text() argument
23 bch2_read_bio_to_text(out, obj); in rbio_obj_to_text()
26 static void write_op_obj_to_text(struct printbuf *out, void *obj) in write_op_obj_to_text() argument
28 bch2_write_op_to_text(out, obj); in write_op_obj_to_text()
33 struct btree_read_bio *rbio = obj; in btree_read_bio_obj_to_text()
39 struct btree_write_bio *wbio = obj; in btree_write_bio_obj_to_text()
73 void *obj; in bch2_async_obj_list_read() local
74 fast_list_for_each_from(&list->list, iter, obj, i->iter) { in bch2_async_obj_list_read()
[all …]
A Drcu_pending.c219 struct rcu_head *obj = list; in __process_finished_items() local
221 list = obj->next; in __process_finished_items()
223 list = (void *) obj->next.next; in __process_finished_items()
237 kfree(obj); in __process_finished_items()
245 obj->func(obj); in __process_finished_items()
250 struct rcu_head *obj = list; in __process_finished_items() local
252 list = obj->next; in __process_finished_items()
254 list = (void *) obj->next.next; in __process_finished_items()
256 obj->func(obj); in __process_finished_items()
266 struct rcu_head *obj = list; in __process_finished_items() local
[all …]
A Dasync_objs.h11 static inline int __async_object_list_add(struct fast_list *head, void *obj, unsigned *idx) in __async_object_list_add() argument
13 int ret = fast_list_add(head, obj); in __async_object_list_add()
21 #define async_object_list_add(_c, _list, obj, idx) \ argument
22 __async_object_list_add(&(_c)->async_objs[BCH_ASYNC_OBJ_LIST_##_list].list, obj, idx)
36 #define async_object_list_add(_c, _n, obj, idx) __async_object_list_add() argument
/fs/smb/server/
A DMakefile5 obj-$(CONFIG_SMB_SERVER) += ksmbd.o
15 $(obj)/asn1.o: $(obj)/ksmbd_spnego_negtokeninit.asn1.h $(obj)/ksmbd_spnego_negtokentarg.asn1.h
17 $(obj)/ksmbd_spnego_negtokeninit.asn1.o: $(obj)/ksmbd_spnego_negtokeninit.asn1.c $(obj)/ksmbd_spneg…
18 $(obj)/ksmbd_spnego_negtokentarg.asn1.o: $(obj)/ksmbd_spnego_negtokentarg.asn1.c $(obj)/ksmbd_spneg…
/fs/notify/
A Dfsnotify.h21 return conn->obj; in fsnotify_conn_inode()
27 return real_mount(conn->obj); in fsnotify_conn_mount()
33 return conn->obj; in fsnotify_conn_sb()
39 return conn->obj; in fsnotify_conn_mntns()
42 static inline struct super_block *fsnotify_object_sb(void *obj, in fsnotify_object_sb() argument
47 return ((struct inode *)obj)->i_sb; in fsnotify_object_sb()
49 return ((struct vfsmount *)obj)->mnt_sb; in fsnotify_object_sb()
51 return (struct super_block *)obj; in fsnotify_object_sb()
60 return fsnotify_object_sb(conn->obj, conn->type); in fsnotify_connector_sb()
A Dmark.c100 static fsnotify_connp_t *fsnotify_object_connp(void *obj, in fsnotify_object_connp() argument
105 return &((struct inode *)obj)->i_fsnotify_marks; in fsnotify_object_connp()
107 return &real_mount(obj)->mnt_fsnotify_marks; in fsnotify_object_connp()
109 return fsnotify_sb_marks(obj); in fsnotify_object_connp()
111 return &((struct mnt_namespace *)obj)->n_fsnotify_marks; in fsnotify_object_connp()
179 if (conn->obj) in fsnotify_update_sb_watchers()
358 conn->obj = NULL; in fsnotify_detach_connector_from_object()
659 void *obj, unsigned int obj_type) in fsnotify_attach_connector_to_object() argument
671 conn->obj = obj; in fsnotify_attach_connector_to_object()
740 connp = fsnotify_object_connp(obj, obj_type); in fsnotify_add_mark_list()
[all …]
A DMakefile2 obj-$(CONFIG_FSNOTIFY) += fsnotify.o notification.o group.o mark.o \
5 obj-y += dnotify/
6 obj-y += inotify/
7 obj-y += fanotify/
/fs/unicode/
A DMakefile4 obj-y += unicode.o
6 obj-$(CONFIG_UNICODE) += utf8data.o
7 obj-$(CONFIG_UNICODE_NORMALIZATION_KUNIT_TEST) += tests/utf8_kunit.o
11 $(obj)/utf8-data.o: $(obj)/utf8data.c
30 $(obj)/utf8data.c: $(obj)/mkutf8data $(filter %.txt, $(cmd_utf8data)) FORCE
35 $(obj)/utf8data.c: $(src)/utf8data.c_shipped FORCE
/fs/quota/
A DMakefile2 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_QUOTA_NETLINK_INTERFACE) += netlink.o
/fs/lockd/
A Dsvcxdr.h116 svcxdr_decode_owner(struct xdr_stream *xdr, struct xdr_netobj *obj) in svcxdr_decode_owner() argument
128 obj->len = len; in svcxdr_decode_owner()
129 obj->data = (u8 *)p; in svcxdr_decode_owner()
135 svcxdr_encode_owner(struct xdr_stream *xdr, const struct xdr_netobj *obj) in svcxdr_encode_owner() argument
137 if (obj->len > XDR_MAX_NETOBJ) in svcxdr_encode_owner()
139 return xdr_stream_encode_opaque(xdr, obj->data, obj->len) > 0; in svcxdr_encode_owner()
/fs/nfs/
A DMakefile6 obj-$(CONFIG_NFS_FS) += nfs.o
18 obj-$(CONFIG_NFS_V2) += nfsv2.o
21 obj-$(CONFIG_NFS_V3) += nfsv3.o
25 obj-$(CONFIG_NFS_V4) += nfsv4.o
36 obj-$(CONFIG_PNFS_FILE_LAYOUT) += filelayout/
37 obj-$(CONFIG_PNFS_BLOCK) += blocklayout/
38 obj-$(CONFIG_PNFS_FLEXFILE_LAYOUT) += flexfilelayout/
/fs/ocfs2/
A DMakefile4 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/nfs_common/
A DMakefile6 obj-$(CONFIG_NFS_ACL_SUPPORT) += nfs_acl.o
10 obj-$(CONFIG_NFS_COMMON_LOCALIO_SUPPORT) += nfs_localio.o
13 obj-$(CONFIG_GRACE_PERIOD) += grace.o
14 obj-$(CONFIG_NFS_V4_2_SSC_HELPER) += nfs_ssc.o
16 obj-$(CONFIG_NFS_COMMON) += common.o
/fs/smb/client/
A DMakefile6 obj-$(CONFIG_CIFS) += cifs.o
17 $(obj)/asn1.o: $(obj)/cifs_spnego_negtokeninit.asn1.h
19 $(obj)/cifs_spnego_negtokeninit.asn1.o: $(obj)/cifs_spnego_negtokeninit.asn1.c $(obj)/cifs_spnego_n…
/fs/fat/
A DMakefile6 obj-$(CONFIG_FAT_FS) += fat.o
7 obj-$(CONFIG_VFAT_FS) += vfat.o
8 obj-$(CONFIG_MSDOS_FS) += msdos.o
14 obj-$(CONFIG_FAT_KUNIT_TEST) += fat_test.o
/fs/pstore/
A DMakefile6 obj-$(CONFIG_PSTORE) += pstore.o
14 obj-$(CONFIG_PSTORE_RAM) += ramoops.o
17 obj-$(CONFIG_PSTORE_ZONE) += pstore_zone.o
20 obj-$(CONFIG_PSTORE_BLK) += pstore_blk.o
/fs/smb/
A DMakefile3 obj-$(CONFIG_SMBFS) += common/
4 obj-$(CONFIG_CIFS) += client/
5 obj-$(CONFIG_SMB_SERVER) += server/
/fs/fuse/
A DMakefile9 obj-$(CONFIG_FUSE_FS) += fuse.o
10 obj-$(CONFIG_CUSE) += cuse.o
11 obj-$(CONFIG_VIRTIO_FS) += virtiofs.o

Completed in 330 milliseconds

12345