Home
last modified time | relevance | path

Searched refs:handler (Results 1 – 18 of 18) sorted by relevance

/fs/
Dxattr.c728 #define for_each_xattr_handler(handlers, handler) \ argument
729 for ((handler) = *(handlers)++; \
730 (handler) != NULL; \
731 (handler) = *(handlers)++)
739 const struct xattr_handler *handler; in xattr_resolve_name() local
744 for_each_xattr_handler(handlers, handler) { in xattr_resolve_name()
745 const char *n = strcmp_prefix(*name, handler->prefix); in xattr_resolve_name()
751 return handler; in xattr_resolve_name()
760 const struct xattr_handler *handler; in generic_getxattr() local
762 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name); in generic_getxattr()
[all …]
Dbuffer.c50 void init_buffer(struct buffer_head *bh, bh_end_io_t *handler, void *private) in init_buffer() argument
52 bh->b_end_io = handler; in init_buffer()
407 bh_end_io_t *handler) in mark_buffer_async_write_endio() argument
409 bh->b_end_io = handler; in mark_buffer_async_write_endio()
1639 bh_end_io_t *handler) in __block_write_full_page() argument
1721 mark_buffer_async_write_endio(bh, handler); in __block_write_full_page()
1774 mark_buffer_async_write_endio(bh, handler); in __block_write_full_page()
2842 struct writeback_control *wbc, bh_end_io_t *handler) in block_write_full_page_endio() argument
2852 handler); in block_write_full_page_endio()
2875 return __block_write_full_page(inode, page, get_block, wbc, handler); in block_write_full_page_endio()
/fs/reiserfs/
Dxattr.c726 #define for_each_xattr_handler(handlers, handler) \ argument
727 for ((handler) = *(handlers)++; \
728 (handler) != NULL; \
729 (handler) = *(handlers)++)
757 const struct xattr_handler *handler; in reiserfs_getxattr() local
759 handler = find_xattr_handler_prefix(dentry->d_sb->s_xattr, name); in reiserfs_getxattr()
761 if (!handler || get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1) in reiserfs_getxattr()
764 return handler->get(dentry, name, buffer, size, handler->flags); in reiserfs_getxattr()
776 const struct xattr_handler *handler; in reiserfs_setxattr() local
778 handler = find_xattr_handler_prefix(dentry->d_sb->s_xattr, name); in reiserfs_setxattr()
[all …]
DKconfig84 enables an extended attribute handler for file security
DREADME135 Igor Zagorovsky is writing much of the new item handler and extent code
/fs/f2fs/
Dxattr.c195 const struct xattr_handler *handler = NULL; in f2fs_xattr_handler() local
198 handler = f2fs_xattr_handler_map[name_index]; in f2fs_xattr_handler()
199 return handler; in f2fs_xattr_handler()
274 const struct xattr_handler *handler = in f2fs_listxattr() local
278 if (!handler) in f2fs_listxattr()
281 size = handler->list(dentry, buffer, rest, entry->e_name, in f2fs_listxattr()
282 entry->e_name_len, handler->flags); in f2fs_listxattr()
/fs/squashfs/
Dxattr.c60 const struct xattr_handler *handler; in squashfs_listxattr() local
69 handler = squashfs_xattr_handler(le16_to_cpu(entry.type)); in squashfs_listxattr()
70 if (handler) in squashfs_listxattr()
71 prefix_size = handler->list(d, buffer, rest, NULL, in squashfs_listxattr()
72 name_size, handler->flags); in squashfs_listxattr()
/fs/ext2/
Dxattr.c131 const struct xattr_handler *handler = NULL; in ext2_xattr_handler() local
134 handler = ext2_xattr_handler_map[name_index]; in ext2_xattr_handler()
135 return handler; in ext2_xattr_handler()
292 const struct xattr_handler *handler = in ext2_xattr_list() local
295 if (handler) { in ext2_xattr_list()
296 size_t size = handler->list(dentry, buffer, rest, in ext2_xattr_list()
299 handler->flags); in ext2_xattr_list()
DKconfig40 enables an extended attribute handler for file security
/fs/ext3/
Dxattr.c130 const struct xattr_handler *handler = NULL; in ext3_xattr_handler() local
133 handler = ext3_xattr_handler_map[name_index]; in ext3_xattr_handler()
134 return handler; in ext3_xattr_handler()
336 const struct xattr_handler *handler = in ext3_xattr_list_entries() local
339 if (handler) { in ext3_xattr_list_entries()
340 size_t size = handler->list(dentry, buffer, rest, in ext3_xattr_list_entries()
343 handler->flags); in ext3_xattr_list_entries()
DKconfig85 enables an extended attribute handler for file security
/fs/jfs/
Djfs_metapage.c152 static inline void dec_io(struct page *page, void (*handler) (struct page *)) in dec_io()
155 handler(page); in dec_io()
182 #define dec_io(page, handler) handler(page) argument
DKconfig30 enables an extended attribute handler for file security
/fs/ext4/
Dxattr.c172 const struct xattr_handler *handler = NULL; in ext4_xattr_handler() local
175 handler = ext4_xattr_handler_map[name_index]; in ext4_xattr_handler()
176 return handler; in ext4_xattr_handler()
405 const struct xattr_handler *handler = in ext4_xattr_list_entries() local
408 if (handler) { in ext4_xattr_list_entries()
409 size_t size = handler->list(dentry, buffer, rest, in ext4_xattr_list_entries()
412 handler->flags); in ext4_xattr_list_entries()
DKconfig61 enables an extended attribute handler for file security
/fs/cachefiles/
Ddaemon.c63 int (*handler)(struct cachefiles_cache *cache, char *args); member
280 ret = cmd->handler(cache, args); in cachefiles_daemon_write()
/fs/jffs2/
DKconfig97 enables an extended attribute handler for file security
/fs/ocfs2/
Dxattr.c542 const struct xattr_handler *handler = NULL; in ocfs2_xattr_prefix() local
545 handler = ocfs2_xattr_handler_map[name_index]; in ocfs2_xattr_prefix()
547 return handler ? handler->prefix : NULL; in ocfs2_xattr_prefix()