Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\sbitmap.c Create Date:2022-07-28 07:22:47
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:sbitmap_show

Proto:void sbitmap_show(struct sbitmap *sb, struct seq_file *m)

Type:void

Parameter:

TypeParameterName
struct sbitmap *sb
struct seq_file *m
266  seq_printf(m, "depth=%u\n", @depth: Number of bits used in the whole bitmap.)
267  seq_printf(m, "busy=%u\n", sbitmap_weight(sb) - sbitmap_cleared(sb))
268  seq_printf(m, "cleared=%u\n", sbitmap_cleared(sb))
269  seq_printf(m, "bits_per_word=%u\n", 1U << @shift: log2(number of bits used per word))
270  seq_printf(m, "map_nr=%u\n", @map_nr: Number of words (cachelines) being used for the bitmap.)
Caller
NameDescribe
sbitmap_queue_show