xnvme_buf

Enums

Structs

Functions

xnvme_buf_alloc

void *xnvme_buf_alloc(const struct xnvme_dev *dev, size_t nbytes)

SPDX-FileCopyrightText: Samsung Electronics Co., Ltd.

SPDX-License-Identifier: BSD-3-Clause Allocate a buffer for IO with the given device

The buffer will be aligned to device geometry and DMA allocated if required by the backend for command payloads

Note

nbytes must be greater than zero and a multiple of minimal granularity

Note

De-allocate the buffer using xnvme_buf_free()

Parameters:
  • dev – Device handle obtained with xnvme_dev_open()

  • nbytes – The size of the allocated buffer in bytes

Returns:

On success, a pointer to the allocated memory is returned. On error, NULL is returned and errno set to indicate the error.

xnvme_buf_clear

void *xnvme_buf_clear(void *buf, size_t nbytes)

Write zeroes to the first ‘nbytes’ of ‘buf’.

Parameters:
  • buf – Pointer to the buffer to fill with zeroes

  • nbytes – Amount of bytes to fill with zeroes in buf

Returns:

Returns the first argument.

xnvme_buf_diff

size_t xnvme_buf_diff(const void *expected, const void *actual, size_t nbytes)

Returns the number of bytes where expected is different from actual.

Parameters:
  • expected – Pointer to buffer of “expected” content

  • actual – Pointer to buffer to compare to “expected”

  • nbytes – Amount of bytes to compare

Returns:

On success, returns number of bytes that differ

xnvme_buf_diff_pr

void xnvme_buf_diff_pr(const void *expected, const void *actual, size_t nbytes, int opts)

Prints the number and value of bytes where expected is different from actual.

Parameters:
  • expected – Pointer to buffer of “expected” content

  • actual – Pointer to buffer to compare to “expected”

  • nbytes – Amount of bytes to compare

  • opts – printer options, see xnvme_pr

xnvme_buf_fill

int xnvme_buf_fill(void *buf, size_t nbytes, const char *content)

Fills buf with content nbytes of content.

Parameters:
  • buf – Pointer to the buffer to fill

  • content – Name of a file, or special “zero”, “anum”, “rand-k”, “rand-t”

  • nbytes – Amount of bytes to fill in buf

Returns:

On success, 0 is returned. On error, negative errno is returned.

xnvme_buf_free

void xnvme_buf_free(const struct xnvme_dev *dev, void *buf)

Free the given IO buffer allocated with xnvme_buf_alloc()

Parameters:

xnvme_buf_from_file

int xnvme_buf_from_file(void *buf, size_t nbytes, const char *path)

Read content of file into buffer.

Parameters:
  • buf – Pointer to the buffer

  • nbytes – Size of buf

  • path – Source to read from

Returns:

On success, 0 is returned. On error, negative errno is returned.

xnvme_buf_phys_alloc

void *xnvme_buf_phys_alloc(const struct xnvme_dev *dev, size_t nbytes, uint64_t *phys)

Allocate a buffer of physical memory, aligned for IO with the given device.

Note

nbytes must be greater than zero and a multiple of minimal granularity

Note

De-allocate the buffer using xnvme_buf_phys_free()

Parameters:
  • dev – Device handle obtained with xnvme_dev_open()

  • nbytes – The size of the allocated buffer in bytes

  • phys – A pointer to the variable to hold the physical address of the allocated buffer. If NULL, the physical address is not returned.

Returns:

On success, a pointer to the allocated memory is returned. On error, NULL is returned and errno set to indicate the error.

xnvme_buf_phys_free

void xnvme_buf_phys_free(const struct xnvme_dev *dev, void *buf)

Free the given buffer of physical memory allocated with xnvme_buf_phys_alloc()

Parameters:

xnvme_buf_phys_realloc

void *xnvme_buf_phys_realloc(const struct xnvme_dev *dev, void *buf, size_t nbytes, uint64_t *phys)

Re-allocate a buffer of physical memory, aligned for IO with the given device.

Note

nbytes must be greater than zero and a multiple of minimal granularity

Note

De-allocate the buffer using xnvme_buf_phys_free()

Parameters:
  • dev – Device handle obtained with xnvme_dev_open()

  • buf – The buffer to reallocate

  • nbytes – The size of the allocated buffer in bytes

  • phys – A pointer to the variable to hold the physical address of the allocated buffer. If NULL, the physical address is not returned.

Returns:

On success, a pointer to the allocated memory is returned. On error, NULL is returned and errno set to indicate the error.

xnvme_buf_realloc

void *xnvme_buf_realloc(const struct xnvme_dev *dev, void *buf, size_t nbytes)

Reallocate a buffer for IO with the given device.

The buffer will be aligned to device geometry and DMA allocated if required by the backend for IO

Note

nbytes must be greater than zero and a multiple of minimal granularity

Note

De-allocate the buffer using xnvme_buf_free()

Parameters:
  • dev – Device handle obtained with xnvme_dev_open()

  • buf – The buffer to reallocate

  • nbytes – The size of the allocated buffer in bytes

Returns:

On success, a pointer to the allocated memory is returned. On error, NULL is returned and errno set to indicate the error.

xnvme_buf_to_file

int xnvme_buf_to_file(void *buf, size_t nbytes, const char *path)

Write content of buffer into file.

  • If file exists, then it is truncated / overwritten

  • If file does NOT exist, then it is created

  • When file is created, permissions are set to user WRITE + READ

Parameters:
  • buf – Pointer to the buffer

  • nbytes – Size of buf

  • path – Destination where buffer will be dumped to

Returns:

On success, 0 is returned. On error, negative errno is returned.

xnvme_buf_virt_alloc

void *xnvme_buf_virt_alloc(size_t alignment, size_t nbytes)

Allocate a buffer of virtual memory of the given alignment and nbytes

Note

You must use xnvme_buf_virt_free() to de-allocate the buffer

Parameters:
  • alignment – The alignment in bytes

  • nbytes – The size of the buffer in bytes

Returns:

On success, a pointer to the allocated memory is return. On error, NULL is returned and errno set to indicate the error

xnvme_buf_virt_free

void xnvme_buf_virt_free(void *buf)

Free the given virtual memory buffer.

Parameters:

xnvme_buf_vtophys

int xnvme_buf_vtophys(const struct xnvme_dev *dev, void *buf, uint64_t *phys)

Retrieve the physical address of the given buffer.

The intended use for this function is to provide the physical-address of a buffer-allocation allocated with xnvme_buf_phys_alloc() or xnvme_buf_alloc(), where the ‘phys’ argument was either not provided.

Parameters:
  • dev – Device handle obtained with xnvme_dev_open()

  • buf – Pointer to a buffer allocated with xnvme_buf_alloc()

  • phys – A pointer to the variable to hold the physical address of the given buffer.

Returns:

On success, 0 is returned. On error, negative errno is returned.