Skip to content

Commit

Permalink
Merge pull request #1144 from yishaih/verbs_misc
Browse files Browse the repository at this point in the history
Add new bitmap API
  • Loading branch information
yishaih committed Mar 10, 2022
2 parents 685a654 + c45290a commit f8d7f42
Show file tree
Hide file tree
Showing 17 changed files with 362 additions and 657 deletions.
2 changes: 0 additions & 2 deletions ccan/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
publish_internal_headers(ccan
array_size.h
bitmap.h
build_assert.h
check_type.h
compiler.h
Expand All @@ -13,7 +12,6 @@ publish_internal_headers(ccan
)

set(C_FILES
bitmap.c
ilog.c
list.c
str.c
Expand Down
125 changes: 0 additions & 125 deletions ccan/bitmap.c

This file was deleted.

239 changes: 0 additions & 239 deletions ccan/bitmap.h

This file was deleted.

4 changes: 2 additions & 2 deletions libibverbs/ibverbs.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include <pthread.h>

#include <infiniband/driver.h>
#include <ccan/bitmap.h>
#include <util/bitmap.h>

#define INIT __attribute__((constructor))

Expand Down Expand Up @@ -70,7 +70,7 @@ void load_drivers(void);
#endif

struct verbs_ex_private {
BITMAP_DECLARE(unsupported_ioctls, VERBS_OPS_NUM);
BMP_DECLARE(unsupported_ioctls, VERBS_OPS_NUM);
uint32_t driver_id;
bool use_ioctl_write;
struct verbs_context_ops ops;
Expand Down

0 comments on commit f8d7f42

Please sign in to comment.