slab ¤
Classes:
Functions:
-
caches
– -
get_cache
– -
slab_struct_type
– -
oo_order
– -
oo_objects
– -
get_flags_list
– -
find_containing_slab_cache
–Find the slab cache associated with the provided address.
Attributes:
Freelist ¤
SlabCache ¤
SlabCache(slab_cache: Value)
Attributes:
-
address
(int
) – -
name
(str
) – -
offset
(int
) – -
random
(int
) – -
size
(int
) – -
object_size
(int
) – -
align
(int
) – -
flags
(list[str]
) – -
cpu_cache
(CpuCache
) –returns cpu cache associated to current thread
-
cpu_caches
(Generator[CpuCache, None, None]
) –returns cpu caches for all cpus
-
node_caches
(Generator[NodeCache, None, None]
) –returns node caches for all NUMA nodes
-
cpu_partial
(int
) – -
inuse
(int
) – -
oo_order
– -
oo_objects
–
CpuCache ¤
Attributes:
-
slab_cache
– -
cpu
– -
address
(int
) – -
freelist
(Freelist
) – -
active_slab
(Slab | None
) – -
partial_slabs
(list[Slab]
) –
NodeCache ¤
Attributes:
-
slab_cache
– -
node
– -
address
(int
) – -
partial_slabs
(list[Slab]
) –
Slab ¤
Attributes:
-
cpu_cache
– -
slab_cache
– -
is_partial
– -
slab_address
(int
) – -
virt_address
(int
) – -
object_count
(int
) – -
objects
(Generator[int, None, None]
) – -
frozen
(int
) – -
inuse
(int
) – -
slabs
(int
) – -
pobjects
(int
) – -
freelist
(Freelist
) – -
freelists
(list[Freelist]
) – -
free_objects
(set[int]
) –