From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36651) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1csTGk-0003A9-M3 for guix-patches@gnu.org; Mon, 27 Mar 2017 07:57:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1csTGg-0008CX-3E for guix-patches@gnu.org; Mon, 27 Mar 2017 07:57:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48726) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1csTGf-0008CT-Vr for guix-patches@gnu.org; Mon, 27 Mar 2017 07:57:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1csTGf-0006eG-Pz for guix-patches@gnu.org; Mon, 27 Mar 2017 07:57:01 -0400 Subject: bug#26257: [PATCH] gnu: Add rdma-core. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170325203353.15515-1-mbakke@fastmail.com> Date: Mon, 27 Mar 2017 13:55:54 +0200 In-Reply-To: <20170325203353.15515-1-mbakke@fastmail.com> (Marius Bakke's message of "Sat, 25 Mar 2017 21:33:53 +0100") Message-ID: <87fuhzj5md.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Marius Bakke Cc: 26257@debbugs.gnu.org Marius Bakke skribis: > * gnu/packages/linux.scm (rdma-core): New variable. LGTM! > + (home-page "https://github.com/linux-rdma/rdma-core") > + (synopsis "Utilities and libraries for working with RDMA devices") > + (description > + "This package provides the userspace components for the InfiniBand > +subsystem of the Linux kernel. Specifically it contains userspace libra= ries > +for the following device nodes: > + > +@enumerate > +@item @file{/dev/infiniband/uverbsX} (@code{libibverbs}) > +@item @file{/dev/infiniband/rdma_cm} (@code{librdmacm}) > +@item @file{/dev/infiniband/umadX} (@code{libibumad}) > +@end enumerate > + > +The following service daemons are also provided: > +@enumerate > +@item @code{srp_daemon} (for the @code{ib_srp} kernel module) > +@item @code{iwpmd} (for iwarp kernel providers) > +@item @code{ibacm} (for InfiniBand communication management assistant) > +@end enumerate") I was wondering whether this code was relying on proprietary InfiniBand drivers, which would not be okay, but find $LINUX_MODULE_DIRECTORY -name ib\*ko shows a bunch of drivers, including =E2=80=98ib_srp=E2=80=99 (mentioned abo= ve), so I guess this is fine. Thanks! Ludo=E2=80=99.