Home
last modified time | relevance | path

Searched refs:dsz (Results 1 – 3 of 3) sorted by relevance

/net/tipc/
Dmsg.c260 int pktno, nof_fragms, dsz, dmax, eat; in tipc_msg_fragment() local
270 dsz = msg_size(buf_msg(skb)); in tipc_msg_fragment()
272 if (dsz <= dmax || !dmax) in tipc_msg_fragment()
275 nof_fragms = dsz / dmax + 1; in tipc_msg_fragment()
280 eat = dsz % dmax; in tipc_msg_fragment()
319 int dsz, int pktmax, struct sk_buff_head *list) in tipc_msg_build() argument
323 int msz = mhsz + dsz; in tipc_msg_build()
326 int drem = dsz; in tipc_msg_build()
342 rc = tipc_msg_build(mhdr, m, offset, dsz, FB_MTU, list); in tipc_msg_build()
343 if (rc != dsz) in tipc_msg_build()
[all …]
Dsocket.c138 static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz);
139 static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz);
1284 struct msghdr *m, size_t dsz) in tipc_sendmsg() argument
1290 ret = __tipc_sendmsg(sock, m, dsz); in tipc_sendmsg()
1429 static int tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz) in tipc_sendstream() argument
1435 ret = __tipc_sendstream(sock, m, dsz); in tipc_sendstream()
1508 static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz) in tipc_send_packet() argument
1510 if (dsz > TIPC_MAX_USER_MSG_SIZE) in tipc_send_packet()
1513 return tipc_sendstream(sock, m, dsz); in tipc_send_packet()
Dmsg.h1067 int offset, int dsz, int mtu, struct sk_buff_head *list);