diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/ceph/messenger.h | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/include/linux/ceph/messenger.h b/include/linux/ceph/messenger.h index 6c118748a7f8..aa463b9b30af 100644 --- a/include/linux/ceph/messenger.h +++ b/include/linux/ceph/messenger.h | |||
| @@ -74,21 +74,22 @@ struct ceph_msg { | |||
| 74 | struct ceph_msg_footer footer; /* footer */ | 74 | struct ceph_msg_footer footer; /* footer */ |
| 75 | struct kvec front; /* unaligned blobs of message */ | 75 | struct kvec front; /* unaligned blobs of message */ |
| 76 | struct ceph_buffer *middle; | 76 | struct ceph_buffer *middle; |
| 77 | struct page **pages; /* data payload. NOT OWNER. */ | ||
| 78 | unsigned page_count; /* size of page array */ | ||
| 79 | unsigned page_alignment; /* io offset in first page */ | ||
| 80 | struct ceph_pagelist *pagelist; /* instead of pages */ | ||
| 81 | |||
| 82 | struct ceph_connection *con; | ||
| 83 | struct list_head list_head; | ||
| 84 | 77 | ||
| 85 | struct kref kref; | 78 | struct page **pages; /* data payload. NOT OWNER. */ |
| 79 | unsigned int page_alignment; /* io offset in first page */ | ||
| 80 | unsigned int page_count; /* # pages in array or list */ | ||
| 81 | struct ceph_pagelist *pagelist; /* instead of pages */ | ||
| 86 | #ifdef CONFIG_BLOCK | 82 | #ifdef CONFIG_BLOCK |
| 83 | unsigned int bio_seg; /* current bio segment */ | ||
| 87 | struct bio *bio; /* instead of pages/pagelist */ | 84 | struct bio *bio; /* instead of pages/pagelist */ |
| 88 | struct bio *bio_iter; /* bio iterator */ | 85 | struct bio *bio_iter; /* bio iterator */ |
| 89 | unsigned int bio_seg; /* current bio segment */ | ||
| 90 | #endif /* CONFIG_BLOCK */ | 86 | #endif /* CONFIG_BLOCK */ |
| 91 | struct ceph_pagelist *trail; /* the trailing part of the data */ | 87 | struct ceph_pagelist *trail; /* the trailing part of the data */ |
| 88 | |||
| 89 | struct ceph_connection *con; | ||
| 90 | struct list_head list_head; /* links for connection lists */ | ||
| 91 | |||
| 92 | struct kref kref; | ||
| 92 | bool front_is_vmalloc; | 93 | bool front_is_vmalloc; |
| 93 | bool more_to_follow; | 94 | bool more_to_follow; |
| 94 | bool needs_out_seq; | 95 | bool needs_out_seq; |
| @@ -218,6 +219,9 @@ extern void ceph_msg_revoke_incoming(struct ceph_msg *msg); | |||
| 218 | 219 | ||
| 219 | extern void ceph_con_keepalive(struct ceph_connection *con); | 220 | extern void ceph_con_keepalive(struct ceph_connection *con); |
| 220 | 221 | ||
| 222 | extern void ceph_msg_data_set_pages(struct ceph_msg *msg, struct page **pages, | ||
| 223 | unsigned int page_count, size_t alignment); | ||
| 224 | |||
| 221 | extern struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags, | 225 | extern struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags, |
| 222 | bool can_fail); | 226 | bool can_fail); |
| 223 | extern void ceph_msg_kfree(struct ceph_msg *m); | 227 | extern void ceph_msg_kfree(struct ceph_msg *m); |
