mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-26 06:39:13 +00:00

Add a new module for common handling of Admin Queue related logic. Start by a helper for error to string conversion. This lives inside libie/, but is a separate module what follows our logic of splitting into topical modules, to avoid pulling in not needed stuff, and have better organization in general. Olek suggested how to better solve the error to string conversion. It will be used in follow-up patches in ice, i40e and iavf. Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Suggested-by: Alexander Lobakin <aleksander.lobakin@intel.com> Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
17 lines
442 B
Plaintext
17 lines
442 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2024 Intel Corporation
|
|
|
|
config LIBIE
|
|
tristate
|
|
select LIBETH
|
|
help
|
|
libie (Intel Ethernet library) is a common library built on top of
|
|
libeth and containing vendor-specific routines shared between several
|
|
Intel Ethernet drivers.
|
|
|
|
config LIBIE_ADMINQ
|
|
tristate
|
|
help
|
|
Helper functions used by Intel Ethernet drivers for administration
|
|
queue command interface (aka adminq).
|