Commit eff0e55f authored by kexinsun's avatar kexinsun Committed by Ilya Dryomov
Browse files

libceph: update outdated comment in ceph_sock_write_space()



The function try_write() was renamed to ceph_con_v1_try_write()
in commit 566050e1 ("libceph: separate msgr1 protocol
implementation") and subsequently moved to net/ceph/messenger_v1.c
in commit 2f713615 ("libceph: move msgr1 protocol implementation
to its own file").  Update the comment in ceph_sock_write_space()
accordingly.

[ idryomov: account for msgr2 in the updated comment as well ]

Signed-off-by: default avatarkexinsun <kexinsun@smail.nju.edu.cn>
Reviewed-by: default avatarViacheslav Dubeyko <Slava.Dubeyko@ibm.com>
Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
parent c7aac00c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -368,8 +368,8 @@ static void ceph_sock_write_space(struct sock *sk)
	/* only queue to workqueue if there is data we want to write,
	 * and there is sufficient space in the socket buffer to accept
	 * more data.  clear SOCK_NOSPACE so that ceph_sock_write_space()
	 * doesn't get called again until try_write() fills the socket
	 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
	 * doesn't get called again until ceph_con_v[12]_try_write() fills
	 * the socket buffer. See net/ipv4/tcp_input.c:tcp_check_space()
	 * and net/core/stream.c:sk_stream_write_space().
	 */
	if (ceph_con_flag_test(con, CEPH_CON_F_WRITE_PENDING)) {