spacewander commented on code in PR #76:
URL: https://github.com/apache/skywalking-rover/pull/76#discussion_r1096467162
##########
bpf/profiling/network/args.h:
##########
@@ -244,9 +244,11 @@ static __inline struct socket_buffer_reader_t*
read_socket_data(struct sock_data
if (size > MAX_PROTOCOL_SOCKET_READ_LENGTH) {
size = MAX_PROTOCOL_SOCKET_READ_LENGTH;
}
+ // use & to work around an issue in kernel verifier.
+ // See https://github.com/apache/skywalking/discussions/10273
Review Comment:
@wu-sheng
I replace this with the original issue, so people can get rid of the
workaround once the original issue is resolved.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]