]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
memory tier: use helper function destroy_memory_type()
authorMiaohe Lin <linmiaohe@huawei.com>
Mon, 26 Jun 2023 12:10:53 +0000 (20:10 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 18 Aug 2023 17:12:06 +0000 (10:12 -0700)
Use helper function destroy_memory_type() to release memtype instead of
open code it to help improve code readability a bit.  No functional change
intended.

Link: https://lkml.kernel.org/r/20230626121053.1916447-1-linmiaohe@huawei.com
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Cc: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Cc: "Huang, Ying" <ying.huang@intel.com>
Cc: Wei Xu <weixugc@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/memory-tiers.c

index a516e303e3043511fe7c96b013c5acdb0f695ca6..1719fa3bcf0244724a0894702304e698b9c3ab42 100644 (file)
@@ -586,7 +586,7 @@ void clear_node_memory_type(int node, struct memory_dev_type *memtype)
         */
        if (!node_memory_types[node].map_count) {
                node_memory_types[node].memtype = NULL;
-               kref_put(&memtype->kref, release_memtype);
+               destroy_memory_type(memtype);
        }
        mutex_unlock(&memory_tier_lock);
 }