003 File Manager
Current Path:
/usr/src/contrib/ofed/libibverbs
usr
/
src
/
contrib
/
ofed
/
libibverbs
/
📁
..
📄
alloca.h
(359 B)
📄
arch.h
(1.9 KB)
📄
cmd.c
(60.7 KB)
📄
compat-1_0.c
(26.36 KB)
📄
config.h
(998 B)
📄
device.c
(9.99 KB)
📄
driver.h
(11.89 KB)
📄
enum_strs.c
(4.89 KB)
📁
examples
📄
ibverbs.h
(4.18 KB)
📄
init.c
(9.39 KB)
📄
kern-abi.h
(25.17 KB)
📄
libibverbs.map
(3.11 KB)
📁
man
📄
marshall.c
(4.79 KB)
📄
marshall.h
(2.19 KB)
📄
memory.c
(14.17 KB)
📄
neigh.c
(19.13 KB)
📄
neigh.h
(1.43 KB)
📄
nl1_compat.h
(1.78 KB)
📄
opcode.h
(5.56 KB)
📄
sa-kern-abi.h
(1.58 KB)
📄
sa.h
(3.98 KB)
📄
sysfs.c
(2.59 KB)
📄
verbs.c
(26.15 KB)
📄
verbs.h
(61.88 KB)
Editing: config.h
/* $FreeBSD$ */ #include "alloca.h" #define memalign(align, size) ({ \ void *__ptr; \ if (posix_memalign(&__ptr, (align), (size))) \ __ptr = NULL; \ __ptr; \ }) /* * Return true if the snprintf succeeded, false if there was * truncation or error: */ #define check_snprintf(buf, len, fmt, ...) ({ \ int rc = snprintf(buf, len, fmt, ##__VA_ARGS__); \ (rc < len && rc >= 0); \ }) #define min_t(type, x, y) ({ \ type __min1 = (x); \ type __min2 = (y); \ __min1 < __min2 ? __min1 : __min2; }) #define freeaddrinfo_null(x) do { \ if ((x) != NULL) \ freeaddrinfo(x); \ } while (0) #define VALGRIND_MAKE_MEM_DEFINED(...) 0 #define s6_addr32 __u6_addr.__u6_addr32 #define __sum16 uint16_t #define NRESOLVE_NEIGH 1 #define STREAM_CLOEXEC "e" #define VERBS_PROVIDER_DIR "/usr/lib/" #define IBV_CONFIG_DIR "/etc/ibverbs/" #define MADV_DONTFORK MADV_NORMAL #define MADV_DOFORK MADV_NORMAL #define SWITCH_FALLTHROUGH (void)0
Upload File
Create Folder