blob: f46f37bc1201bdafae02dc16c9082ab0c1c983ab [file] [log] [blame]
Hal Rosenstocka5b74542005-07-27 11:45:44 -07001/*
2 * Copyright (c) 2005 Topspin Communications. All rights reserved.
Sean Hefty0b2b35f2005-09-01 09:28:03 -07003 * Copyright (c) 2005 Intel Corporation. All rights reserved.
Hal Rosenstocka5b74542005-07-27 11:45:44 -07004 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 *
33 * $Id: ucm.h 2208 2005-04-22 23:24:31Z libor $
34 */
35
36#ifndef UCM_H
37#define UCM_H
38
39#include <linux/fs.h>
40#include <linux/device.h>
41#include <linux/cdev.h>
42#include <linux/idr.h>
43
Roland Dreiera4d61e82005-08-25 13:40:04 -070044#include <rdma/ib_cm.h>
45#include <rdma/ib_user_cm.h>
Hal Rosenstocka5b74542005-07-27 11:45:44 -070046
Hal Rosenstocka5b74542005-07-27 11:45:44 -070047struct ib_ucm_file {
48 struct semaphore mutex;
49 struct file *filp;
Sean Heftyb9ef5202005-08-19 13:46:34 -070050
Hal Rosenstocka5b74542005-07-27 11:45:44 -070051 struct list_head ctxs; /* list of active connections */
52 struct list_head events; /* list of pending events */
53 wait_queue_head_t poll_wait;
54};
55
56struct ib_ucm_context {
57 int id;
Sean Heftyb9ef5202005-08-19 13:46:34 -070058 wait_queue_head_t wait;
59 atomic_t ref;
Sean Hefty0b2b35f2005-09-01 09:28:03 -070060 int events_reported;
Hal Rosenstocka5b74542005-07-27 11:45:44 -070061
62 struct ib_ucm_file *file;
63 struct ib_cm_id *cm_id;
Sean Hefty0b2b35f2005-09-01 09:28:03 -070064 __u64 uid;
Hal Rosenstocka5b74542005-07-27 11:45:44 -070065
66 struct list_head events; /* list of pending events. */
67 struct list_head file_list; /* member in file ctx list */
68};
69
70struct ib_ucm_event {
71 struct ib_ucm_context *ctx;
72 struct list_head file_list; /* member in file event list */
73 struct list_head ctx_list; /* member in ctx event list */
74
Sean Hefty0b2b35f2005-09-01 09:28:03 -070075 struct ib_cm_id *cm_id;
Hal Rosenstocka5b74542005-07-27 11:45:44 -070076 struct ib_ucm_event_resp resp;
77 void *data;
78 void *info;
79 int data_len;
80 int info_len;
Hal Rosenstocka5b74542005-07-27 11:45:44 -070081};
82
83#endif /* UCM_H */