Home
last modified time | relevance | path

Searched refs:padto (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/net/ipv6/
H A Desp6.c712 u32 padto; in esp6_output() local
714 padto = min(x->tfcpad, xfrm_state_mtu(x, dst->child_mtu_cached)); in esp6_output()
715 if (skb->len < padto) in esp6_output()
716 esp.tfclen = padto - skb->len; in esp6_output()
/openbmc/linux/net/ipv4/
H A Desp4.c674 u32 padto; in esp_output() local
676 padto = min(x->tfcpad, xfrm_state_mtu(x, dst->child_mtu_cached)); in esp_output()
677 if (skb->len < padto) in esp_output()
678 esp.tfclen = padto - skb->len; in esp_output()
/openbmc/linux/drivers/net/ethernet/realtek/
H A Dr8169_main.c4127 unsigned int padto = 0, len = skb->len; in rtl8125_quirk_udp_padto() local
4140 padto = len + RTL_MIN_PATCH_LEN - trans_data_len; in rtl8125_quirk_udp_padto()
4144 padto = max_t(unsigned int, padto, in rtl8125_quirk_udp_padto()
4148 return padto; in rtl8125_quirk_udp_padto()
4154 unsigned int padto; in rtl_quirk_packet_padto() local
4156 padto = rtl8125_quirk_udp_padto(tp, skb); in rtl_quirk_packet_padto()
4162 padto = max_t(unsigned int, padto, ETH_ZLEN); in rtl_quirk_packet_padto()
4168 return padto; in rtl_quirk_packet_padto()
4239 unsigned int padto = rtl_quirk_packet_padto(tp, skb); in rtl8169_tso_csum_v2() local
4242 return !__skb_put_padto(skb, padto, false); in rtl8169_tso_csum_v2()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ncp/libowfat/
H A D0001-replace-__pure__-with-compiler-attribute-pure.patch174 -size_t fmt_ulong0(char *,unsigned long src,size_t padto) __pure__;
175 +size_t fmt_ulong0(char *,unsigned long src,size_t padto) __PURE;
177 #define fmt_uint0(buf,src,padto) fmt_ulong0(buf,src,padto)