Home
last modified time | relevance | path

Searched refs:this_node (Results 1 – 7 of 7) sorted by relevance

/linux-4.1.27/fs/befs/
Dbtree.c93 struct befs_btree_node *this_node,
253 struct befs_btree_node *this_node = NULL; in befs_btree_find() local
266 this_node = kmalloc(sizeof(struct befs_btree_node), in befs_btree_find()
268 if (!this_node) { in befs_btree_find()
274 this_node->bh = NULL; in befs_btree_find()
278 if (befs_bt_read_node(sb, ds, this_node, node_off) != BEFS_OK) { in befs_btree_find()
284 while (!befs_leafnode(this_node)) { in befs_btree_find()
285 res = befs_find_key(sb, this_node, key, &node_off); in befs_btree_find()
287 node_off = this_node->head.overflow; in befs_btree_find()
289 if (befs_bt_read_node(sb, ds, this_node, node_off) != BEFS_OK) { in befs_btree_find()
[all …]
/linux-4.1.27/drivers/acpi/acpica/
Dnsaccess.c292 struct acpi_namespace_node *this_node = NULL; in acpi_ns_lookup() local
358 this_node = acpi_gbl_root_node; in acpi_ns_lookup()
382 this_node = acpi_gbl_root_node; in acpi_ns_lookup()
391 this_node)); in acpi_ns_lookup()
404 this_node = prefix_node; in acpi_ns_lookup()
421 this_node = this_node->parent; in acpi_ns_lookup()
422 if (!this_node) { in acpi_ns_lookup()
438 (this_node), num_carats)); in acpi_ns_lookup()
462 type = this_node->type; in acpi_ns_lookup()
527 current_node = this_node; in acpi_ns_lookup()
[all …]
Dnsdump.c175 struct acpi_namespace_node *this_node; in acpi_ns_dump_one_object() local
196 this_node = acpi_ns_validate_handle(obj_handle); in acpi_ns_dump_one_object()
197 if (!this_node) { in acpi_ns_dump_one_object()
203 type = this_node->type; in acpi_ns_dump_one_object()
208 (info->owner_id != this_node->owner_id)) { in acpi_ns_dump_one_object()
225 acpi_os_printf("%4.4s", acpi_ut_get_node_name(this_node)); in acpi_ns_dump_one_object()
231 acpi_ut_get_type_name(type), this_node, in acpi_ns_dump_one_object()
232 this_node->owner_id); in acpi_ns_dump_one_object()
236 obj_desc = acpi_ns_get_attached_object(this_node); in acpi_ns_dump_one_object()
241 if (this_node->flags & ANOBJ_TEMPORARY) { in acpi_ns_dump_one_object()
[all …]
/linux-4.1.27/fs/ocfs2/
Dstackglue.h160 int (*this_node)(struct ocfs2_cluster_connection *conn, member
Dstack_user.c1071 unsigned int *this_node) in user_cluster_this_node() argument
1086 *this_node = rc; in user_cluster_this_node()
1093 .this_node = user_cluster_this_node,
Dstack_o2cb.c420 .this_node = o2cb_cluster_this_node,
Dstackglue.c473 return active_stack->sp_ops->this_node(conn, node); in ocfs2_cluster_this_node()