/linux/fs/hpfs/ |
A D | anode.c | 19 struct anode *anode; in hpfs_bplus_lookup() local 30 btree = &anode->btree; in hpfs_bplus_lookup() 64 struct anode *anode = NULL, *ranode = NULL; in hpfs_add_sector_to_btree() local 77 btree = &anode->btree; in hpfs_add_sector_to_btree() 136 anode->btree.n_free_nodes = 40 - anode->btree.n_used_nodes; in hpfs_add_sector_to_btree() 203 anode = new_anode; in hpfs_add_sector_to_btree() 246 struct anode *unode; in hpfs_add_sector_to_btree() 277 struct anode *anode = NULL; in hpfs_remove_btree() local 332 struct anode *anode; in anode_lookup() local 387 struct anode *anode; in hpfs_ea_remove() local [all …]
|
A D | map.c | 221 struct anode *hpfs_map_anode(struct super_block *s, anode_secno ano, struct buffer_head **bhp) in hpfs_map_anode() 223 struct anode *anode; in hpfs_map_anode() local 225 if ((anode = hpfs_map_sector(s, ano, bhp, ANODE_RD_AHEAD))) in hpfs_map_anode() 227 if (le32_to_cpu(anode->magic) != ANODE_MAGIC) { in hpfs_map_anode() 231 if (le32_to_cpu(anode->self) != ano) { in hpfs_map_anode() 235 if ((unsigned)anode->btree.n_used_nodes + (unsigned)anode->btree.n_free_nodes != in hpfs_map_anode() 236 (bp_internal(&anode->btree) ? 60 : 40)) { in hpfs_map_anode() 240 if (le16_to_cpu(anode->btree.first_free) != in hpfs_map_anode() 241 8 + anode->btree.n_used_nodes * (bp_internal(&anode->btree) ? 8 : 12)) { in hpfs_map_anode() 246 return anode; in hpfs_map_anode()
|
A D | ea.c | 42 struct anode *anode; in hpfs_ea_ext_remove() local 43 if ((anode = hpfs_map_anode(s, a, &bh))) { in hpfs_ea_ext_remove() 44 hpfs_remove_btree(s, &anode->btree); in hpfs_ea_ext_remove()
|
A D | Makefile | 8 hpfs-objs := alloc.o anode.o buffer.o dentry.o dir.o dnode.o ea.o file.o \
|
A D | hpfs_fn.h | 208 struct anode *hpfs_alloc_anode(struct super_block *, secno, anode_secno *, struct buffer_head **); 296 struct anode *hpfs_map_anode(struct super_block *s, anode_secno, struct buffer_head **);
|
A D | alloc.c | 471 struct anode *hpfs_alloc_anode(struct super_block *s, secno near, anode_secno *ano, in hpfs_alloc_anode() 474 struct anode *a; in hpfs_alloc_anode()
|
A D | hpfs.h | 492 struct anode struct
|
/linux/include/linux/ |
A D | bootconfig.h | 190 #define xbc_array_for_each_value(anode, value) \ argument 191 for (value = xbc_node_get_data(anode); anode != NULL ; \ 192 anode = xbc_node_get_child(anode), \ 193 value = anode ? xbc_node_get_data(anode) : NULL) 234 #define xbc_node_for_each_array_value(node, key, anode, value) \ argument 235 for (value = xbc_node_find_value(node, key, &anode); value != NULL; \ 236 anode = xbc_node_get_child(anode), \ 237 value = anode ? xbc_node_get_data(anode) : NULL)
|
/linux/kernel/trace/ |
A D | trace_boot.c | 27 struct xbc_node *anode; in trace_boot_set_instance_options() local 85 struct xbc_node *anode; in trace_boot_enable_events() local 105 struct xbc_node *anode; in trace_boot_add_kprobe_event() local 142 struct xbc_node *anode; in trace_boot_add_synth_event() local 222 struct xbc_node *anode; in trace_boot_hist_add_array() local 228 if (!anode) { in trace_boot_hist_add_array() 251 struct xbc_node *knode, *anode; in trace_boot_hist_add_one_handler() local 271 if (!anode || !xbc_node_is_value(anode)) { in trace_boot_hist_add_one_handler() 466 struct xbc_node *anode; in trace_boot_init_one_event() local 503 if (anode) in trace_boot_init_one_event() [all …]
|
/linux/drivers/net/ipvlan/ |
A D | ipvlan_main.c | 191 list_for_each_entry_rcu(addr, &ipvlan->addrs, anode) in ipvlan_open() 208 list_for_each_entry_rcu(addr, &ipvlan->addrs, anode) in ipvlan_stop() 655 list_for_each_entry_safe(addr, next, &ipvlan->addrs, anode) { in ipvlan_link_delete() 657 list_del_rcu(&addr->anode); in ipvlan_link_delete() 822 list_add_tail_rcu(&addr->anode, &ipvlan->addrs); in ipvlan_add_addr() 845 list_del_rcu(&addr->anode); in ipvlan_del_addr()
|
A D | ipvlan.h | 84 struct list_head anode; /* logical-interface linkage */ member
|
A D | ipvlan_core.c | 110 list_for_each_entry_rcu(addr, &ipvlan->addrs, anode) { in ipvlan_find_addr()
|
/linux/Documentation/filesystems/ |
A D | hpfs.rst | 288 Fixed a bug that it set badly one flag in large anode tree (it was not 338 Fixed crash when allocation of anode failed due to full disk
|
/linux/Documentation/admin-guide/ |
A D | bootconfig.rst | 282 xbc_node_for_each_array_value(root, "array-option", value, anode) {
|