aboutsummaryrefslogtreecommitdiff
path: root/sys/compat
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2021-01-12 18:00:18 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2021-01-14 09:16:28 +0000
commitfeb96ee9c804c3b3af363dadac2d4def3fe4ee2d (patch)
tree2e12fbc543e249467f8725e86a26ce209b7c79a6 /sys/compat
parent420d4be3e40a13dbeb6ac1fe754f81480448ef55 (diff)
downloadsrc-feb96ee9c804c3b3af363dadac2d4def3fe4ee2d.tar.gz
src-feb96ee9c804c3b3af363dadac2d4def3fe4ee2d.zip
linux: mute "unsupported socket(AF_NETLINK, 3, NETLINK_AUDIT)" warnings
They are way too noisy with Focal. Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/linux/linux_socket.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c
index c68a033d3bd1..5bfcdbb8fd21 100644
--- a/sys/compat/linux/linux_socket.c
+++ b/sys/compat/linux/linux_socket.c
@@ -846,7 +846,10 @@ linux_socket(struct thread *td, struct linux_socket_args *args)
if (domain == -1) {
/* Mask off SOCK_NONBLOCK / CLOEXEC for error messages. */
type = args->type & LINUX_SOCK_TYPE_MASK;
- if (args->domain == LINUX_AF_NETLINK) {
+ if (args->domain == LINUX_AF_NETLINK &&
+ args->protocol == LINUX_NETLINK_AUDIT) {
+ ; /* Do nothing, quietly. */
+ } else if (args->domain == LINUX_AF_NETLINK) {
const char *nl_name;
if (args->protocol >= 0 &&