git: 31d7f3e9ce2d - main - linux(4): Ratelimit message about unupported cmsg
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 28 May 2022 20:53:30 UTC
The branch main has been updated by dchagin:
URL: https://cgit.FreeBSD.org/src/commit/?id=31d7f3e9ce2d0d69123f3d20453f4fa41ac434d7
commit 31d7f3e9ce2d0d69123f3d20453f4fa41ac434d7
Author: Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2022-05-28 20:48:16 +0000
Commit: Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2022-05-28 20:48:16 +0000
linux(4): Ratelimit message about unupported cmsg
MFC after: 2 weeks
---
sys/compat/linux/linux_socket.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c
index b71dee847cf8..67da1b51a86e 100644
--- a/sys/compat/linux/linux_socket.c
+++ b/sys/compat/linux/linux_socket.c
@@ -1819,7 +1819,7 @@ linux_recvmsg_common(struct thread *td, l_int s, struct l_msghdr *msghdr,
if (lcm->cmsg_type == -1 ||
cm->cmsg_level != SOL_SOCKET) {
- linux_msg(curthread,
+ LINUX_RATELIMIT_MSG_OPT2(
"unsupported recvmsg cmsg level %d type %d",
cm->cmsg_level, cm->cmsg_type);
error = EINVAL;