From: José Antonio Santos-Cadenas <santoscadenas@xxxxxxxxx> MCAP should free memory in cached MCL list if an unref operation happens over a cached MCL and only MCAP has a local copy of it. MCL is removed from cached list and memory resources are freed. --- mcap/mcap.c | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/mcap/mcap.c b/mcap/mcap.c index a32511e..43b215b 100644 --- a/mcap/mcap.c +++ b/mcap/mcap.c @@ -779,6 +779,15 @@ void mcap_mcl_unref(struct mcap_mcl *mcl) DBG("mcap_mcl_unref(%p): ref=%d", mcl, mcl->ref); + if ((mcl->ctrl & MCAP_CTRL_CACHED) && (mcl->ref < 2)) { + /* Free space in cache memory due any other profile has a local + * copy of current MCL stored in cache */ + DBG("Remove from cache (%p): ref=%d", mcl, mcl->ref); + mcl->ms->cached = g_slist_remove(mcl->ms->cached, mcl); + mcap_mcl_release(mcl); + return; + } + if (mcl->ref > 0) return; -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html