Home
last modified time | relevance | path

Searched refs:TIPC_MAX_USER_MSG_SIZE (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/include/uapi/linux/
H A Dtipc.h85 #define TIPC_MAX_USER_MSG_SIZE 66000U macro
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/tipcutils/tipcutils/
H A D0002-replace-non-standard-uint-with-unsigned-int.patch103 - uint last_msglen = TIPC_MAX_USER_MSG_SIZE;
109 + unsigned int last_msglen = TIPC_MAX_USER_MSG_SIZE;
/openbmc/linux/net/tipc/
H A Dmsg.c290 if (unlikely((msz - hsz) > TIPC_MAX_USER_MSG_SIZE)) in tipc_msg_validate()
H A Dmsg.h101 #define MAX_MSG_SIZE (MAX_H_SIZE + TIPC_MAX_USER_MSG_SIZE)
H A Dsocket.c1425 if (unlikely(dlen > TIPC_MAX_USER_MSG_SIZE)) in __tipc_sendmsg()
1593 send = min_t(size_t, dlen - sent, TIPC_MAX_USER_MSG_SIZE); in __tipc_sendstream()
1654 if (dsz > TIPC_MAX_USER_MSG_SIZE) in tipc_send_packet()