Name Date Size #Lines LOC

..--

config/H10-Jan-2016-11,2788,984

include/infiniband/H10-Jan-2016-926556

src/H10-Jan-2016-1,074864

AUTHORSHD10-Jan-201671 32

COPYINGHD10-Jan-201619.4 KiB379310

ChangeLogHD10-Jan-20160

INSTALLHD10-Jan-20160

Makefile.amHD10-Jan-2016927 3520

Makefile.inHD10-Jan-201622.3 KiB661573

NEWSHD10-Jan-20160

READMEHD10-Jan-2016704 2916

aclocal.m4HD10-Jan-2016256 KiB7,2686,520

config.h.inHD10-Jan-20161.7 KiB6845

configureHD10-Jan-2016713.8 KiB22,10617,744

configure.inHD10-Jan-20162.2 KiB7257

libibcm.specHD10-Jan-20161.1 KiB5440

libibcm.spec.inHD10-Jan-20161.1 KiB5441

README

1This README is for userspace cm library.
2
3Building
4
5To make this directory, run:
6./autogen.sh && ./configure && make && make install
7
8Typically the autogen and configure steps only need be done the first
9time unless configure.in or Makefile.am changes.
10
11Libraries are installed by default at /usr/local/lib.
12
13Device files
14
15The userspace CM uses a device file per adapter present.
16
17To create the appropriate character device file automatically with
18udev, a rule like
19
20    KERNEL="ucm*", NAME="infiniband/%k", MODE="0666"
21
22can be used.  This will create the device node named
23
24    /dev/infiniband/ucm0
25
26for the first HCA in the system, or you can create it manually
27
28  mknod /dev/infiniband/ucm0 c 231 224
29