Home
last modified time | relevance | path

Searched refs:xops (Results 1 – 3 of 3) sorted by relevance

/qemu/hw/9pfs/
H A D9p-xattr.c31 for (xops = *(h)++; xops != NULL; xops = *(h)++) { in get_xattr_operations()
32 if (!strncmp(name, xops->name, strlen(xops->name))) { in get_xattr_operations()
33 return xops; in get_xattr_operations()
42 XattrOperations *xops = get_xattr_operations(ctx->xops, name); in v9fs_get_xattr() local
43 if (xops) { in v9fs_get_xattr()
112 xops = get_xattr_operations(ctx->xops, orig_value); in v9fs_list_xattr()
113 if (!xops) { in v9fs_list_xattr()
145 XattrOperations *xops = get_xattr_operations(ctx->xops, name); in v9fs_set_xattr() local
146 if (xops) { in v9fs_set_xattr()
157 XattrOperations *xops = get_xattr_operations(ctx->xops, name); in v9fs_remove_xattr() local
[all …]
H A D9p-local.c1456 ctx->xops = passthrough_xattr_ops; in local_init()
1458 ctx->xops = mapped_xattr_ops; in local_init()
1460 ctx->xops = none_xattr_ops; in local_init()
1466 ctx->xops = passthrough_xattr_ops; in local_init()
/qemu/fsdev/
H A Dfile-op-9p.h103 XattrOperations **xops; member