diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c index fea53413a2dd..b278526530fc 100644 --- a/net/mptcp/protocol.c +++ b/net/mptcp/protocol.c @@ -1754,7 +1754,7 @@ static int mptcp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) /* ensure fitting the notsent_lowat() constraint */ copy_limit = mptcp_send_limit(sk); if (!copy_limit) { - pr_info("%s call wait_for_memory timeo=%ld\n", __func__, timeo); + //pr_info("%s call wait_for_memory timeo=%ld\n", __func__, timeo); goto wait_for_memory; } @@ -1817,7 +1817,7 @@ static int mptcp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) set_bit(SOCK_NOSPACE, &sk->sk_socket->flags); __mptcp_push_pending(sk, msg->msg_flags); ret = sk_stream_wait_memory(sk, &timeo); - pr_info("%s sk_stream_wait_memory ret=%d timeo=%ld\n", __func__, ret, timeo); + //pr_info("%s sk_stream_wait_memory ret=%d timeo=%ld\n", __func__, ret, timeo); if (ret) goto do_error; }