Home
last modified time | relevance | path

Searched refs:fanout (Results 1 – 16 of 16) sorted by relevance

/Linux-v4.19/net/packet/
Ddiag.c117 if (po->fanout) { in pdiag_put_fanout()
120 val = (u32)po->fanout->id | ((u32)po->fanout->type << 16); in pdiag_put_fanout()
Dinternal.h108 struct packet_fanout *fanout; member
Daf_packet.c310 if (po->fanout) in __register_prot_hook()
340 if (po->fanout) in __unregister_prot_hook()
1467 struct packet_fanout *f = po->fanout; in __fanout_link()
1480 struct packet_fanout *f = po->fanout; in __fanout_unlink()
1501 return ptype->af_packet_priv == pkt_sk(sk)->fanout; in match_fanout_group()
1550 __fanout_set_data_bpf(po->fanout, new); in fanout_set_data_cbpf()
1571 __fanout_set_data_bpf(po->fanout, new); in fanout_set_data_ebpf()
1578 switch (po->fanout->type) { in fanout_set_data()
1655 if (po->fanout) in fanout_add()
1723 po->fanout = match; in fanout_add()
[all …]
/Linux-v4.19/kernel/rcu/
DKconfig121 int "Tree-based hierarchical RCU fanout value"
128 This option controls the fanout of hierarchical implementations
141 int "Tree-based hierarchical RCU leaf-level fanout value"
147 This option controls the leaf-level fanout of hierarchical
151 want the default because the smaller leaf-level fanout keeps
160 fanout to a large number will likely cause problematic
/Linux-v4.19/fs/ubifs/
Dsb.c182 sup->fanout = cpu_to_le32(DEFAULT_FANOUT); in create_default_filesystem()
440 if (c->fanout < UBIFS_MIN_FANOUT || in validate_sb()
441 ubifs_idx_node_sz(c, c->fanout) > c->leb_size) { in validate_sb()
627 c->fanout = le32_to_cpu(sup->fanout); in ubifs_read_superblock()
Dtnc_misc.c301 if (znode->child_cnt > c->fanout || znode->level > UBIFS_MAX_LEVELS) { in read_znode()
303 c->fanout, znode->child_cnt); in read_znode()
Dtnc.c2083 ubifs_assert(c, n >= 0 && n <= c->fanout); in tnc_insert()
2088 if (znode->child_cnt < c->fanout) { in tnc_insert()
2089 ubifs_assert(c, n != c->fanout); in tnc_insert()
2123 if (n == c->fanout) { in tnc_insert()
2130 } else if (appending && n != c->fanout) { in tnc_insert()
2134 if (n >= (c->fanout + 1) / 2) { in tnc_insert()
2142 move = c->fanout - keep; in tnc_insert()
2151 keep = c->fanout; in tnc_insert()
2154 keep = (c->fanout + 1) / 2; in tnc_insert()
2155 move = c->fanout - keep; in tnc_insert()
[all …]
Dbudget.c654 f = c->fanout > 3 ? c->fanout >> 1 : 2; in ubifs_reported_space()
Dcommit.c582 sz = sizeof(struct idx_node) + ubifs_idx_node_sz(c, c->fanout) - in dbg_check_old_index()
614 if (child_cnt < 1 || child_cnt > c->fanout) { in dbg_check_old_index()
Dubifs-media.h652 __le32 fanout; member
Dsuper.c662 c->fanout * sizeof(struct ubifs_zbranch); in init_constants_sb()
668 tmp = ubifs_idx_node_sz(c, c->fanout); in init_constants_sb()
1473 dbg_gen("tree fanout: %d", c->fanout); in mount_ubifs()
1485 UBIFS_MAX_DENT_NODE_SZ, ubifs_idx_node_sz(c, c->fanout)); in mount_ubifs()
Ddebug.c354 pr_err("\tfanout %u\n", le32_to_cpu(sup->fanout)); in ubifs_dump_node()
514 for (i = 0; i < n && i < c->fanout - 1; i++) { in ubifs_dump_node()
871 if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) { in ubifs_dump_znode()
1275 if (znode->child_cnt <= 0 || znode->child_cnt > c->fanout) { in dbg_check_znode()
1283 if (znode->iip < 0 || znode->iip >= c->fanout) { in dbg_check_znode()
Dtnc_commit.c429 buf_len = ubifs_idx_node_sz(c, c->fanout); in layout_in_empty_space()
Dubifs.h1317 int fanout; member
/Linux-v4.19/drivers/fsi/
DKconfig43 a high target device fanout.
/Linux-v4.19/Documentation/networking/
Dpacket_mmap.txt573 + AF_PACKET fanout mode
576 In the AF_PACKET fanout mode, packet reception can be load balanced among
579 Currently implemented fanout policies are:
700 fprintf(stderr, "Unknown fanout type [%s]\n", argp[2]);
744 So it seems to be a good candidate to be used with packet fanout.