Home
last modified time | relevance | path

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

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Dtipc.h85 #define TIPC_MAX_USER_MSG_SIZE 66000U macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Dtipc.h85 #define TIPC_MAX_USER_MSG_SIZE 66000U macro
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dtipc.h85 #define TIPC_MAX_USER_MSG_SIZE 66000U macro
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/tipcutils/tipcutils/
H A D0002-replace-non-standard-uint-with-unsigned-int.patch101 - uint last_msglen = TIPC_MAX_USER_MSG_SIZE;
107 + unsigned int last_msglen = TIPC_MAX_USER_MSG_SIZE;
/OK3568_Linux_fs/kernel/net/tipc/
H A Dmsg.c291 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.c1414 if (unlikely(dlen > TIPC_MAX_USER_MSG_SIZE)) in __tipc_sendmsg()
1583 send = min_t(size_t, dlen - sent, TIPC_MAX_USER_MSG_SIZE); in __tipc_sendstream()
1644 if (dsz > TIPC_MAX_USER_MSG_SIZE) in tipc_send_packet()