From: Alex Elder <elder@ieee.org>
To: "Benoît Canet" <benoit.canet@nodalink.com>, ceph-devel@vger.kernel.org
Cc: idryomov@gmail.com
Subject: Re: [PATCH] libceph: Fix ceph_tcp_sendpage()'s more boolean usage
Date: Thu, 25 Jun 2015 15:28:25 -0500 [thread overview]
Message-ID: <558C6469.6010600@ieee.org> (raw)
In-Reply-To: <1435251386-25108-1-git-send-email-benoit.canet@nodalink.com>
On 06/25/2015 11:56 AM, Benoît Canet wrote:
> Spotted while hunting http://tracker.ceph.com/issues/10905.
>
> From struct ceph_msg_data_cursor in include/linux/ceph/messenger.h:
>
> bool last_piece; /* current is last piece */
>
> In ceph_msg_data_next():
>
> *last_piece = cursor->last_piece;
>
> A call to ceph_msg_data_next() is followed by:
>
> ret = ceph_tcp_sendpage(con->sock, page, page_offset,
> length, last_piece);
>
> while ceph_tcp_sendpage() is:
>
> static int ceph_tcp_sendpage(struct socket *sock, struct page *page,i
> int offset, size_t size, bool more)
>
> The logic is inverted: correct it.
Whoops. I'm surprised we haven't had more trouble from this.
This should go to stable too.
Looks good.
Reviewed-by: Alex Elder <elder@linaro.org>
>
> Signed-off-by: Benoît Canet <benoit.canet@nodalink.com>
> ---
> net/ceph/messenger.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c
> index ec68cd3..eda06fd 100644
> --- a/net/ceph/messenger.c
> +++ b/net/ceph/messenger.c
> @@ -1544,7 +1544,7 @@ static int write_partial_message_data(struct ceph_connection *con)
> page = ceph_msg_data_next(&msg->cursor, &page_offset, &length,
> &last_piece);
> ret = ceph_tcp_sendpage(con->sock, page, page_offset,
> - length, last_piece);
> + length, !last_piece);
> if (ret <= 0) {
> if (do_datacrc)
> msg->footer.data_crc = cpu_to_le32(crc);
>
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2015-06-25 20:28 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-25 16:56 [PATCH] libceph: Fix ceph_tcp_sendpage()'s more boolean usage Benoît Canet
2015-06-25 17:30 ` Ilya Dryomov
2015-06-25 20:28 ` Alex Elder [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=558C6469.6010600@ieee.org \
--to=elder@ieee.org \
--cc=benoit.canet@nodalink.com \
--cc=ceph-devel@vger.kernel.org \
--cc=idryomov@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.