| /OK3568_Linux_fs/u-boot/fs/ubifs/ |
| H A D | lpt.c | 380 struct ubifs_nnode *nnode) in ubifs_pack_nnode() argument 388 pack_bits(&addr, &pos, nnode->num, c->pcnt_bits); in ubifs_pack_nnode() 390 int lnum = nnode->nbranch[i].lnum; in ubifs_pack_nnode() 395 pack_bits(&addr, &pos, nnode->nbranch[i].offs, in ubifs_pack_nnode() 490 void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode) in ubifs_add_nnode_dirt() argument 492 struct ubifs_nnode *np = nnode->parent; in ubifs_add_nnode_dirt() 495 ubifs_add_lpt_dirt(c, np->nbranch[nnode->iip].lnum, in ubifs_add_nnode_dirt() 610 struct ubifs_nnode *nnode = NULL; in ubifs_create_dflt_lpt() local 629 nnode = kzalloc(sizeof(struct ubifs_nnode), GFP_KERNEL); in ubifs_create_dflt_lpt() 632 if (!pnode || !nnode || !buf || !ltab || !lsave) { in ubifs_create_dflt_lpt() [all …]
|
| H A D | lpt_commit.c | 39 static struct ubifs_cnode *first_dirty_cnode(struct ubifs_nnode *nnode) in first_dirty_cnode() argument 41 ubifs_assert(nnode); in first_dirty_cnode() 48 cnode = nnode->nbranch[i].cnode; in first_dirty_cnode() 53 nnode = (struct ubifs_nnode *)cnode; in first_dirty_cnode() 59 return (struct ubifs_cnode *)nnode; in first_dirty_cnode() 71 struct ubifs_nnode *nnode; in next_dirty_cnode() local 75 nnode = cnode->parent; in next_dirty_cnode() 76 if (!nnode) in next_dirty_cnode() 79 cnode = nnode->nbranch[i].cnode; in next_dirty_cnode() 87 return (struct ubifs_cnode *)nnode; in next_dirty_cnode() [all …]
|
| H A D | ubifs.h | 1188 struct ubifs_nnode *nnode; member 2305 struct ubifs_nnode *nnode); 2312 void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode); 2317 struct ubifs_nnode *nnode);
|
| /OK3568_Linux_fs/kernel/fs/ubifs/ |
| H A D | lpt.c | 374 struct ubifs_nnode *nnode) in ubifs_pack_nnode() argument 382 pack_bits(c, &addr, &pos, nnode->num, c->pcnt_bits); in ubifs_pack_nnode() 384 int lnum = nnode->nbranch[i].lnum; in ubifs_pack_nnode() 389 pack_bits(c, &addr, &pos, nnode->nbranch[i].offs, in ubifs_pack_nnode() 484 void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode) in ubifs_add_nnode_dirt() argument 486 struct ubifs_nnode *np = nnode->parent; in ubifs_add_nnode_dirt() 489 ubifs_add_lpt_dirt(c, np->nbranch[nnode->iip].lnum, in ubifs_add_nnode_dirt() 605 struct ubifs_nnode *nnode = NULL; in ubifs_create_dflt_lpt() local 629 nnode = kzalloc(sizeof(struct ubifs_nnode), GFP_KERNEL); in ubifs_create_dflt_lpt() 633 if (!pnode || !nnode || !buf || !ltab || !lsave) { in ubifs_create_dflt_lpt() [all …]
|
| H A D | lpt_commit.c | 30 static struct ubifs_cnode *first_dirty_cnode(const struct ubifs_info *c, struct ubifs_nnode *nnode) in first_dirty_cnode() argument 32 ubifs_assert(c, nnode); in first_dirty_cnode() 39 cnode = nnode->nbranch[i].cnode; in first_dirty_cnode() 44 nnode = (struct ubifs_nnode *)cnode; in first_dirty_cnode() 50 return (struct ubifs_cnode *)nnode; in first_dirty_cnode() 63 struct ubifs_nnode *nnode; in next_dirty_cnode() local 67 nnode = cnode->parent; in next_dirty_cnode() 68 if (!nnode) in next_dirty_cnode() 71 cnode = nnode->nbranch[i].cnode; in next_dirty_cnode() 79 return (struct ubifs_cnode *)nnode; in next_dirty_cnode() [all …]
|
| H A D | ubifs.h | 592 struct ubifs_nnode *nnode; member 1946 struct ubifs_nnode *nnode); 1954 void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode); 1959 struct ubifs_nnode *nnode);
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/libfdt/ |
| H A D | fdt_overlay.c | 576 int nnode; in overlay_apply_node() local 579 nnode = fdt_add_subnode(fdt, target, name); in overlay_apply_node() 580 if (nnode == -FDT_ERR_EXISTS) { in overlay_apply_node() 581 nnode = fdt_subnode_offset(fdt, target, name); in overlay_apply_node() 582 if (nnode == -FDT_ERR_NOTFOUND) in overlay_apply_node() 586 if (nnode < 0) in overlay_apply_node() 587 return nnode; in overlay_apply_node() 589 ret = overlay_apply_node(fdt, nnode, fdto, subnode); in overlay_apply_node()
|
| /OK3568_Linux_fs/kernel/scripts/dtc/libfdt/ |
| H A D | fdt_overlay.c | 583 int nnode; in overlay_apply_node() local 586 nnode = fdt_add_subnode(fdt, target, name); in overlay_apply_node() 587 if (nnode == -FDT_ERR_EXISTS) { in overlay_apply_node() 588 nnode = fdt_subnode_offset(fdt, target, name); in overlay_apply_node() 589 if (nnode == -FDT_ERR_NOTFOUND) in overlay_apply_node() 593 if (nnode < 0) in overlay_apply_node() 594 return nnode; in overlay_apply_node() 596 ret = overlay_apply_node(fdt, nnode, fdto, subnode); in overlay_apply_node()
|
| /OK3568_Linux_fs/kernel/drivers/md/ |
| H A D | dm-dust.c | 243 struct rb_node *node = NULL, *nnode = NULL; in __dust_clear_badblocks() local 245 nnode = rb_first(tree); in __dust_clear_badblocks() 246 if (nnode == NULL) { in __dust_clear_badblocks() 251 while (nnode) { in __dust_clear_badblocks() 252 node = nnode; in __dust_clear_badblocks() 253 nnode = rb_next(node); in __dust_clear_badblocks()
|
| /OK3568_Linux_fs/kernel/drivers/rapidio/ |
| H A D | rio-scan.c | 956 if (mport->nnode.next || mport->nnode.prev) in rio_enum_mport()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | rio.h | 269 struct list_head nnode; /* node in net list of ports */ member
|