The new design: * Supports a generic batching capability in the accel_fw layer that keeps track of hw accelerated vs sw commands based on the capabilities of the engine and processes sw commands in the generic layer while sending a list of commands (not a batch) to the engines for processing. * Batch completions are managed via the generic layer, when using the accel_fw the engines only process commands. With DSA however, if a list of commands is sent down it will use the DSA public API to create and send batches but will rely on the generic layer to complete the batch task itself. When using DSA directly, batching works as usual (DSA handles batch completion). * The engine function tables were greatly simplified by replacing all of the individual entries (copy, fill, crc32c, etc) with one `submit_tasks` function that is used to both send lists of tasks for batches or just one task for single shot API. * Internally batching is now used to re-submit tasks that were queued for flow control reasons. Signed-off-by: paul luse <paul.e.luse@intel.com> Change-Id: I99c28751df32017c43490a90f4904bdabe79a270 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/3555 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Community-CI: Mellanox Build Bot
167 lines
5.7 KiB
Makefile
167 lines
5.7 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.
|
|
#
|
|
|
|
# A quick note on organization:
|
|
#
|
|
# Each grouping is independent from itself. it depends only on libraries
|
|
# in the grouping above it. All dependencies are listed alphabetically within
|
|
# groups. The only exception to this is the JSON_LIBS grouping which is a special
|
|
# case since they almost always occur together.
|
|
|
|
JSON_LIBS := json jsonrpc rpc
|
|
|
|
DEPDIRS-env_ocf :=
|
|
DEPDIRS-log :=
|
|
DEPDIRS-rte_vhost :=
|
|
|
|
DEPDIRS-ioat := log
|
|
DEPDIRS-idxd := log util
|
|
DEPDIRS-sock := log $(JSON_LIBS)
|
|
DEPDIRS-util := log
|
|
DEPDIRS-vmd := log
|
|
|
|
DEPDIRS-conf := log util
|
|
DEPDIRS-json := log util
|
|
DEPDIRS-rdma := log util
|
|
DEPDIRS-reduce := log util
|
|
DEPDIRS-thread := log util
|
|
|
|
DEPDIRS-nvme := log sock util
|
|
ifeq ($(CONFIG_RDMA),y)
|
|
DEPDIRS-nvme += rdma
|
|
endif
|
|
|
|
DEPDIRS-blob := log util thread
|
|
DEPDIRS-accel := log util thread json
|
|
DEPDIRS-jsonrpc := log util json
|
|
DEPDIRS-virtio := log util json thread
|
|
|
|
DEPDIRS-lvol := log util blob
|
|
DEPDIRS-rpc := log util json jsonrpc
|
|
|
|
DEPDIRS-net := log util $(JSON_LIBS)
|
|
DEPDIRS-notify := log util $(JSON_LIBS)
|
|
DEPDIRS-trace := log util $(JSON_LIBS)
|
|
|
|
DEPDIRS-bdev := log util thread $(JSON_LIBS) notify trace
|
|
DEPDIRS-blobfs := log thread blob trace
|
|
DEPDIRS-event := log util thread $(JSON_LIBS) trace
|
|
|
|
DEPDIRS-ftl := log util thread trace bdev
|
|
DEPDIRS-nbd := log util thread $(JSON_LIBS) bdev
|
|
DEPDIRS-nvmf := log sock util nvme thread $(JSON_LIBS) trace bdev
|
|
ifeq ($(CONFIG_RDMA),y)
|
|
DEPDIRS-nvmf += rdma
|
|
endif
|
|
DEPDIRS-scsi := log util thread $(JSON_LIBS) trace bdev
|
|
|
|
DEPDIRS-iscsi := log sock util conf thread $(JSON_LIBS) trace scsi
|
|
DEPDIRS-vhost = log util thread $(JSON_LIBS) bdev scsi
|
|
|
|
# ------------------------------------------------------------------------
|
|
# Start module/ directory - This section extends the organizational pattern from
|
|
# above. However, it introduces several more groupings which may not strictly follow
|
|
# the ordering pattern above. These are used for convenience and to help quickly
|
|
# determine the unique dependencies of a given module. It is also grouped by directory.
|
|
|
|
BDEV_DEPS = log util $(JSON_LIBS) bdev
|
|
BDEV_DEPS_THREAD = $(BDEV_DEPS) thread
|
|
|
|
# module/blob
|
|
DEPDIRS-blob_bdev := log thread bdev
|
|
|
|
# module/blobfs
|
|
DEPDIRS-blobfs_bdev := $(BDEV_DEPS_THREAD) blob_bdev blobfs
|
|
ifeq ($(CONFIG_FUSE),y)
|
|
DEPDIRS-blobfs_bdev += event
|
|
endif
|
|
|
|
# module/accel
|
|
DEPDIRS-accel_ioat := log ioat thread $(JSON_LIBS) accel
|
|
DEPDIRS-accel_idxd := log idxd thread $(JSON_LIBS) accel
|
|
|
|
# module/env_dpdk
|
|
DEPDIRS-env_dpdk_rpc := log $(JSON_LIBS)
|
|
|
|
# module/sock
|
|
DEPDIRS-sock_posix := log sock util
|
|
DEPDIRS-sock_uring := log sock util
|
|
|
|
# module/bdev
|
|
DEPDIRS-bdev_gpt := bdev json log thread util
|
|
|
|
DEPDIRS-bdev_error := $(BDEV_DEPS)
|
|
DEPDIRS-bdev_lvol := $(BDEV_DEPS) lvol blob blob_bdev
|
|
DEPDIRS-bdev_malloc := $(BDEV_DEPS) accel
|
|
DEPDIRS-bdev_rpc := $(BDEV_DEPS)
|
|
DEPDIRS-bdev_split := $(BDEV_DEPS)
|
|
|
|
DEPDIRS-bdev_aio := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_compress := $(BDEV_DEPS_THREAD) reduce
|
|
DEPDIRS-bdev_crypto := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_delay := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_iscsi := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_null := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_nvme = $(BDEV_DEPS_THREAD) nvme
|
|
DEPDIRS-bdev_ocf := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_passthru := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_pmem := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_raid := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_rbd := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_uring := $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-bdev_virtio := $(BDEV_DEPS_THREAD) virtio
|
|
DEPDIRS-bdev_zone_block := $(BDEV_DEPS_THREAD)
|
|
ifeq ($(OS),Linux)
|
|
DEPDIRS-bdev_ftl := $(BDEV_DEPS_THREAD) ftl
|
|
endif
|
|
|
|
# module/event
|
|
|
|
# module/event/subsystems
|
|
# These depdirs include subsystem interdependencies which
|
|
# are not related to symbols, but are defined directly in
|
|
# the SPDK event subsystem code.
|
|
DEPDIRS-event_accel := event accel
|
|
DEPDIRS-event_net := event net
|
|
DEPDIRS-event_vmd := event vmd $(JSON_LIBS) log thread
|
|
|
|
DEPDIRS-event_bdev := event bdev event_accel event_vmd event_sock
|
|
|
|
DEPDIRS-event_nbd := event nbd event_bdev
|
|
DEPDIRS-event_nvmf := event nvmf event_bdev event_sock $(BDEV_DEPS_THREAD)
|
|
DEPDIRS-event_scsi := event scsi event_bdev
|
|
|
|
DEPDIRS-event_iscsi := event iscsi event_scsi event_sock
|
|
DEPDIRS-event_vhost := event vhost event_scsi
|
|
DEPDIRS-event_sock := event sock
|