Skip to content

Commit

Permalink
EAGAIN
Browse files Browse the repository at this point in the history
fix

Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn>
  • Loading branch information
Geliang Tang committed Dec 6, 2024
1 parent 9846814 commit 8d07b3f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions net/mptcp/protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -2272,6 +2272,7 @@ static int mptcp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,

if (!timeo) {
copied = -EAGAIN;
pr_info("%s return EAGAIN\n", __func__);
break;
}

Expand Down
4 changes: 4 additions & 0 deletions tools/testing/selftests/bpf/network_helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,8 @@ static void *send_recv_server(void *arg)
if (nr_sent == -1 && errno == EINTR)
continue;
if (nr_sent == -1) {
//if (errno == EAGAIN)
// continue;
err = -errno;
break;
}
Expand Down Expand Up @@ -701,6 +703,8 @@ int send_recv_data(int lfd, int fd, uint32_t total_bytes, int timeout_ms)
if (nr_recv == -1 && errno == EINTR)
continue;
if (nr_recv == -1) {
//if (errno == EAGAIN)
// continue;
err = -errno;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion tools/testing/selftests/bpf/prog_tests/mptcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,7 @@ static void send_data_and_verify(char *sched, bool addr1, bool addr2)
if (!ASSERT_OK_FD(server_fd, "start_mptcp_server"))
goto skel_destroy;

client_fd = connect_to_fd(server_fd, 0);
client_fd = connect_to_fd(server_fd, 30000);
if (!ASSERT_OK_FD(client_fd, "connect_to_fd"))
goto close_server;

Expand Down
3 changes: 3 additions & 0 deletions tools/testing/selftests/bpf/progs/mptcp_bpf_bytes.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ int BPF_PROG(trace_mptcp_sched_get_send, struct mptcp_sock *msk)
if (!msk->pm.server_side)
return 0;

bytes_sent_1 = 0;
bytes_sent_2 = 0;

mptcp_for_each_subflow(msk, subflow) {
struct tcp_sock *tp;
struct sock *ssk;
Expand Down

0 comments on commit 8d07b3f

Please sign in to comment.