mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-04-08 12:02:33 +02:00
commit86814d8ffdupstream. Replace setsockopt() calls with calls to functions that follow setsockopt() with getsockopt() and check that the returned value and its size are the same as have been set. (Except in vsock_perf.) Signed-off-by: Konstantin Shkolnyy <kshk@linux.ibm.com> Reviewed-by: Stefano Garzarella <sgarzare@redhat.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com> [Stefano: patch needed to avoid vsock test build failure reported by Johan Korsnes after backporting commit0a98de8013("vsock/test: fix seqpacket message bounds test") in 6.12-stable tree] Signed-off-by: Stefano Garzarella <sgarzare@redhat.com> Tested-by: Johan Korsnes <johan.korsnes@remarkable.no> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18 lines
325 B
C
18 lines
325 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef MSG_ZEROCOPY_COMMON_H
|
|
#define MSG_ZEROCOPY_COMMON_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifndef SOL_VSOCK
|
|
#define SOL_VSOCK 287
|
|
#endif
|
|
|
|
#ifndef VSOCK_RECVERR
|
|
#define VSOCK_RECVERR 1
|
|
#endif
|
|
|
|
void vsock_recv_completion(int fd, const bool *zerocopied);
|
|
|
|
#endif /* MSG_ZEROCOPY_COMMON_H */
|