<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>29f0200847c15e8f331d9b70114ebacff5ceed8c - sock: Add interrupt APIs for socket groups</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#29f0200847c15e8f331d9b70114ebacff5ceed8c</link>
        <description>sock: Add interrupt APIs for socket groupsAdd spdk_sock_group_register_interrupt() API for setting interrupts onthe socket groups.Only POSIX and SSL sockets are supported.Change-Id: I4201de7650cff8f97e0cb7d4ad4d2c31a7e9a79fSigned-off-by: Krzysztof Goreczny &lt;krzysztof.goreczny@dell.com&gt;Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/22744Reviewed-by: Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Jim Harris &lt;jim.harris@samsung.com&gt;Reviewed-by: Boris Glimcher &lt;Boris.Glimcher@emc.com&gt;Community-CI: Mellanox Build Bot

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Thu, 11 Apr 2024 11:49:23 +0000</pubDate>
        <dc:creator>Krzysztof Goreczny &lt;krzysztof.goreczny@dell.com&gt;</dc:creator>
    </item>
<item>
        <title>355312bfcd3751f9af17fbefc90373fb8a269614 - so_ver: increase all major versions after SPDK 24.01</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#355312bfcd3751f9af17fbefc90373fb8a269614</link>
        <description>so_ver: increase all major versions after SPDK 24.01To 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 matchingversions, 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 releasesto update versions as needed. Yet allowing LTS to increase minorversion separately.This patch:- increases SO_VER by 1 for all components- resets SO_MINOR to 0 for all componentsDue 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_chShort reference to how the versions were changed:MAX=$(git grep &quot;SO_VER := &quot; | cut -d&quot; &quot; -f 3 | sort -ubnr | head -1)for((i=$MAX;i&gt;0;i-=1)); do find . -name &quot;Makefile&quot; -exec \	sed -i -e &quot;s/SO_VER := $i\$/SO_VER := $(($i+1))/g&quot; {} +;  donefind . -name &quot;Makefile&quot; -exec \	sed -i -e &quot;s/SO_MINOR := .*/SO_MINOR := 0/g&quot; {} +Signed-off-by: Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;Change-Id: I0166d6be6c17bbbf985d48b5dfcb36f1d4af1b48Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/21582Reviewed-by: Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Fri, 26 Jan 2024 11:19:16 +0000</pubDate>
        <dc:creator>Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>075d422f3480d3db11013734f833304606867da4 - build: enable Wpointer-arith in selected libraries</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#075d422f3480d3db11013734f833304606867da4</link>
        <description>build: enable Wpointer-arith in selected librariesThere&apos;s an organization, called Timerland SIG [1], that uses SPDK&apos;s NVMedriver to implement NVMe Boot Specification under UEFI.  The UEFI EDK2build environment uses both gcc and msvc.  While SPDK can be builtwithout any issues with gcc, msvc complains about a few things, one ofwhich is void pointer arithmetic.  So, to make Timberland&apos;s efforteasier, Wpointer-arith is enabled in the libraries they&apos;re using.[1] https://github.com/timberland-sigSigned-off-by: Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;Change-Id: Ic90330baa4e69ee72f7e040de91893093b96f476Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/18529Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Community-CI: Mellanox Build BotReviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Reviewed-by: Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Tue, 06 Jun 2023 07:32:53 +0000</pubDate>
        <dc:creator>Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3359bf34d682202107c227ea42ace1c600a04657 - so_ver: increase all major versions</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#3359bf34d682202107c227ea42ace1c600a04657</link>
        <description>so_ver: increase all major versionsTo 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 matchingversions, 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 releasesto update versions as needed. Yet allowing LTS to increase minorversion separately.Disabled test for increasing SO version without ABI change, asthat is goal of this patch. This check shall be removed with SPDK 23.05release.Looks like this was left over from prior LTS, to avoid thatmake sure it is only skipped when running against v23.01.x as latestrelease.This patch:- increases SO_VER by 1 for all components- resets SO_MINOR to 0 for all components- removes suppressions for ABI testsShort reference to how the versions were changed:MAX=$(git grep &quot;SO_VER := &quot; | cut -d&quot; &quot; -f 3 | sort -ubnr | head -1)for((i=$MAX;i&gt;0;i-=1)); do find . -name &quot;Makefile&quot; -exec \	sed -i -e &quot;s/SO_VER := $i\$/SO_VER := $(($i+1))/g&quot; {} +;  donefind . -name &quot;Makefile&quot; -exec \	sed -i -e &quot;s/SO_MINOR := .*/SO_MINOR := 0/g&quot; {} +Change-Id: I3e5681802c0a5ac6d7d652a18896997cd07cc8bfSigned-off-by: Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16419Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Reviewed-by: Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Mon, 23 Jan 2023 17:24:28 +0000</pubDate>
        <dc:creator>Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a6dbe3721eb3b5990707fc3e378c95e505dd8ab5 - update Intel copyright notices</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#a6dbe3721eb3b5990707fc3e378c95e505dd8ab5</link>
        <description>update Intel copyright noticesper Intel policy to include file commit date using git cmdbelow.  The policy does not apply to non-Intel (C) notices.git log --follow -C90% --format=%ad --date default &lt;file&gt; | tail -1and then pull just the 4 digit year from the result.Intel copyrights were not added to files where Intel either hadno contribution ot the contribution lacked substance (ie licenseheader updates, formatting changes, etc).  Contribution date used&quot;--follow -C95%&quot; to get the most accurate date.Note that several files in this patch didn&apos;t end the license/(c)block with a blank comment line so these were added as the vastmajority of files do have this last blank line.  Simply there forconsistency.Signed-off-by: paul luse &lt;paul.e.luse@intel.com&gt;Change-Id: Id5b7ce4f658fe87132f14139ead58d6e285c04d4Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15192Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Community-CI: Mellanox Build Bot

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Tue, 01 Nov 2022 20:26:26 +0000</pubDate>
        <dc:creator>paul luse &lt;paul.e.luse@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>7104c8332d0828fbabaeafa4abf7f41aa51bcb8a - sock: Add ktls and tls_version to spdk_sock_opts</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#7104c8332d0828fbabaeafa4abf7f41aa51bcb8a</link>
        <description>sock: Add ktls and tls_version to spdk_sock_optsSee https://docs.kernel.org/networking/tls-offload.htmlSee https://www.openssl.org/docs/man3.0/man3/SSL_set_options.htmlChange-Id: I2fb433cbc34061cb03e1591bb0b47063fcafc68cSigned-off-by: Boris Glimcher &lt;Boris.Glimcher@emc.com&gt;Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13071Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Reviewed-by: Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Wed, 11 May 2022 14:27:38 +0000</pubDate>
        <dc:creator>Boris Glimcher &lt;Boris.Glimcher@emc.com&gt;</dc:creator>
    </item>
<item>
        <title>488570ebd418ba07c9e69e65106dcc964f3bb41b - Replace most BSD 3-clause license text with SPDX identifier.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#488570ebd418ba07c9e69e65106dcc964f3bb41b</link>
        <description>Replace most BSD 3-clause license text with SPDX identifier.Many open source projects have moved to using SPDX identifiersto specify license information, reducing the amount ofboilerplate code in every source file.  This patch replacesthe bulk of SPDK .c, .cpp and Makefiles with the BSD-3-Clauseidentifier.Almost all of these files share the exact same license text,and this patch only modifies the files that contain themost common license text.  There can be slight variationsbecause the third clause contains company names - most say&quot;Intel Corporation&quot;, but there are instances for Nvidia,Samsung, Eideticom and even &quot;the copyright holder&quot;.Used a bash script to automate replacement of the license textwith SPDX identifier which is checked into scripts/spdx.sh.Signed-off-by: Jim Harris &lt;james.r.harris@intel.com&gt;Change-Id: Iaa88ab5e92ea471691dc298cfe41ebfb5d169780Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/12904Community-CI: Broadcom CI &lt;spdk-ci.pdl@broadcom.com&gt;Community-CI: Mellanox Build BotTested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Aleksey Marchuk &lt;alexeymar@nvidia.com&gt;Reviewed-by: Changpeng Liu &lt;changpeng.liu@intel.com&gt;Reviewed-by: Dong Yi &lt;dongx.yi@intel.com&gt;Reviewed-by: Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;Reviewed-by: Paul Luse &lt;paul.e.luse@intel.com&gt;Reviewed-by: &lt;qun.wan@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Fri, 03 Jun 2022 19:15:11 +0000</pubDate>
        <dc:creator>Jim Harris &lt;james.r.harris@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>047c067c05ff22df06c053990998184b8a940514 - so_ver: increase all major versions</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#047c067c05ff22df06c053990998184b8a940514</link>
        <description>so_ver: increase all major versionsTo 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 matchingversions, 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 releasesto update versions as needed. Yet allowing LTS to increase minorversion separately.Disabled test for increasing SO version without ABI change, asthat is goal of this patch. This check shall be removed with SPDK 22.05release.This patch:- increases SO_VER by 1 for all components- resets SO_MINOR to 0 for all components- removes suppressions for ABI testsSigned-off-by: Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;Change-Id: Id1a5358882dc496faa5b0b5c9a63b326c378c551Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11361Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Community-CI: Broadcom CI &lt;spdk-ci.pdl@broadcom.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Mon, 31 Jan 2022 09:55:58 +0000</pubDate>
        <dc:creator>Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e4070ee0e012c345f4c059f125f4f9ce3be66690 - so_ver: increase all major versions</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#e4070ee0e012c345f4c059f125f4f9ce3be66690</link>
        <description>so_ver: increase all major versionsTo 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 matchingversions, 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 releasesto update versions as needed. Yet allowing LTS to increase minorversion separately.Disabled test for increasing SO version without ABI change, asthat is goal of this patch. This check shall be removed with SPDK 21.04release.This patch:- increases SO_VER by 1 for all components- resets SO_MINOR to 0 for all components- removes suppressions for ABI testsSigned-off-by: Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;Change-Id: I44d01154430a074103bd21c7084f44932e81fe72Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6167Community-CI: Broadcom CICommunity-CI: Mellanox Build BotTested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Fri, 29 Jan 2021 10:11:25 +0000</pubDate>
        <dc:creator>Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>079f2d0abe0c2dc83c6c79ac638f7e789e6de9c1 - sock: Add new API to set default sock implementation</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#079f2d0abe0c2dc83c6c79ac638f7e789e6de9c1</link>
        <description>sock: Add new API to set default sock implementationWhen uring is enabled, uring socket implementation isused to create sockets. We may want to use posix socketsfor some reasons (e.g. performance tests). This patch addsa new API function to set the socket implementation whichwill be used by default, e.g. when no impl_name is passedto spdk_sock_connect/spdk_sock_listen functions.Misc changes: include spdk_internal/log.h to registerSOCK log component. The new include header alreadyincludes spdk/sock.h and spdk/queue.h, sow removedirect inclusion of these headers.Change-Id: I4abad0a59cd033b15bd43a00e3dbdf313fa6b06cSigned-off-by: Alexey Marchuk &lt;alexeymar@mellanox.com&gt;Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4327Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Mon, 21 Sep 2020 11:07:52 +0000</pubDate>
        <dc:creator>Alexey Marchuk &lt;alexeymar@mellanox.com&gt;</dc:creator>
    </item>
<item>
        <title>7d6c341a59bd6d0d7070bfb8203ac01f479f43fa - sock: revert major rev to 4</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#7d6c341a59bd6d0d7070bfb8203ac01f479f43fa</link>
        <description>sock: revert major rev to 4This was accidentally bumped twice (3 to 4 to 5) sincev20.07 release.Signed-off-by: Jim Harris &lt;james.r.harris@intel.com&gt;Change-Id: Ia5bda3349fa5c1fce37166fe4b640ff722bb7e3aReviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4421Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Changpeng Liu &lt;changpeng.liu@intel.com&gt;Reviewed-by: Aleksey Marchuk &lt;alexeymar@mellanox.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Fri, 25 Sep 2020 23:23:20 +0000</pubDate>
        <dc:creator>Jim Harris &lt;james.r.harris@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>336157bb8f98d177d6b955bc1e9c8ad629398a09 - net: Remove the net_framework subsystem</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#336157bb8f98d177d6b955bc1e9c8ad629398a09</link>
        <description>net: Remove the net_framework subsystemThis was not used by anything. It was intended for use by user-spaceTCP stacks.Change-Id: I416589e421784882c693bcc5b03fe1dbcc4b1bd3Signed-off-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4297Reviewed-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;Reviewed-by: Aleksey Marchuk &lt;alexeymar@mellanox.com&gt;Reviewed-by: Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Thu, 17 Sep 2020 22:05:16 +0000</pubDate>
        <dc:creator>Ben Walker &lt;benjamin.walker@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a6db2f35901f407b64dc51c5647f030624f81bce - sock: enable placement_id configuration in sock layer</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#a6db2f35901f407b64dc51c5647f030624f81bce</link>
        <description>sock: enable placement_id configuration in sock layerThis patch is used to enable placement_id gettingin sock layer and also add the rpc support.Signed-off-by: Ziye Yang &lt;ziye.yang@intel.com&gt;Change-Id: I70de57b0ed392a0aefce9d3ff1f61ef924015a87Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4146Reviewed-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;Reviewed-by: Changpeng Liu &lt;changpeng.liu@intel.com&gt;Reviewed-by: Aleksey Marchuk &lt;alexeymar@mellanox.com&gt;Community-CI: Broadcom CITested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Thu, 10 Sep 2020 17:22:24 +0000</pubDate>
        <dc:creator>Ziye Yang &lt;ziye.yang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>99d3695c2c52f9fc880ec495de60e984341084d4 - lib/sock: bump SO_VERSION to 4.0</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#99d3695c2c52f9fc880ec495de60e984341084d4</link>
        <description>lib/sock: bump SO_VERSION to 4.0Following patch was merged while still having parent onepointing before SPDK 20.07 release.(61cd9d) lib/sock: Add option to enable or disable quick ACKSigned-off-by: Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;Change-Id: I1cbc0acfdd2a1a5403844167a107e0f63a2e213cReviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/3709Community-CI: Mellanox Build BotReviewed-by: Aleksey Marchuk &lt;alexeymar@mellanox.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Mon, 10 Aug 2020 13:41:51 +0000</pubDate>
        <dc:creator>Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b1074c4905818d8ddd739f64ea25c28b2d7feab6 - sock/rpc: Add sock_impl_get/set_options RPC methods</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#b1074c4905818d8ddd739f64ea25c28b2d7feab6</link>
        <description>sock/rpc: Add sock_impl_get/set_options RPC methodsSigned-off-by: Evgeniy Kochetov &lt;evgeniik@mellanox.com&gt;Change-Id: If1193ef647c85b045d7f14a03a9942783583f553Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/612Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Community-CI: Broadcom CICommunity-CI: Mellanox Build BotReviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Reviewed-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Tue, 28 Jan 2020 19:24:46 +0000</pubDate>
        <dc:creator>Evgeniy Kochetov &lt;evgeniik@mellanox.com&gt;</dc:creator>
    </item>
