Searched refs:overhead (Results 26 - 50 of 62) sorted by relevance

123

/linux-master/include/net/
H A Dsch_generic.h1261 u16 overhead; member in struct:psched_ratecfg
1270 len += r->overhead;
1296 res->overhead = r->overhead;
H A Dflow_offload.h283 u16 overhead; member in struct:flow_action_entry::__anon2718::__anon2724
/linux-master/fs/ext2/
H A Dsuper.c1421 unsigned long i, overhead = 0; local
1425 * Compute the overhead (FS structures). This is constant
1432 * overhead
1434 overhead = le32_to_cpu(es->s_first_data_block);
1437 * Add the overhead attributed to the superblock and
1442 overhead += ext2_bg_has_super(sb, i) +
1449 overhead += (sbi->s_groups_count *
1451 sbi->s_overhead_last = overhead;
/linux-master/drivers/gpu/drm/i915/display/
H A Dintel_dp_mst.c69 * Bspec/49259 suggests that the FEC overhead needs to be
71 * or any other overhead is applicable here (that is the actual
82 * overhead needs to be accounted for.
97 int overhead; local
111 overhead = drm_dp_bw_overhead(crtc_state->lane_count,
118 * TODO: clarify whether a minimum required by the fixed FEC overhead
121 return max(overhead, intel_dp_bw_fec_overhead(crtc_state->fec_enable));
126 int overhead,
137 overhead,
150 * to calculate PBN with the BW overhead passe
124 intel_dp_mst_compute_m_n(const struct intel_crtc_state *crtc_state, const struct intel_connector *connector, int overhead, int bpp_x16, struct intel_link_m_n *m_n) argument
[all...]
/linux-master/fs/nilfs2/
H A Dsuper.c611 unsigned long overhead; local
628 * Compute the overhead
631 * We must count them as the overhead.
633 overhead = 0;
659 buf->f_blocks = blocks - overhead;
/linux-master/net/
H A Dsocket.c3680 * kernel_sock_ip_overhead - returns the IP overhead imposed by a socket
3683 * This routine returns the IP overhead imposed by a socket i.e.
3693 u32 overhead = 0; local
3700 return overhead;
3705 overhead += sizeof(struct iphdr);
3709 overhead += opt->opt.optlen;
3710 return overhead;
3714 overhead += sizeof(struct ipv6hdr);
3719 overhead += (optv6->opt_flen + optv6->opt_nflen);
3720 return overhead;
[all...]
/linux-master/tools/perf/ui/
H A Dhist.c434 HPP_PERCENT_FNS(overhead, period)
506 HPP__COLOR_PRINT_FNS("Overhead", overhead, OVERHEAD),
/linux-master/include/net/sctp/
H A Dstructs.h712 /* This is the overhead of the sctp and ip headers. */
713 size_t overhead; member in struct:sctp_packet
748 return packet->size == packet->overhead;
/linux-master/drivers/net/ethernet/sfc/siena/
H A Defx_common.c276 * framing, overhead and XDP headroom + tailroom.
278 int overhead = EFX_MAX_FRAME_LEN(0) + sizeof(struct efx_rx_page_state) + local
282 return PAGE_SIZE - overhead;
/linux-master/drivers/net/ethernet/sfc/
H A Defx_common.c272 * framing, overhead and XDP headroom + tailroom.
274 int overhead = EFX_MAX_FRAME_LEN(0) + sizeof(struct efx_rx_page_state) + local
278 return PAGE_SIZE - overhead;
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_tc_matchall.c36 act->police.avrate || act->police.overhead) {
38 "Offload not supported when peakrate/avrate/overhead is configured");
/linux-master/tools/perf/ui/gtk/
H A Dhists.c71 __HPP_COLOR_PERCENT_FN(overhead, period)
437 /* the first hpp_list_node is for overhead columns */
531 /* the first hpp_list_node is for overhead columns */
/linux-master/net/sched/
H A Dact_police.c457 entry->police.overhead = tcf_police_rate_overhead(act);
H A Dsch_generic.c770 * the overhead of the second spin_trylock() in
1544 r->overhead = conf->overhead;
H A Dsch_htb.c1794 if (hopt->rate.overhead || hopt->ceil.overhead) {
1795 NL_SET_ERR_MSG(extack, "HTB offload doesn't support the overhead parameter");
/linux-master/drivers/net/dsa/sja1105/
H A Dsja1105_flower.c331 act->police.avrate || act->police.overhead) {
333 "Offload not supported when peakrate/avrate/overhead is configured");
/linux-master/drivers/gpu/drm/display/
H A Ddrm_dp_helper.c4120 * drm_dp_bw_overhead - Calculate the BW overhead of a DP link stream
4127 * Calculate the BW allocation overhead of a DP link stream, depending
4138 * Note that this overhead doesn't account for the 8b/10b, 128b/132b
4142 * Returns the overhead as 100% + overhead% in 1ppm units.
4150 u32 overhead = 1000000; local
4154 DRM_DEBUG_KMS("Invalid BW overhead params: lane_count %d, hactive %d, bpp_x16 %d.%04d\n",
4166 overhead += 6000;
4182 overhead += 24016;
4186 * The FEC overhead fo
[all...]
/linux-master/fs/ext4/
H A Dsuper.c3412 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
4111 * Note: calculating the overhead so we can be compatible with
4115 * Calculating the exact overhead in the face of clustered allocation
4186 * Compute the overhead and stash it in sbi->s_overhead
4195 ext4_fsblk_t overhead = 0; local
4202 * Compute the overhead (FS structures). This is constant
4208 * All of the blocks before first_data_block are overhead
4210 overhead = EXT4_B2C(sbi, le32_to_cpu(es->s_first_data_block));
4213 * Add the overhead found in each block group
4219 overhead
6800 ext4_fsblk_t overhead = 0, resv_blocks; local
[all...]
/linux-master/net/dsa/
H A Duser.c2064 int overhead; local
2093 overhead = dsa_tag_protocol_overhead(cpu_dp->tag_ops);
2094 mtu_limit = min_t(int, conduit->max_mtu, dev->max_mtu + overhead);
2096 new_conduit_mtu = largest_mtu + overhead;
2131 dsa_port_mtu_change(cpu_dp, old_conduit_mtu - overhead);
/linux-master/drivers/net/usb/
H A Dsmsc95xx.c1933 int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD; local
1940 /* Make writable and expand header space by overhead if required */
1941 if (skb_cow_head(skb, overhead)) {
/linux-master/kernel/trace/
H A Dtrace_functions_graph.c50 { TRACER_OPT(funcgraph-overhead, TRACE_GRAPH_PRINT_OVERHEAD) },
552 /* No overhead */
618 /* Signal a overhead of time execution to the output */
/linux-master/drivers/net/ethernet/netronome/nfp/flower/
H A Dqos_conf.c155 act->police.avrate || act->police.overhead) {
157 "Offload not supported when peakrate/avrate/overhead is configured");
/linux-master/drivers/tty/
H A Dn_gsm.c1243 int overhead = 0; local
1247 overhead = 1;
1256 len = dlci->skb->len + overhead;
1270 size = len + overhead;
/linux-master/drivers/net/ethernet/mellanox/mlxsw/
H A Dspectrum_flower.c43 act->police.avrate || act->police.overhead) {
45 "Offload not supported when peakrate/avrate/overhead is configured");
/linux-master/arch/arm/crypto/
H A Dsha1-armv4-large.S41 @ performance is affected by prologue and epilogue overhead,

Completed in 322 milliseconds

123