Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8516
b: refs/heads/master
c: 63aaf64
h: refs/heads/master
v: v3
  • Loading branch information
Roland Dreier authored and Roland Dreier committed Sep 9, 2005
1 parent 965e46a commit 25f4e43
Show file tree
Hide file tree
Showing 5 changed files with 212 additions and 90 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2e9f7cb7869059e55cd91f5e23c6380f3763db56
refs/heads/master: 63aaf647529e8a56bdf31fd8f2979d4371c6a332
26 changes: 17 additions & 9 deletions trunk/drivers/infiniband/core/uverbs.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,20 +76,28 @@ struct ib_uverbs_file {
struct ib_uverbs_event_file comp_file[1];
};

struct ib_uverbs_async_event {
struct ib_uverbs_async_event_desc desc;
struct ib_uverbs_event {
union {
struct ib_uverbs_async_event_desc async;
struct ib_uverbs_comp_event_desc comp;
} desc;
struct list_head list;
struct list_head obj_list;
u32 *counter;
};

struct ib_uverbs_comp_event {
struct ib_uverbs_comp_event_desc desc;
struct list_head list;
struct ib_uevent_object {
struct ib_uobject uobject;
struct list_head event_list;
u32 events_reported;
};

struct ib_uobject_mr {
struct ib_uobject uobj;
struct page *page_list;
struct scatterlist *sg_list;
struct ib_ucq_object {
struct ib_uobject uobject;
struct list_head comp_list;
struct list_head async_list;
u32 comp_events_reported;
u32 async_events_reported;
};

extern struct semaphore ib_uverbs_idr_mutex;
Expand Down
Loading

0 comments on commit 25f4e43

Please sign in to comment.