Home
last modified time | relevance | path

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

/Linux-v4.19/fs/ubifs/
Dlpt_commit.c42 static struct ubifs_cnode *first_dirty_cnode(const struct ubifs_info *c, struct ubifs_nnode *nnode) in first_dirty_cnode() argument
44 ubifs_assert(c, nnode); in first_dirty_cnode()
51 cnode = nnode->nbranch[i].cnode; in first_dirty_cnode()
56 nnode = (struct ubifs_nnode *)cnode; in first_dirty_cnode()
62 return (struct ubifs_cnode *)nnode; in first_dirty_cnode()
75 struct ubifs_nnode *nnode; in next_dirty_cnode() local
79 nnode = cnode->parent; in next_dirty_cnode()
80 if (!nnode) in next_dirty_cnode()
83 cnode = nnode->nbranch[i].cnode; in next_dirty_cnode()
91 return (struct ubifs_cnode *)nnode; in next_dirty_cnode()
[all …]
Dlpt.c386 struct ubifs_nnode *nnode) in ubifs_pack_nnode() argument
394 pack_bits(c, &addr, &pos, nnode->num, c->pcnt_bits); in ubifs_pack_nnode()
396 int lnum = nnode->nbranch[i].lnum; in ubifs_pack_nnode()
401 pack_bits(c, &addr, &pos, nnode->nbranch[i].offs, in ubifs_pack_nnode()
496 void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode) in ubifs_add_nnode_dirt() argument
498 struct ubifs_nnode *np = nnode->parent; in ubifs_add_nnode_dirt()
501 ubifs_add_lpt_dirt(c, np->nbranch[nnode->iip].lnum, in ubifs_add_nnode_dirt()
616 struct ubifs_nnode *nnode = NULL; in ubifs_create_dflt_lpt() local
635 nnode = kzalloc(sizeof(struct ubifs_nnode), GFP_KERNEL); in ubifs_create_dflt_lpt()
639 if (!pnode || !nnode || !buf || !ltab || !lsave) { in ubifs_create_dflt_lpt()
[all …]
Dubifs.h592 struct ubifs_nnode *nnode; member
1710 struct ubifs_nnode *nnode);
1717 void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode);
1722 struct ubifs_nnode *nnode);
/Linux-v4.19/arch/mips/include/asm/sn/
Darch.h52 #define NASID_TO_REGION(nnode) \ argument
53 ((nnode) >> \
60 #define NASID_TO_COMPACT_NODEID(nnode) (nasid_to_compact_node[nnode]) argument
/Linux-v4.19/scripts/dtc/libfdt/
Dfdt_overlay.c627 int nnode; in overlay_apply_node() local
630 nnode = fdt_add_subnode(fdt, target, name); in overlay_apply_node()
631 if (nnode == -FDT_ERR_EXISTS) { in overlay_apply_node()
632 nnode = fdt_subnode_offset(fdt, target, name); in overlay_apply_node()
633 if (nnode == -FDT_ERR_NOTFOUND) in overlay_apply_node()
637 if (nnode < 0) in overlay_apply_node()
638 return nnode; in overlay_apply_node()
640 ret = overlay_apply_node(fdt, nnode, fdto, subnode); in overlay_apply_node()
/Linux-v4.19/include/linux/
Drio.h273 struct list_head nnode; /* node in net list of ports */ member
/Linux-v4.19/drivers/rapidio/
Drio-scan.c962 if (mport->nnode.next || mport->nnode.prev) in rio_enum_mport()