IoFreeErrorLogEntry - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

VOID IoFreeErrorLogEntry(
  [in] PVOID ElEntry
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-iofreeerrorlogentry)

IoFreeErrorLogEntry function

Description

The IoFreeErrorLogEntry routine frees an unused error log entry.

Parameters

ElEntry [in]

Pointer to an error log packet allocated by IoAllocateErrorLogEntry.

Remarks

Drivers use IoFreeErrorLogEntry to free an error log entry allocated by IoAllocateErrorLogEntry. IoWriteErrorLogEntry also frees any error log entries passed to it, so drivers must not call both on the same log entry.

See also

IO_ERROR_LOG_PACKET

IoAllocateErrorLogEntry

IoWriteErrorLogEntry