函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\kernel\reboot_fixups_32.c Create Date:2022-07-27 09:34:47
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:we see if any fixup is available for our current hardware. if there* is a fixup, we call it and we expect to never return from it. if we* do return, we keep looking and then eventually fall back to the* standard mach_reboot on return.

函数原型:void mach_reboot_fixups(void)

返回类型:void

参数:

90  如果in_interrupt()则返回
93 i小于ARRAY_SIZE - get the number of elements in array @arr*@arr: array to be sized(fixups_table)循环
94  cur等于fixups_table[i]的地址
95  dev等于pci_get_device(vendor, device, NULL)
96  如果非dev则继续下一循环
99  reboot_fixup(dev)
100  pci_dev_put(dev)