Documentation: assoc_array: Format internal tree layout tables
Format tables in "Basic internal tree layout" as reST tables. Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Tested-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Message-ID: <20251013095630.34235-4-bagasdotme@gmail.com>pull/1354/merge
parent
54ff675c2b
commit
22605d257b
|
|
@ -317,8 +317,7 @@ There are two functions for accessing an associative array:
|
||||||
modified, provided the RCU read lock is held.
|
modified, provided the RCU read lock is held.
|
||||||
|
|
||||||
The function will return the object if found (and set ``*_type`` to the
|
The function will return the object if found (and set ``*_type`` to the
|
||||||
object
|
object type) or will return ``NULL`` if the object was not found.
|
||||||
type) or will return ``NULL`` if the object was not found.
|
|
||||||
|
|
||||||
|
|
||||||
Index Key Form
|
Index Key Form
|
||||||
|
|
@ -400,10 +399,11 @@ fixed levels. For example::
|
||||||
|
|
||||||
In the above example, there are 7 nodes (A-G), each with 16 slots (0-f).
|
In the above example, there are 7 nodes (A-G), each with 16 slots (0-f).
|
||||||
Assuming no other meta data nodes in the tree, the key space is divided
|
Assuming no other meta data nodes in the tree, the key space is divided
|
||||||
thusly::
|
thusly:
|
||||||
|
|
||||||
|
=========== ====
|
||||||
KEY PREFIX NODE
|
KEY PREFIX NODE
|
||||||
========== ====
|
=========== ====
|
||||||
137* D
|
137* D
|
||||||
138* E
|
138* E
|
||||||
13[0-69-f]* C
|
13[0-69-f]* C
|
||||||
|
|
@ -411,10 +411,12 @@ thusly::
|
||||||
e6* G
|
e6* G
|
||||||
e[0-57-f]* F
|
e[0-57-f]* F
|
||||||
[02-df]* A
|
[02-df]* A
|
||||||
|
=========== ====
|
||||||
|
|
||||||
So, for instance, keys with the following example index keys will be found in
|
So, for instance, keys with the following example index keys will be found in
|
||||||
the appropriate nodes::
|
the appropriate nodes:
|
||||||
|
|
||||||
|
=============== ======= ====
|
||||||
INDEX KEY PREFIX NODE
|
INDEX KEY PREFIX NODE
|
||||||
=============== ======= ====
|
=============== ======= ====
|
||||||
13694892892489 13 C
|
13694892892489 13 C
|
||||||
|
|
@ -423,12 +425,13 @@ the appropriate nodes::
|
||||||
138bbb89003093 138 E
|
138bbb89003093 138 E
|
||||||
1394879524789 12 C
|
1394879524789 12 C
|
||||||
1458952489 1 B
|
1458952489 1 B
|
||||||
9431809de993ba - A
|
9431809de993ba \- A
|
||||||
b4542910809cd - A
|
b4542910809cd \- A
|
||||||
e5284310def98 e F
|
e5284310def98 e F
|
||||||
e68428974237 e6 G
|
e68428974237 e6 G
|
||||||
e7fffcbd443 e F
|
e7fffcbd443 e F
|
||||||
f3842239082 - A
|
f3842239082 \- A
|
||||||
|
=============== ======= ====
|
||||||
|
|
||||||
To save memory, if a node can hold all the leaves in its portion of keyspace,
|
To save memory, if a node can hold all the leaves in its portion of keyspace,
|
||||||
then the node will have all those leaves in it and will not have any metadata
|
then the node will have all those leaves in it and will not have any metadata
|
||||||
|
|
@ -442,8 +445,9 @@ metadata pointer. If the metadata pointer is there, any leaf whose key matches
|
||||||
the metadata key prefix must be in the subtree that the metadata pointer points
|
the metadata key prefix must be in the subtree that the metadata pointer points
|
||||||
to.
|
to.
|
||||||
|
|
||||||
In the above example list of index keys, node A will contain::
|
In the above example list of index keys, node A will contain:
|
||||||
|
|
||||||
|
==== =============== ==================
|
||||||
SLOT CONTENT INDEX KEY (PREFIX)
|
SLOT CONTENT INDEX KEY (PREFIX)
|
||||||
==== =============== ==================
|
==== =============== ==================
|
||||||
1 PTR TO NODE B 1*
|
1 PTR TO NODE B 1*
|
||||||
|
|
@ -451,11 +455,16 @@ In the above example list of index keys, node A will contain::
|
||||||
any LEAF b4542910809cd
|
any LEAF b4542910809cd
|
||||||
e PTR TO NODE F e*
|
e PTR TO NODE F e*
|
||||||
any LEAF f3842239082
|
any LEAF f3842239082
|
||||||
|
==== =============== ==================
|
||||||
|
|
||||||
and node B::
|
and node B:
|
||||||
|
|
||||||
3 PTR TO NODE C 13*
|
==== =============== ==================
|
||||||
any LEAF 1458952489
|
SLOT CONTENT INDEX KEY (PREFIX)
|
||||||
|
==== =============== ==================
|
||||||
|
3 PTR TO NODE C 13*
|
||||||
|
any LEAF 1458952489
|
||||||
|
==== =============== ==================
|
||||||
|
|
||||||
|
|
||||||
Shortcuts
|
Shortcuts
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue