355312bf | 26-Jan-2024 |
Tomasz Zawadzki <tomasz.zawadzki@intel.com> |
so_ver: increase all major versions after SPDK 24.01
To allow SO_MINOR updates on LTS for the whole year it is supported, the major version for all components needs to be increased. This is to preve
so_ver: increase all major versions after SPDK 24.01
To allow SO_MINOR updates on LTS for the whole year it is supported, the major version for all components needs to be increased. This is to prevent scenario where two versions exists with matching versions, but conflicting ABI. Ex. Next SPDK release adds an API call increasing the minor version, then LTS needs just a subset of those additions.
Increasing major so version after LTS, allows the future releases to update versions as needed. Yet allowing LTS to increase minor version separately.
This patch: - increases SO_VER by 1 for all components - resets SO_MINOR to 0 for all components
Due to patch below being introduced after v24.01 code freeze, bdev lib version should not be increased: 61623c5ca9 bdev: add spdk_bdev_io padding in place of io_submit_ch
Short reference to how the versions were changed: MAX=$(git grep "SO_VER := " | cut -d" " -f 3 | sort -ubnr | head -1) for((i=$MAX;i>0;i-=1)); do find . -name "Makefile" -exec \ sed -i -e "s/SO_VER := $i\$/SO_VER := $(($i+1))/g" {} +; done find . -name "Makefile" -exec \ sed -i -e "s/SO_MINOR := .*/SO_MINOR := 0/g" {} +
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: I0166d6be6c17bbbf985d48b5dfcb36f1d4af1b48 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/21582 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
3359bf34 | 23-Jan-2023 |
Tomasz Zawadzki <tomasz.zawadzki@intel.com> |
so_ver: increase all major versions
To allow SO_MINOR updates on LTS for the whole year it is supported, the major version for all components needs to be increased. This is to prevent scenario where
so_ver: increase all major versions
To allow SO_MINOR updates on LTS for the whole year it is supported, the major version for all components needs to be increased. This is to prevent scenario where two versions exists with matching versions, but conflicting ABI. Ex. Next SPDK release adds an API call increasing the minor version, then LTS needs just a subset of those additions.
Increasing major so version after LTS, allows the future releases to update versions as needed. Yet allowing LTS to increase minor version separately.
Disabled test for increasing SO version without ABI change, as that is goal of this patch. This check shall be removed with SPDK 23.05 release. Looks like this was left over from prior LTS, to avoid that make sure it is only skipped when running against v23.01.x as latest release.
This patch: - increases SO_VER by 1 for all components - resets SO_MINOR to 0 for all components - removes suppressions for ABI tests
Short reference to how the versions were changed: MAX=$(git grep "SO_VER := " | cut -d" " -f 3 | sort -ubnr | head -1) for((i=$MAX;i>0;i-=1)); do find . -name "Makefile" -exec \ sed -i -e "s/SO_VER := $i\$/SO_VER := $(($i+1))/g" {} +; done find . -name "Makefile" -exec \ sed -i -e "s/SO_MINOR := .*/SO_MINOR := 0/g" {} +
Change-Id: I3e5681802c0a5ac6d7d652a18896997cd07cc8bf Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16419 Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
a6dbe372 | 01-Nov-2022 |
paul luse <paul.e.luse@intel.com> |
update Intel copyright notices
per Intel policy to include file commit date using git cmd below. The policy does not apply to non-Intel (C) notices.
git log --follow -C90% --format=%ad --date defa
update Intel copyright notices
per Intel policy to include file commit date using git cmd below. The policy does not apply to non-Intel (C) notices.
git log --follow -C90% --format=%ad --date default <file> | tail -1
and then pull just the 4 digit year from the result.
Intel copyrights were not added to files where Intel either had no contribution ot the contribution lacked substance (ie license header updates, formatting changes, etc). Contribution date used "--follow -C95%" to get the most accurate date.
Note that several files in this patch didn't end the license/(c) block with a blank comment line so these were added as the vast majority of files do have this last blank line. Simply there for consistency.
Signed-off-by: paul luse <paul.e.luse@intel.com> Change-Id: Id5b7ce4f658fe87132f14139ead58d6e285c04d4 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15192 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
488570eb | 03-Jun-2022 |
Jim Harris <james.r.harris@intel.com> |
Replace most BSD 3-clause license text with SPDX identifier.
Many open source projects have moved to using SPDX identifiers to specify license information, reducing the amount of boilerplate code in
Replace most BSD 3-clause license text with SPDX identifier.
Many open source projects have moved to using SPDX identifiers to specify license information, reducing the amount of boilerplate code in every source file. This patch replaces the bulk of SPDK .c, .cpp and Makefiles with the BSD-3-Clause identifier.
Almost all of these files share the exact same license text, and this patch only modifies the files that contain the most common license text. There can be slight variations because the third clause contains company names - most say "Intel Corporation", but there are instances for Nvidia, Samsung, Eideticom and even "the copyright holder".
Used a bash script to automate replacement of the license text with SPDX identifier which is checked into scripts/spdx.sh.
Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: Iaa88ab5e92ea471691dc298cfe41ebfb5d169780 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/12904 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Dong Yi <dongx.yi@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: <qun.wan@intel.com>
show more ...
|
047c067c | 31-Jan-2022 |
Tomasz Zawadzki <tomasz.zawadzki@intel.com> |
so_ver: increase all major versions
To allow SO_MINOR updates on LTS for the whole year it is supported, the major version for all components needs to be increased. This is to prevent scenario where
so_ver: increase all major versions
To allow SO_MINOR updates on LTS for the whole year it is supported, the major version for all components needs to be increased. This is to prevent scenario where two versions exists with matching versions, but conflicting ABI. Ex. Next SPDK release adds an API call increasing the minor version, then LTS needs just a subset of those additions.
Increasing major so version after LTS, allows the future releases to update versions as needed. Yet allowing LTS to increase minor version separately.
Disabled test for increasing SO version without ABI change, as that is goal of this patch. This check shall be removed with SPDK 22.05 release.
This patch: - increases SO_VER by 1 for all components - resets SO_MINOR to 0 for all components - removes suppressions for ABI tests
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: Id1a5358882dc496faa5b0b5c9a63b326c378c551 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11361 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
show more ...
|
e4070ee0 | 29-Jan-2021 |
Tomasz Zawadzki <tomasz.zawadzki@intel.com> |
so_ver: increase all major versions
To allow SO_MINOR updates on LTS for the whole year it is supported, the major version for all components needs to be increased. This is to prevent scenario where
so_ver: increase all major versions
To allow SO_MINOR updates on LTS for the whole year it is supported, the major version for all components needs to be increased. This is to prevent scenario where two versions exists with matching versions, but conflicting ABI. Ex. Next SPDK release adds an API call increasing the minor version, then LTS needs just a subset of those additions.
Increasing major so version after LTS, allows the quarterly releases to update versions as needed. Yet allowing LTS to increase minor version separately.
Disabled test for increasing SO version without ABI change, as that is goal of this patch. This check shall be removed with SPDK 21.04 release.
This patch: - increases SO_VER by 1 for all components - resets SO_MINOR to 0 for all components - removes suppressions for ABI tests
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: I44d01154430a074103bd21c7084f44932e81fe72 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6167 Community-CI: Broadcom CI Community-CI: Mellanox Build Bot 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>
show more ...
|
d2a07069 | 09-Nov-2020 |
sunshihao520 <sunshihao@huawei.com> |
lib/conf: check pointer return value when use calloc
add return value check when use calloc to create spdk_conf_section struct.
Signed-off-by: sunshihao <sunshihao@huawei.com> Signed-off-by: linfei
lib/conf: check pointer return value when use calloc
add return value check when use calloc to create spdk_conf_section struct.
Signed-off-by: sunshihao <sunshihao@huawei.com> Signed-off-by: linfeilong <linfeilong@huawei.com> Signed-off-by: liuzhqiang <liuzhiqiang26@huawei.com> Signed-off-by: suweifeng <suweifeng1@huawei.com> Change-Id: Iab89491b7c6942337fa7b1ab765e7bb509c1e92b Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/5051 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
show more ...
|
78ad6728 | 12-Oct-2020 |
Tomasz Zawadzki <tomasz.zawadzki@intel.com> |
lib/event: remove legacy configuration from event framework
All options -c, --config and --json are valid, but have to point to JSON configuration file.
Adjusted UT since JSON configs don't work wi
lib/event: remove legacy configuration from event framework
All options -c, --config and --json are valid, but have to point to JSON configuration file.
Adjusted UT since JSON configs don't work with --wait-for-rpc.
Since this removes last reference to legacy INI configuration, updated conf library to no longer mention the deprecation. All uses of conf library are for explicit reason and not related to SPDK event framework configuration.
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: Ic9a702465982daf715ce1c2ab863c48584734611 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4752 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
show more ...
|
800b18d0 | 17-Jul-2020 |
Vitaliy Mysak <vitaliy.mysak@intel.com> |
lib/conf: allow multiple sections with same name
Add disable_sections_merge() procedure that will allow to have multiple sections with a same name. This behaviour is how FIO treats such sections and
lib/conf: allow multiple sections with same name
Add disable_sections_merge() procedure that will allow to have multiple sections with a same name. This behaviour is how FIO treats such sections and so will be used in bdevperf config file.
Change-Id: If221daeb7753d91b5d2608d25ccbb16f2d43ccce Signed-off-by: Vitaliy Mysak <vitaliy.mysak@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/3433 Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
367c980b | 01-Jul-2020 |
Vitaliy Mysak <vitaliy.mysak@intel.com> |
lib/conf: accept entries of form key=value
In INI config, split key based on whitespace AND symbol '=' This allows to have same format as FIO configs
FIO style config will be used for bdevperf conf
lib/conf: accept entries of form key=value
In INI config, split key based on whitespace AND symbol '=' This allows to have same format as FIO configs
FIO style config will be used for bdevperf config file
Change-Id: I92c501c839842919afb5c23ed935be010ae2b168 Signed-off-by: Vitaliy Mysak <vitaliy.mysak@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/3151 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
show more ...
|
d18e6320 | 10-May-2020 |
Seth Howell <seth.howell@intel.com> |
mk/lib: add a check that major and minor version is set for libs.
Also, while we are here, consolidate setting SO_SUFFIX to one spot.
Previously, it was possible for a library to slip through witho
mk/lib: add a check that major and minor version is set for libs.
Also, while we are here, consolidate setting SO_SUFFIX to one spot.
Previously, it was possible for a library to slip through without an SO version.
Signed-off-by: Seth Howell <seth.howell@intel.com> Change-Id: I4db5fa5839502d266c6259892e5719b05134518c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2361 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Community-CI: Broadcom CI Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
show more ...
|
6395370b | 27-Apr-2020 |
Tomasz Zawadzki <tomasz.zawadzki@intel.com> |
lib/conf: make INI deprecation less verbose
spdk_conf_allocate() was not the best place to put INI deprecation warning.
Depending on the application, config could be allocated without passing confi
lib/conf: make INI deprecation less verbose
spdk_conf_allocate() was not the best place to put INI deprecation warning.
Depending on the application, config could be allocated without passing config file. This resulted in app framework applications to print this error on startup even without config file.
Much better place is spdk_conf_read() which requires a file to be passed. Then and only then, deprecation warning is printed with this patch.
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: I75979655880f9273dfe5ce65262f08934df596cc Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2051 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: <dongx.yi@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com>
show more ...
|
0f2f4b8b | 07-Apr-2020 |
Seth Howell <seth.howell@intel.com> |
lib/conf: add a map file for this library.
Signed-off-by: Seth Howell <seth.howell@intel.com> Change-Id: If9e44d65362f164b35f5a15f310214ab1d7ff3a7 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/s
lib/conf: add a map file for this library.
Signed-off-by: Seth Howell <seth.howell@intel.com> Change-Id: If9e44d65362f164b35f5a15f310214ab1d7ff3a7 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1704 Community-CI: Mellanox Build Bot Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
show more ...
|
1fa071d3 | 20-Apr-2020 |
Tomasz Zawadzki <tomasz.zawadzki@intel.com> |
conf: provide deprecation message when using INI configuration
Deprecating INI tyle configuration has been a long time coming. Feature parity is there between JSON-RPC and INI, which should enable t
conf: provide deprecation message when using INI configuration
Deprecating INI tyle configuration has been a long time coming. Feature parity is there between JSON-RPC and INI, which should enable the switch. All major applications support the JSON-RPC and tests were moved to the JSON-RPC.
With above in place, it is time to give an explicit notification to INI config users regarding the lack of support for INI.
In future release the INI configuration will be removed, until then feedback from users is welcome on any suggestions how to make the transition smoother.
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: If47375371791646f2afd06762b9bf6c5b8e009ed Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1941 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
show more ...
|
19392783 | 28-Feb-2020 |
Seth Howell <seth.howell@intel.com> |
make: rev SO versions individually for libraries.
This will allow us to keep track of compatibility issues on a per-library basis.
Change-Id: Ib0c796adb1efe1570212a503ed660bef6f142b6e Signed-off-by
make: rev SO versions individually for libraries.
This will allow us to keep track of compatibility issues on a per-library basis.
Change-Id: Ib0c796adb1efe1570212a503ed660bef6f142b6e Signed-off-by: Seth Howell <seth.howell@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1067 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
show more ...
|
b78e763c | 22-Jan-2019 |
Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> |
string: spdk_strtol to delegate additional error checking
Error check of strtol is left to users of it. But some use cases of strtol in SPDK do not have enough error check yet.
For example, strtol
string: spdk_strtol to delegate additional error checking
Error check of strtol is left to users of it. But some use cases of strtol in SPDK do not have enough error check yet.
For example, strtol returns 0 if there were no digits at all.
It should be avoided for each use case to add enough error checking for strtol.
Hence spdk_strtol and spdk_strtoll do additional error checking according to the description of manual of strtol.
Besides, there is no use case of negative number now, and to keep simplicity, spdk_trtol and spdk_strtoll allows only strings that is positive number or zero.
As a result of this policy, callers of them only have to check if the return value is not negative.
Subsequent patches will replace atoi to spdk_strtol because atoi does not have error check.
Change-Id: If3d549970595e53b1141674e47710fe4dd062bc5 Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-on: https://review.gerrithub.io/c/441626 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: wuzhouhui <wuzhouhui@kingsoft.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
show more ...
|
eac02a4a | 16-May-2018 |
Pawel Wodkowski <pawelx.wodkowski@intel.com> |
conf: don't strdup name if section already exist
Change-Id: I43eb66e9bc9498dbb47d26ea68a952cf56b65321 Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com> Reviewed-on: https://review.gerrithu
conf: don't strdup name if section already exist
Change-Id: I43eb66e9bc9498dbb47d26ea68a952cf56b65321 Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com> Reviewed-on: https://review.gerrithub.io/411411 Reviewed-by: Pawel Kaminski <pawelx.kaminski@intel.com> Reviewed-by: Dariusz Stojaczyk <dariuszx.stojaczyk@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
show more ...
|
f86f1075 | 14-Dec-2017 |
Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> |
conf: Remove use of perror() for strdup() failure
All SPDK libraries should use the spdk/log.h family of functions for logging.
The cause of strdup failure is only out-of-memory for malloc(). Hence
conf: Remove use of perror() for strdup() failure
All SPDK libraries should use the spdk/log.h family of functions for logging.
The cause of strdup failure is only out-of-memory for malloc(). Hence errno is omitted.
Change-Id: I682f11fbb6f12c9de8d57a025b704b4f050f7474 Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-on: https://review.gerrithub.io/391685 Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
show more ...
|
2d2fde0d | 17-Apr-2017 |
Ed Rodriguez <ed.rodriguez@netapp.com> |
log: Use SPDK_ERRLOG in lieu of fprintf(stderr
Change-Id: Ic87d62516324b9c388a932b268714255b15a9a57 Signed-off-by: Ben Walker <benjamin.walker@intel.com> |
b961d9cc | 02-May-2017 |
Ben Walker <benjamin.walker@intel.com> |
include: Move the remainder of the code base to stdinc.h
Change-Id: I6a142feeaad3117bd3c75e7c5cb7231a1cfa78ae Signed-off-by: Ben Walker <benjamin.walker@intel.com> |
edbca2a6 | 30-Mar-2017 |
Daniel Verkamp <daniel.verkamp@intel.com> |
conf: add Boolean value helper function
Change-Id: Ie86745fe397167416aee356dc773a1bf8387b492 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com> |
396c32c4 | 15-Nov-2016 |
Daniel Verkamp <daniel.verkamp@intel.com> |
conf: move structures out of public API header
Change-Id: Id2a7f083d959c9bbe493c383e6c9578de34c5eae Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com> |
04c48172 | 15-Nov-2016 |
Daniel Verkamp <daniel.verkamp@intel.com> |
conf: add accessors for section name and num
Remove usage of the conf structs so they can be moved out of the public API header.
Change-Id: I1c7375ec7708b323f50af09aeb7b2b2c9c770df4 Signed-off-by:
conf: add accessors for section name and num
Remove usage of the conf structs so they can be moved out of the public API header.
Change-Id: I1c7375ec7708b323f50af09aeb7b2b2c9c770df4 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
show more ...
|
0cb95227 | 18-Jul-2016 |
Daniel Verkamp <daniel.verkamp@intel.com> |
build: include spdk.common.mk in lib Makefiles
Explicitly include spdk.common.mk at the top of all lib Makefiles so that CONFIG options and other predefined variables are set.
Change-Id: I1e560c294
build: include spdk.common.mk in lib Makefiles
Explicitly include spdk.common.mk at the top of all lib Makefiles so that CONFIG options and other predefined variables are set.
Change-Id: I1e560c294fe8242602e45191a280f4295533ae44 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
show more ...
|
20f59ee1 | 12-May-2016 |
Ben Walker <benjamin.walker@intel.com> |
conf: Add configuration file iteration functions
These allow linear searches of the configuration file sections.
Change-Id: I8d8b9594bc8a974c16d999689a6195434c1efac8 Signed-off-by: Ben Walker <benj
conf: Add configuration file iteration functions
These allow linear searches of the configuration file sections.
Change-Id: I8d8b9594bc8a974c16d999689a6195434c1efac8 Signed-off-by: Ben Walker <benjamin.walker@intel.com>
show more ...
|