Home
last modified time | relevance | path

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

/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/debian/system/core/
H A Dfix-build-on-non-x86.patch9 size_t cmsg_space = CMSG_SPACE(sizeof(int) * fds.size());
11 - if (cmsg_space >= PAGE_SIZE) {
13 + if (cmsg_space >= pagesize) {
20 size_t cmsg_space = CMSG_SPACE(sizeof(int) * max_fds);
21 - if (cmsg_space >= PAGE_SIZE) {
23 + if (cmsg_space >= pagesize) {
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/debian/
H A Dfix-build-on-non-x86.patch9 size_t cmsg_space = CMSG_SPACE(sizeof(int) * fds.size());
11 - if (cmsg_space >= PAGE_SIZE) {
13 + if (cmsg_space >= pagesize) {
20 size_t cmsg_space = CMSG_SPACE(sizeof(int) * max_fds);
21 - if (cmsg_space >= PAGE_SIZE) {
23 + if (cmsg_space >= pagesize) {
/openbmc/phosphor-net-ipmid/
H A Dsocket_channel.hpp202 int cmsg_space = 0; in write() local
210 cmsg_space += CMSG_SPACE(sizeof(in6_pktinfo)); in write()
218 cmsg_space += CMSG_SPACE(sizeof(in_pktinfo)); in write()
220 msg.msg_controllen = cmsg_space; in write()