DeviceObjectName:\Device\Mup,DriverObjectName:\FileSystem\Mup

发布时间 2023-11-04 01:39:06作者: lydstory
[VD] VdFsNotification -> VdFsNotification:DeviceObject:FFFFFA80C2FA3E40, DeviceObjectName:\Device\Mup,DriverObjectName:\FileSystem\Mup
[VD] VdFsNotification -> VdFsNotification:DeviceObject:FFFFFA80C2F34380, DeviceObjectName:\FileSystem\FatCdRomRecognizer,DriverObjectName:\FileSystem\Fs_Rec
[VD] VdFsNotification -> VdFsNotification:DeviceObject:FFFFFA80C2F2E500, DeviceObjectName:\FileSystem\UdfsCdRomRecognizer,DriverObjectName:\FileSystem\Fs_Rec
[VD] VdFsNotification -> VdFsNotification:DeviceObject:FFFFFA80C23E5060, DeviceObjectName:\FileSystem\CdfsRecognizer,DriverObjectName:\FileSystem\Fs_Rec
[VD] VdFsNotification -> VdFsNotification:DeviceObject:FFFFFA80C2F34150, DeviceObjectName:\FileSystem\ExFatRecognizer,DriverObjectName:\FileSystem\Fs_Rec
[VD] VdFsNotification -> VdFsNotification:DeviceObject:FFFFFA80C2F345B0, DeviceObjectName:\FileSystem\FatDiskRecognizer,DriverObjectName:\FileSystem\Fs_Rec
[VD] VdFsNotification -> VdFsNotification:DeviceObject:FFFFFA80C2F2AE30, DeviceObjectName:\FileSystem\UdfsDiskRecognizer,DriverObjectName:\FileSystem\Fs_Rec
[VD] VdFsNotification -> VdFsNotification:DeviceObject:FFFFFA80C2EF2790, DeviceObjectName:\Ntfs,DriverObjectName:\FileSystem\Ntfs

  

根据给出的调试信息,可以看出这段代码是 VdFsNotification 的调试信息输出。

在每一条调试信息中,参与输出的信息有以下几个部分:

  • VdFsNotification -> VdFsNotification:表示该调试信息是由 VdFsNotification 函数输出的。
  • DeviceObject:表示设备对象的地址。
  • DeviceObjectName:表示设备对象的名称。
  • DriverObjectName:表示驱动对象的名称。

通过分析这些调试信息,我们可以得到以下一些信息:

  • 针对不同的文件系统和识别器(Recognizer),VdFsNotification 函数被调用多次。
  • 每次调用时,传递的 DeviceObjectDeviceObjectName 和 DriverObjectName 都不同。
  • DeviceObjectName 包括了文件系统的类型(例如:\FileSystem\Mup、\FileSystem\FatCdRomRecognizer、\FileSystem\UdfsCdRomRecognizer)和驱动程序的名称(例如:\FileSystem\Fs_Rec、\FileSystem\Ntfs)。
  • 最后一条调试信息中的 VdFsNotification:DeviceObjectName:\Ntfs,DriverObjectName:\FileSystem\Ntfs 表示该调试信息对应的设备对象是一个 NTFS 文件系统的设备。

需要了解更多关于这段代码的细节和功能,可以继续查看 VdFsNotification 函数的实现和相应的调用关系。

已唠叨完了 2023-11-04 01:28:17