svn commit: r364409 - in head/sys: kern sys

Brandon Bergren bdragon at FreeBSD.org
Thu Aug 20 04:59:44 UTC 2020


The change you made looks correct to me.

libsysdecode uses pattern matching to find syscall flag definitions for use by userspace debug tools. (so stuff like truss can show flag names, etc.) As such, anything hidden behind _KERNEL in one of the headers that the tool grovels that matches one of the patterns (MSG_ for sys/socket.h in this case) needs to be listed by hand so it doesn't automatically get copied into tables.h.

It used to be part of kdump but got split out into a library in 11 so other tools could share the same data.

On Wed, Aug 19, 2020, at 10:54 PM, Rick Macklem wrote:
> Done, I guess?
> 
> I had never ever heard of this until now, but. by inspection,
> it seems to want the kernel only MSG_xxx flags listed, so
> I added MSG_TLSAPPDATA.
> 
> If this is not correct, please let me know what needs to be done, rick


More information about the svn-src-head mailing list