Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 373348
b: refs/heads/master
c: 97fb1c7
h: refs/heads/master
v: v3
  • Loading branch information
Alex Elder authored and Sage Weil committed May 2, 2013
1 parent cd1fa17 commit 1ce60a1
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 35b6280899424a0faf5410ce1ee86f9682528e6c
refs/heads/master: 97fb1c7f6637ee61c90b8bc186d464cfd426b063
7 changes: 7 additions & 0 deletions trunk/include/linux/ceph/messenger.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ struct ceph_messenger {
u32 required_features;
};

#define ceph_msg_has_pages(m) ((m)->pages != NULL)
#define ceph_msg_has_pagelist(m) ((m)->pagelist != NULL)
#ifdef CONFIG_BLOCK
#define ceph_msg_has_bio(m) ((m)->bio != NULL)
#endif /* CONFIG_BLOCK */
#define ceph_msg_has_trail(m) ((m)->trail != NULL)

/*
* a single message. it contains a header (src, dest, message type, etc.),
* footer (crc values, mainly), a "front" message body, and possibly a
Expand Down
44 changes: 27 additions & 17 deletions trunk/net/ceph/messenger.c
Original file line number Diff line number Diff line change
Expand Up @@ -746,12 +746,12 @@ static void prepare_message_data(struct ceph_msg *msg,

/* initialize page iterator */
msg_pos->page = 0;
if (msg->pages)
if (ceph_msg_has_pages(msg))
msg_pos->page_pos = msg->page_alignment;
else
msg_pos->page_pos = 0;
#ifdef CONFIG_BLOCK
if (msg->bio)
if (ceph_msg_has_bio(msg))
init_bio_iter(msg->bio, &msg->bio_iter, &msg->bio_seg);
#endif
msg_pos->data_pos = 0;
Expand Down Expand Up @@ -1052,14 +1052,16 @@ static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
msg_pos->page_pos = 0;
msg_pos->page++;
msg_pos->did_page_crc = false;
if (in_trail)
if (in_trail) {
BUG_ON(!ceph_msg_has_trail(msg));
list_rotate_left(&msg->trail->head);
else if (msg->pagelist)
} else if (ceph_msg_has_pagelist(msg)) {
list_rotate_left(&msg->pagelist->head);
#ifdef CONFIG_BLOCK
else if (msg->bio)
} else if (ceph_msg_has_bio(msg)) {
iter_bio_next(&msg->bio_iter, &msg->bio_seg);
#endif
}
}

static void in_msg_pos_next(struct ceph_connection *con, size_t len,
Expand Down Expand Up @@ -1114,8 +1116,13 @@ static int write_partial_message_data(struct ceph_connection *con)
int ret;
int total_max_write;
bool in_trail = false;
const size_t trail_len = (msg->trail ? msg->trail->length : 0);
const size_t trail_off = data_len - trail_len;
size_t trail_len = 0;
size_t trail_off = data_len;

if (ceph_msg_has_trail(msg)) {
trail_len = msg->trail->length;
trail_off -= trail_len;
}

dout("%s %p msg %p page %d offset %d\n", __func__,
con, msg, msg_pos->page, msg_pos->page_pos);
Expand All @@ -1140,17 +1147,17 @@ static int write_partial_message_data(struct ceph_connection *con)
total_max_write = trail_off - msg_pos->data_pos;

if (in_trail) {
BUG_ON(!ceph_msg_has_trail(msg));
total_max_write = data_len - msg_pos->data_pos;

page = list_first_entry(&msg->trail->head,
struct page, lru);
} else if (msg->pages) {
} else if (ceph_msg_has_pages(msg)) {
page = msg->pages[msg_pos->page];
} else if (msg->pagelist) {
} else if (ceph_msg_has_pagelist(msg)) {
page = list_first_entry(&msg->pagelist->head,
struct page, lru);
#ifdef CONFIG_BLOCK
} else if (msg->bio) {
} else if (ceph_msg_has_bio(msg)) {
struct bio_vec *bv;

bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
Expand Down Expand Up @@ -1908,13 +1915,13 @@ static int read_partial_msg_data(struct ceph_connection *con)

data_len = le32_to_cpu(con->in_hdr.data_len);
while (msg_pos->data_pos < data_len) {
if (msg->pages) {
if (ceph_msg_has_pages(msg)) {
ret = read_partial_message_pages(con, msg->pages,
data_len, do_datacrc);
if (ret <= 0)
return ret;
#ifdef CONFIG_BLOCK
} else if (msg->bio) {
} else if (ceph_msg_has_bio(msg)) {
ret = read_partial_message_bio(con,
data_len, do_datacrc);
if (ret <= 0)
Expand Down Expand Up @@ -2946,16 +2953,19 @@ void ceph_msg_last_put(struct kref *kref)
ceph_buffer_put(m->middle);
m->middle = NULL;
}
m->length = 0;
m->pages = NULL;
if (ceph_msg_has_pages(m)) {
m->length = 0;
m->pages = NULL;
}

if (m->pagelist) {
if (ceph_msg_has_pagelist(m)) {
ceph_pagelist_release(m->pagelist);
kfree(m->pagelist);
m->pagelist = NULL;
}

m->trail = NULL;
if (ceph_msg_has_trail(m))
m->trail = NULL;

if (m->pool)
ceph_msgpool_put(m->pool, m);
Expand Down

0 comments on commit 1ce60a1

Please sign in to comment.