NdisAdjustBufferLength (Windows Embedded CE 6.0)

1/6/2010

This function modifies the length specified in a buffer descriptor allocated or copied by the caller.

Syntax

VOID NdisAdjustBufferLength(
  PNDIS_BUFFER Buffer,
  UINT Length
);

Parameters

  • Buffer
    [in] Pointer to the buffer descriptor previously allocated with the NdisAllocateBuffer function.
  • Length
    [in] Specifies the new length, in bytes, to be set in the buffer descriptor.

Return Value

None.

Remarks

The caller of this function can pass only a buffer descriptor that was allocated by the caller. It cannot pass a buffer descriptor that was allocated by another driver.

For example, the driver of a bus master DMA NIC calls this function with buffer descriptors that it allocated to specify receive buffers in its shared memory block. Before such a driver indicates received data, it calls this function to make the buffer descriptor that it includes in the receive indication match the size of the received data if it is less than the size of the NIC receive buffer. When a receive packet with such an adjusted buffer descriptor has been consumed and returned to the miniport, the driver again calls this function to make the buffer descriptor match the actual size of its receive buffer again.

The Length parameter passed to this function cannot be larger than the Length that was passed to the NdisAllocateBuffer function when the buffer descriptor was allocated.

The caller of this function must restore the length to its original value before it frees the buffer descriptor with the NdisFreeBuffer function.

The driver must release any spin lock that it is currently holding before calling this function.

Requirements

Header ndis.h
Library ndis.lib
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

NDIS Library Functions
NdisAllocateBuffer
NdisFreeBuffer
NdisReleaseSpinLock