<item>
        <title>eb0faf26341b069b0ab1dae45bfa28231dfd12e8 - sock: Add spdk_sock_impl_get/set_opts function</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#eb0faf26341b069b0ab1dae45bfa28231dfd12e8</link>
        <description>sock: Add spdk_sock_impl_get/set_opts functionspdk_sock_impl_get/set_opts functions allow to set different socket layerconfiguration options. Options can be set independently for eachsocket layer implementation.Signed-off-by: Evgeniy Kochetov &lt;evgeniik@mellanox.com&gt;Change-Id: I617e58366a153fae2cf0de1b271cc4f4f19ec451Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/607Community-CI: Broadcom CITested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Reviewed-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Tue, 28 Jan 2020 11:54:47 +0000</pubDate>
        <dc:creator>Evgeniy Kochetov &lt;evgeniik@mellanox.com&gt;</dc:creator>
    </item>
<item>
        <title>d18e63206a4b5d710756d7e7d9c42ef0db0c5d58 - mk/lib: add a check that major and minor version is set for libs.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#d18e63206a4b5d710756d7e7d9c42ef0db0c5d58</link>
        <description>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 throughwithout an SO version.Signed-off-by: Seth Howell &lt;seth.howell@intel.com&gt;Change-Id: I4db5fa5839502d266c6259892e5719b05134518cReviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2361Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Community-CI: Mellanox Build BotCommunity-CI: Broadcom CIReviewed-by: Paul Luse &lt;paul.e.luse@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Reviewed-by: Aleksey Marchuk &lt;alexeymar@mellanox.com&gt;Reviewed-by: Tomasz Zawadzki &lt;tomasz.zawadzki@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Sun, 10 May 2020 20:40:09 +0000</pubDate>
        <dc:creator>Seth Howell &lt;seth.howell@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>67801f6ccabbe889dafc46226e6336576389d410 - lib/sock: add a map file.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#67801f6ccabbe889dafc46226e6336576389d410</link>
        <description>lib/sock: add a map file.Signed-off-by: Seth Howell &lt;seth.howell@intel.com&gt;Change-Id: I5cf35dbe14bf29050ea40f31553a10957f7dac11Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2296Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Reviewed-by: Darek Stojaczyk &lt;dariusz.stojaczyk@intel.com&gt;Reviewed-by: Aleksey Marchuk &lt;alexeymar@mellanox.com&gt;Community-CI: Mellanox Build BotTested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Sat, 09 May 2020 23:37:43 +0000</pubDate>
        <dc:creator>Seth Howell &lt;seth.howell@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8ad1f4bfa8963fb840e48ec7efa9a9709d0b516c - lib/sock: remove spdk_sock_set_priority</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#8ad1f4bfa8963fb840e48ec7efa9a9709d0b516c</link>
        <description>lib/sock: remove spdk_sock_set_prioritySince the related feature is already contained inspdk_sock_listen and spdk_sock_connect functions,we no longer need this function.Signed-off-by: Ziye Yang &lt;ziye.yang@intel.com&gt;Change-Id: I1eafff0d139fa266a355fbee2bf0fc3947db69fcReviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1876Community-CI: Mellanox Build BotCommunity-CI: Broadcom CIReviewed-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Wed, 19 Feb 2020 15:13:24 +0000</pubDate>
        <dc:creator>Ziye Yang &lt;ziye.yang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>193927830ddced41dfebfe7cdb14d543aaf84a2c - make: rev SO versions individually for libraries.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/lib/sock/Makefile#193927830ddced41dfebfe7cdb14d543aaf84a2c</link>
        <description>make: rev SO versions individually for libraries.This will allow us to keep track of compatibility issues on aper-library basis.Change-Id: Ib0c796adb1efe1570212a503ed660bef6f142b6eSigned-off-by: Seth Howell &lt;seth.howell@intel.com&gt;Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1067Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;

            List of files:
            /spdk/lib/sock/Makefile</description>
        <pubDate>Fri, 28 Feb 2020 20:47:11 +0000</pubDate>
        <dc:creator>Seth Howell &lt;seth.howell@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
