diff options
| -rw-r--r-- | net/ceph/messenger.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c index 05f357828a2f..e15a82ccc05f 100644 --- a/net/ceph/messenger.c +++ b/net/ceph/messenger.c | |||
| @@ -2267,6 +2267,19 @@ struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags) | |||
| 2267 | m->more_to_follow = false; | 2267 | m->more_to_follow = false; |
| 2268 | m->pool = NULL; | 2268 | m->pool = NULL; |
| 2269 | 2269 | ||
| 2270 | /* middle */ | ||
| 2271 | m->middle = NULL; | ||
| 2272 | |||
| 2273 | /* data */ | ||
| 2274 | m->nr_pages = 0; | ||
| 2275 | m->page_alignment = 0; | ||
| 2276 | m->pages = NULL; | ||
| 2277 | m->pagelist = NULL; | ||
| 2278 | m->bio = NULL; | ||
| 2279 | m->bio_iter = NULL; | ||
| 2280 | m->bio_seg = 0; | ||
| 2281 | m->trail = NULL; | ||
| 2282 | |||
| 2270 | /* front */ | 2283 | /* front */ |
| 2271 | if (front_len) { | 2284 | if (front_len) { |
| 2272 | if (front_len > PAGE_CACHE_SIZE) { | 2285 | if (front_len > PAGE_CACHE_SIZE) { |
| @@ -2286,19 +2299,6 @@ struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags) | |||
| 2286 | } | 2299 | } |
| 2287 | m->front.iov_len = front_len; | 2300 | m->front.iov_len = front_len; |
| 2288 | 2301 | ||
| 2289 | /* middle */ | ||
| 2290 | m->middle = NULL; | ||
| 2291 | |||
| 2292 | /* data */ | ||
| 2293 | m->nr_pages = 0; | ||
| 2294 | m->page_alignment = 0; | ||
| 2295 | m->pages = NULL; | ||
| 2296 | m->pagelist = NULL; | ||
| 2297 | m->bio = NULL; | ||
| 2298 | m->bio_iter = NULL; | ||
| 2299 | m->bio_seg = 0; | ||
| 2300 | m->trail = NULL; | ||
| 2301 | |||
| 2302 | dout("ceph_msg_new %p front %d\n", m, front_len); | 2302 | dout("ceph_msg_new %p front %d\n", m, front_len); |
| 2303 | return m; | 2303 | return m; |
| 2304 | 2304 | ||
