Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\locking\lockdep.c Create Date:2022-07-28 09:50:38
Last Modify:2020-03-17 14:16:01 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:lockdep_init

Proto:void __init lockdep_init(void)

Type:void

Parameter:Nothing

5204  printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n")
5206  printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES)
5207  printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH)
5208  printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS)
5209  printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE)
5210  printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES)
5211  printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS)
5212  printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE)
5214  printk(" memory used by lock dependency info: %zu kB\n", ( size of lock_classes + size of lock_classes_in_use + size of classhash_table + size of list_entries + size of list_entries_in_use + size of chainhash_table + size of struct delayed_free - data structures used for delayed freeing* A data structure for delayed freeing of data structures that may be* accessed by RCU readers at the time these were freed. ) / 1024)
5237  printk(" per task-struct memory footprint: %zu bytes\n", size of held_locks )
Caller
NameDescribe
start_kernel