Lines Matching defs:mss
195 * @mss: max allowable size of buffer
202 int mss, struct sk_buff_head *txq)
214 if (!skb || skb->len >= mss) {
215 skb = tipc_buf_acquire(mss, GFP_KERNEL);
230 cpy = min_t(size_t, rem, mss - mlen);
507 * @mss: max message size (header inclusive)
516 bool tipc_msg_try_bundle(struct sk_buff *tskb, struct sk_buff **skb, u32 mss,
530 if (mss <= INT_H_SIZE + msg_size(msg))
545 if (unlikely(mss < BUF_ALIGN(INT_H_SIZE + tsz) + msg_size(msg)))
547 if (unlikely(pskb_expand_head(tskb, INT_H_SIZE, mss - tsz - INT_H_SIZE,
561 if (likely(tipc_msg_bundle(tskb, msg, mss))) {