From ade14609fd0022aa9a0cd1b3c7b659a524e2c80e Mon Sep 17 00:00:00 2001 From: "Liam R. Howlett" Date: Mon, 28 Feb 2022 20:55:31 -0500 Subject: [PATCH] maple_tree: Fix header doc on metadata Signed-off-by: Liam R. Howlett --- include/linux/maple_tree.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/include/linux/maple_tree.h b/include/linux/maple_tree.h index 9737e5ca9d26a..98a1181ce1904 100644 --- a/include/linux/maple_tree.h +++ b/include/linux/maple_tree.h @@ -75,15 +75,9 @@ typedef struct maple_enode *maple_enode; /* encoded node */ typedef struct maple_pnode *maple_pnode; /* parent node */ - /* - * The node->meta is currently only supported in allocation range 64 (arange_64) - * node type. As a result of tracking gaps, there is a small area that is not - * used for data storage in this node type. This area is reused to store - * metadata related to the node itself including the data end and the largest - * gap location. This metadata is used to optimize the gap updating code and in - * reverse searching for gaps or any other code that needs to find the end of - * the data. + * This metadata is used to optimize the gap updating code and in reverse + * searching for gaps or any other code that needs to find the end of the data. */ struct maple_metadata { unsigned char end; -- 2.50.1