search for: __msg

Displaying 4 results from an estimated 4 matches for "__msg".

Did you mean: e_msg
2023 Jan 26
1
[Bridge] [PATCH net-next] netlink: provide an ability to set default extack message
...--- 4 files changed, 9 insertions(+), 14 deletions(-) diff --git a/include/linux/netlink.h b/include/linux/netlink.h index 38f6334f408c..87d2900cb448 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h @@ -101,7 +101,7 @@ struct netlink_ext_ack { \ do_trace_netlink_extack(__msg); \ \ - if (__extack) \ + if (__extack && !__extack->_msg) \ __extack->_msg = __msg; \ } while (0) @@ -111,7 +111,7 @@ struct netlink_ext_ack { #define NL_SET_ERR_MSG_FMT(extack, fmt, args...) do { \ struct netlink_ext_ack *__extack = (extack);...
2010 Mar 13
1
klibc build trouble
as the next klibc release 1.5.16 looks like shaping up, I have a trouble to build that for Debian. currently I build depent on linux-libc-dev, I don't know what against I can build latest klibc, see klibc fails to build due too: make -C linux/ ARCH=x86_64 INSTALL_HDR_PATH=debian/tmp/usr/lib/klibc/ headers_install make[3]: *** No rule to make target `headers_install'. Stop. make[2]: ***
2006 Nov 13
1
Dial : Executing context/priority after bridge?
...SetCallerID("SIP/sipphone-cbfb", "NAME <NUMBER>") in new stack -- Executing NoOp("SIP/sipphone-cbfb", "Dialing 011XXXXXXXXXXXX to deliver file /usr/vt/result/200611135/test") in new stack -- Executing SetVar("SIP/sipphone-cbfb", "__MSG=/usr/vt/result/200611135/98_011380673805838") in new stack -- Executing Dial("SIP/sipphone-cbfb", "SIP/011380673805838@sipphone|45|rA(/usr/vt/result/200611135/test)") in new stack -- Called 011380673805838@sipphone -- SIP/sipphone-ebf3 answered SIP/sipphone-cbfb...
2010 Jul 07
0
[git pull v2] x86_32, sh4, getrusage()
...ruct cmsghdr * __ptr; + + __ptr = (struct cmsghdr*)(((unsigned char *) __cmsg) + CMSG_ALIGN(__cmsg->cmsg_len)); + if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size) + return (struct cmsghdr *)0; + + return __ptr; +} + +static inline struct cmsghdr * cmsg_nxthdr (struct msghdr *__msg, struct cmsghdr *__cmsg) +{ + return __cmsg_nxthdr(__msg->msg_control, __msg->msg_controllen, __cmsg); +} + +/* "Socket"-level control message types: */ + +#define SCM_RIGHTS 0x01 /* rw: access rights (array of int) */ +#define SCM_CREDENTIALS 0x02 /* rw: struct ucred */ +#define...