* [PATCH] libceph: initialize data fields on last msg put
@ 2013-03-25 16:56 Alex Elder
2013-03-29 18:28 ` Josh Durgin
0 siblings, 1 reply; 2+ messages in thread
From: Alex Elder @ 2013-03-25 16:56 UTC (permalink / raw)
To: ceph-devel
(This patch is available in branch "review/wip-4540" of the
ceph-client git repository, which is based on the current
"testing" branch.)
When the last reference to a ceph message is dropped,
ceph_msg_last_put() is called to clean things up. For "normal"
messages (allocated via ceph_msg_new() rather than being allocated
from a memory pool) it's sufficient to just release resources. But
for a mempool-allocated message we actually have to re-initialize
the data fields in the message back to initial state so they're
ready to go in the event the message gets reused.
Some of this was already done; this fleshes it out so it's done
more completely.
This resolves:
http://tracker.ceph.com/issues/4540
Signed-off-by: Alex Elder <elder@inktank.com>
---
net/ceph/messenger.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c
index 997dacc..2ccbd189 100644
--- a/net/ceph/messenger.c
+++ b/net/ceph/messenger.c
@@ -3299,12 +3299,17 @@ void ceph_msg_last_put(struct kref *kref)
if (ceph_msg_has_pages(m)) {
m->p.length = 0;
m->p.pages = NULL;
+ m->p.type = CEPH_OSD_DATA_TYPE_NONE;
}
-
if (ceph_msg_has_pagelist(m)) {
ceph_pagelist_release(m->l.pagelist);
kfree(m->l.pagelist);
m->l.pagelist = NULL;
+ m->l.type = CEPH_OSD_DATA_TYPE_NONE;
+ }
+ if (ceph_msg_has_bio(m)) {
+ m->b.bio = NULL;
+ m->b.type = CEPH_OSD_DATA_TYPE_NONE;
}
if (m->pool)
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] libceph: initialize data fields on last msg put
2013-03-25 16:56 [PATCH] libceph: initialize data fields on last msg put Alex Elder
@ 2013-03-29 18:28 ` Josh Durgin
0 siblings, 0 replies; 2+ messages in thread
From: Josh Durgin @ 2013-03-29 18:28 UTC (permalink / raw)
To: Alex Elder; +Cc: ceph-devel
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
On 03/25/2013 09:56 AM, Alex Elder wrote:
> (This patch is available in branch "review/wip-4540" of the
> ceph-client git repository, which is based on the current
> "testing" branch.)
>
> When the last reference to a ceph message is dropped,
> ceph_msg_last_put() is called to clean things up. For "normal"
> messages (allocated via ceph_msg_new() rather than being allocated
> from a memory pool) it's sufficient to just release resources. But
> for a mempool-allocated message we actually have to re-initialize
> the data fields in the message back to initial state so they're
> ready to go in the event the message gets reused.
>
> Some of this was already done; this fleshes it out so it's done
> more completely.
>
> This resolves:
> http://tracker.ceph.com/issues/4540
>
> Signed-off-by: Alex Elder <elder@inktank.com>
> ---
> net/ceph/messenger.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c
> index 997dacc..2ccbd189 100644
> --- a/net/ceph/messenger.c
> +++ b/net/ceph/messenger.c
> @@ -3299,12 +3299,17 @@ void ceph_msg_last_put(struct kref *kref)
> if (ceph_msg_has_pages(m)) {
> m->p.length = 0;
> m->p.pages = NULL;
> + m->p.type = CEPH_OSD_DATA_TYPE_NONE;
> }
> -
> if (ceph_msg_has_pagelist(m)) {
> ceph_pagelist_release(m->l.pagelist);
> kfree(m->l.pagelist);
> m->l.pagelist = NULL;
> + m->l.type = CEPH_OSD_DATA_TYPE_NONE;
> + }
> + if (ceph_msg_has_bio(m)) {
> + m->b.bio = NULL;
> + m->b.type = CEPH_OSD_DATA_TYPE_NONE;
> }
>
> if (m->pool)
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-03-29 18:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-25 16:56 [PATCH] libceph: initialize data fields on last msg put Alex Elder
2013-03-29 18:28 ` Josh Durgin
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.