spdk_ioviter_next will walk through two iovecs and yield pointers to common length segments. For example, given a source iovec (siov) with 4 1KiB elements and a destination iovec (diov) with 1 4KiB element, the following will happen: first spdk_ioviter_next: src = siov[0].iov_base dst = diov[0].iov_base len = 1KiB second spdk_ioviter_next: src = siov[1].iov_base dst = diov[0].iov_base + 1KiB len = 1KiB third spdk_ioviter_next: src = siov[2].iov_base dst = diov[0].iov_base + 2KiB len = 1KiB fourth spdk_ioviter_next: src = siov[3].iov_base dst = diov[0].iov_base + 3KiB len = 1KiB fifth spdk_ioviter_next: len = 0 This is a useful utility for performing operations where both the source and destination are scattered memory. As an example and a test vehicle, spdk_iovcpy has been updated to use this internally. Change-Id: I7e35e76d38e78d07ea1caf6282d0dfc02182aa83 Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10284 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
49 lines
2.0 KiB
Makefile
49 lines
2.0 KiB
Makefile
#
|
|
# BSD LICENSE
|
|
#
|
|
# Copyright (c) Intel Corporation.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in
|
|
# the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# * Neither the name of Intel Corporation nor the names of its
|
|
# contributors may be used to endorse or promote products derived
|
|
# from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
SO_VER := 4
|
|
SO_MINOR := 1
|
|
|
|
C_SRCS = base64.c bit_array.c cpuset.c crc16.c crc32.c crc32c.c crc32_ieee.c \
|
|
dif.c fd.c file.c iov.c math.c pipe.c strerror_tls.c string.c uuid.c \
|
|
fd_group.c zipf.c
|
|
LIBNAME = util
|
|
LOCAL_SYS_LIBS = -luuid
|
|
|
|
SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_util.map)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|