blob: cd2dcb8939de8e6e7b5fe6d0ac1e16ac8e0491d8 [file] [log] [blame]
Sage Weilf24e9982009-10-06 11:31:10 -07001#ifndef _FS_CEPH_OSD_CLIENT_H
2#define _FS_CEPH_OSD_CLIENT_H
3
4#include <linux/completion.h>
Sage Weil415e49a2009-12-07 13:37:03 -08005#include <linux/kref.h>
Sage Weilf24e9982009-10-06 11:31:10 -07006#include <linux/mempool.h>
7#include <linux/rbtree.h>
8
Alex Elder6c4a1912012-05-16 15:16:38 -05009#include <linux/ceph/types.h>
10#include <linux/ceph/osdmap.h>
11#include <linux/ceph/messenger.h>
12#include <linux/ceph/auth.h>
Alex Elderc8858372012-11-13 21:11:15 -060013#include <linux/ceph/pagelist.h>
Sage Weilf24e9982009-10-06 11:31:10 -070014
15struct ceph_msg;
16struct ceph_snap_context;
17struct ceph_osd_request;
18struct ceph_osd_client;
19
20/*
21 * completion callback for async writepages
22 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +020023typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *);
Alex Elder26be8802013-04-15 11:20:42 -050024typedef void (*ceph_osdc_unsafe_callback_t)(struct ceph_osd_request *, bool);
Sage Weilf24e9982009-10-06 11:31:10 -070025
Ilya Dryomov63244fa2016-04-28 16:07:23 +020026#define CEPH_HOMELESS_OSD -1
27
Sage Weilf24e9982009-10-06 11:31:10 -070028/* a given osd we're communicating with */
29struct ceph_osd {
30 atomic_t o_ref;
31 struct ceph_osd_client *o_osdc;
32 int o_osd;
33 int o_incarnation;
34 struct rb_node o_node;
35 struct ceph_connection o_con;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020036 struct rb_root o_requests;
Ilya Dryomov922dab62016-05-26 01:15:02 +020037 struct rb_root o_linger_requests;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080038 struct list_head o_osd_lru;
Alex Elder6c4a1912012-05-16 15:16:38 -050039 struct ceph_auth_handshake o_auth;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080040 unsigned long lru_ttl;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -080041 struct list_head o_keepalive_item;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020042 struct mutex lock;
Sage Weilf24e9982009-10-06 11:31:10 -070043};
44
Ilya Dryomov3f1af422016-02-09 17:50:15 +010045#define CEPH_OSD_SLAB_OPS 2
46#define CEPH_OSD_MAX_OPS 16
Sage Weil1b83bef2013-02-25 16:11:12 -080047
Alex Elder2ac2b7a2013-02-14 12:16:43 -060048enum ceph_osd_data_type {
Alex Elderec9123c2013-04-05 01:27:12 -050049 CEPH_OSD_DATA_TYPE_NONE = 0,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060050 CEPH_OSD_DATA_TYPE_PAGES,
Alex Elder9a5e6d02013-03-08 13:35:36 -060051 CEPH_OSD_DATA_TYPE_PAGELIST,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060052#ifdef CONFIG_BLOCK
53 CEPH_OSD_DATA_TYPE_BIO,
54#endif /* CONFIG_BLOCK */
55};
56
Alex Elder2794a82a2013-02-14 12:16:43 -060057struct ceph_osd_data {
Alex Elder2ac2b7a2013-02-14 12:16:43 -060058 enum ceph_osd_data_type type;
59 union {
Alex Elder2794a82a2013-02-14 12:16:43 -060060 struct {
61 struct page **pages;
Alex Eldere0c59482013-03-07 15:38:25 -060062 u64 length;
Alex Elder2794a82a2013-02-14 12:16:43 -060063 u32 alignment;
64 bool pages_from_pool;
65 bool own_pages;
66 };
Alex Elder9a5e6d02013-03-08 13:35:36 -060067 struct ceph_pagelist *pagelist;
Alex Elder2794a82a2013-02-14 12:16:43 -060068#ifdef CONFIG_BLOCK
Alex Elderfdce58c2013-03-14 14:09:06 -050069 struct {
70 struct bio *bio; /* list of bios */
71 size_t bio_length; /* total in list */
72 };
Alex Elder2794a82a2013-02-14 12:16:43 -060073#endif /* CONFIG_BLOCK */
74 };
75};
76
Alex Elder79528732013-04-03 21:32:51 -050077struct ceph_osd_req_op {
78 u16 op; /* CEPH_OSD_OP_* */
Ilya Dryomov7b25bf52014-02-25 16:22:26 +020079 u32 flags; /* CEPH_OSD_OP_FLAG_* */
Ilya Dryomovde2aa102016-02-08 13:39:46 +010080 u32 indata_len; /* request */
Yan, Zheng7665d852016-01-07 16:48:57 +080081 u32 outdata_len; /* reply */
82 s32 rval;
83
Alex Elder79528732013-04-03 21:32:51 -050084 union {
Alex Elder49719772013-02-11 12:33:24 -060085 struct ceph_osd_data raw_data_in;
Alex Elder79528732013-04-03 21:32:51 -050086 struct {
87 u64 offset, length;
88 u64 truncate_size;
89 u32 truncate_seq;
Alex Elder54764922013-04-05 01:27:12 -050090 struct ceph_osd_data osd_data;
Alex Elder79528732013-04-03 21:32:51 -050091 } extent;
92 struct {
Ilya Dryomovd7d5a002014-12-19 14:00:41 +030093 u32 name_len;
94 u32 value_len;
Yan, Zhengd74b50b2014-11-12 14:00:43 +080095 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
96 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
97 struct ceph_osd_data osd_data;
98 } xattr;
99 struct {
Alex Elder79528732013-04-03 21:32:51 -0500100 const char *class_name;
101 const char *method_name;
Alex Elder54764922013-04-05 01:27:12 -0500102 struct ceph_osd_data request_info;
Alex Elder04017e22013-04-05 14:46:02 -0500103 struct ceph_osd_data request_data;
Alex Elder54764922013-04-05 01:27:12 -0500104 struct ceph_osd_data response_data;
Alex Elder79528732013-04-03 21:32:51 -0500105 __u8 class_len;
106 __u8 method_len;
Ilya Dryomovbb873b52016-05-26 00:29:52 +0200107 u32 indata_len;
Alex Elder79528732013-04-03 21:32:51 -0500108 } cls;
109 struct {
110 u64 cookie;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200111 __u8 op; /* CEPH_OSD_WATCH_OP_ */
112 u32 gen;
Alex Elder79528732013-04-03 21:32:51 -0500113 } watch;
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200114 struct {
Ilya Dryomov922dab62016-05-26 01:15:02 +0200115 struct ceph_osd_data request_data;
116 } notify_ack;
117 struct {
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200118 u64 expected_object_size;
119 u64 expected_write_size;
120 } alloc_hint;
Alex Elder79528732013-04-03 21:32:51 -0500121 };
122};
123
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200124struct ceph_osd_request_target {
125 struct ceph_object_id base_oid;
126 struct ceph_object_locator base_oloc;
127 struct ceph_object_id target_oid;
128 struct ceph_object_locator target_oloc;
129
130 struct ceph_pg pgid;
131 u32 pg_num;
132 u32 pg_num_mask;
133 struct ceph_osds acting;
134 struct ceph_osds up;
135 int size;
136 int min_size;
137 bool sort_bitwise;
138
139 unsigned int flags; /* CEPH_OSD_FLAG_* */
140 bool paused;
141
142 int osd;
143};
144
Sage Weilf24e9982009-10-06 11:31:10 -0700145/* an in-flight request */
146struct ceph_osd_request {
147 u64 r_tid; /* unique for this client */
148 struct rb_node r_node;
Sage Weilf24e9982009-10-06 11:31:10 -0700149 struct ceph_osd *r_osd;
Ilya Dryomova66dd382016-04-28 16:07:23 +0200150
151 struct ceph_osd_request_target r_t;
152#define r_base_oid r_t.base_oid
153#define r_base_oloc r_t.base_oloc
154#define r_flags r_t.flags
Sage Weilf24e9982009-10-06 11:31:10 -0700155
156 struct ceph_msg *r_request, *r_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700157 u32 r_sent; /* >0 if r_request is sending/sent */
Sage Weil1b83bef2013-02-25 16:11:12 -0800158
Alex Elder79528732013-04-03 21:32:51 -0500159 /* request osd ops array */
160 unsigned int r_num_ops;
Alex Elder79528732013-04-03 21:32:51 -0500161
Sage Weil1b83bef2013-02-25 16:11:12 -0800162 int r_result;
Ilya Dryomovfe5da052016-04-28 16:07:24 +0200163 bool r_got_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700164
165 struct ceph_osd_client *r_osdc;
Sage Weil415e49a2009-12-07 13:37:03 -0800166 struct kref r_kref;
Sage Weilf24e9982009-10-06 11:31:10 -0700167 bool r_mempool;
Ilya Dryomovfe5da052016-04-28 16:07:24 +0200168 struct completion r_completion;
169 struct completion r_safe_completion; /* fsync waiter */
Alex Elder26be8802013-04-15 11:20:42 -0500170 ceph_osdc_callback_t r_callback;
171 ceph_osdc_unsafe_callback_t r_unsafe_callback;
Sage Weilf24e9982009-10-06 11:31:10 -0700172 struct list_head r_unsafe_item;
173
174 struct inode *r_inode; /* for use by callbacks */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700175 void *r_priv; /* ditto */
Sage Weilf24e9982009-10-06 11:31:10 -0700176
Ilya Dryomovbb873b52016-05-26 00:29:52 +0200177 /* set by submitter */
178 u64 r_snapid; /* for reads, CEPH_NOSNAP o/w */
179 struct ceph_snap_context *r_snapc; /* for writes */
180 struct timespec r_mtime; /* ditto */
181 u64 r_data_offset; /* ditto */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200182 bool r_linger; /* don't resend on failure */
Sage Weilf24e9982009-10-06 11:31:10 -0700183
Ilya Dryomovbb873b52016-05-26 00:29:52 +0200184 /* internal */
185 unsigned long r_stamp; /* jiffies, send or check time */
186 int r_attempts;
187 struct ceph_eversion r_replay_version; /* aka reassert_version */
188 u32 r_last_force_resend;
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100189
190 struct ceph_osd_req_op r_ops[];
Sage Weilf24e9982009-10-06 11:31:10 -0700191};
192
Ilya Dryomov205ee1182014-01-27 17:40:20 +0200193struct ceph_request_redirect {
194 struct ceph_object_locator oloc;
195};
196
Ilya Dryomov922dab62016-05-26 01:15:02 +0200197typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
198 u64 notifier_id, void *data, size_t data_len);
199typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700200
Ilya Dryomov922dab62016-05-26 01:15:02 +0200201struct ceph_osd_linger_request {
202 struct ceph_osd_client *osdc;
203 u64 linger_id;
204 bool committed;
205
206 struct ceph_osd *osd;
207 struct ceph_osd_request *reg_req;
208 struct ceph_osd_request *ping_req;
209 unsigned long ping_sent;
210
211 struct ceph_osd_request_target t;
212 u32 last_force_resend;
213
214 struct timespec mtime;
215
216 struct kref kref;
217 struct mutex lock;
218 struct rb_node node; /* osd */
219 struct rb_node osdc_node; /* osdc */
220 struct list_head scan_item;
221
222 struct completion reg_commit_wait;
223 int reg_commit_error;
224 int last_error;
225
226 u32 register_gen;
227
228 rados_watchcb2_t wcb;
229 rados_watcherrcb_t errcb;
230 void *data;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700231};
232
Sage Weilf24e9982009-10-06 11:31:10 -0700233struct ceph_osd_client {
234 struct ceph_client *client;
235
236 struct ceph_osdmap *osdmap; /* current map */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200237 struct rw_semaphore lock;
Sage Weilf24e9982009-10-06 11:31:10 -0700238
Sage Weilf24e9982009-10-06 11:31:10 -0700239 struct rb_root osds; /* osds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800240 struct list_head osd_lru; /* idle osds */
Ilya Dryomov9dd28452016-04-28 16:07:26 +0200241 spinlock_t osd_lru_lock;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200242 struct ceph_osd homeless_osd;
243 atomic64_t last_tid; /* tid of last request */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200244 u64 last_linger_id;
245 struct rb_root linger_requests; /* lingering requests */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200246 atomic_t num_requests;
247 atomic_t num_homeless;
Sage Weilf24e9982009-10-06 11:31:10 -0700248 struct delayed_work timeout_work;
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800249 struct delayed_work osds_timeout_work;
Sage Weil039934b2009-11-12 15:05:52 -0800250#ifdef CONFIG_DEBUG_FS
Sage Weilf24e9982009-10-06 11:31:10 -0700251 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -0800252#endif
Sage Weilf24e9982009-10-06 11:31:10 -0700253
254 mempool_t *req_mempool;
255
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -0800256 struct ceph_msgpool msgpool_op;
Sage Weilc16e7862010-03-01 13:02:00 -0800257 struct ceph_msgpool msgpool_op_reply;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700258
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700259 struct workqueue_struct *notify_wq;
Sage Weilf24e9982009-10-06 11:31:10 -0700260};
261
Alex Elder5522ae02013-05-01 12:43:04 -0500262extern int ceph_osdc_setup(void);
263extern void ceph_osdc_cleanup(void);
264
Sage Weilf24e9982009-10-06 11:31:10 -0700265extern int ceph_osdc_init(struct ceph_osd_client *osdc,
266 struct ceph_client *client);
267extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
268
269extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
270 struct ceph_msg *msg);
271extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
272 struct ceph_msg *msg);
273
Alex Elder49719772013-02-11 12:33:24 -0600274extern void osd_req_op_init(struct ceph_osd_request *osd_req,
Yan, Zheng144cba12015-04-27 11:09:54 +0800275 unsigned int which, u16 opcode, u32 flags);
Alex Elder49719772013-02-11 12:33:24 -0600276
277extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
278 unsigned int which,
279 struct page **pages, u64 length,
280 u32 alignment, bool pages_from_pool,
281 bool own_pages);
282
Alex Elderc99d2d42013-04-05 01:27:11 -0500283extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
284 unsigned int which, u16 opcode,
Alex Elder33803f32013-03-13 20:50:00 -0500285 u64 offset, u64 length,
286 u64 truncate_size, u32 truncate_seq);
Alex Elderc99d2d42013-04-05 01:27:11 -0500287extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
288 unsigned int which, u64 length);
Yan, Zheng2c63f492016-01-07 17:32:54 +0800289extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
290 unsigned int which, u64 offset_inc);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500291
292extern struct ceph_osd_data *osd_req_op_extent_osd_data(
293 struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500294 unsigned int which);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500295
296extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500297 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500298 struct page **pages, u64 length,
299 u32 alignment, bool pages_from_pool,
300 bool own_pages);
301extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500302 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500303 struct ceph_pagelist *pagelist);
304#ifdef CONFIG_BLOCK
305extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500306 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500307 struct bio *bio, size_t bio_length);
308#endif /* CONFIG_BLOCK */
309
Alex Elder04017e22013-04-05 14:46:02 -0500310extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
311 unsigned int which,
312 struct ceph_pagelist *pagelist);
Alex Elder6c57b552013-04-19 15:34:49 -0500313extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
314 unsigned int which,
315 struct page **pages, u64 length,
316 u32 alignment, bool pages_from_pool,
317 bool own_pages);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500318extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
Alex Elderc99d2d42013-04-05 01:27:11 -0500319 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500320 struct page **pages, u64 length,
321 u32 alignment, bool pages_from_pool,
322 bool own_pages);
323
Alex Elderc99d2d42013-04-05 01:27:11 -0500324extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
325 unsigned int which, u16 opcode,
Alex Elder04017e22013-04-05 14:46:02 -0500326 const char *class, const char *method);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800327extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
328 u16 opcode, const char *name, const void *value,
329 size_t size, u8 cmp_op, u8 cmp_mode);
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200330extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
331 unsigned int which,
332 u64 expected_object_size,
333 u64 expected_write_size);
Alex Elder33803f32013-03-13 20:50:00 -0500334
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700335extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700336 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500337 unsigned int num_ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700338 bool use_mempool,
Alex Elder54a54002012-11-13 21:11:15 -0600339 gfp_t gfp_flags);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200340int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700341
Sage Weilf24e9982009-10-06 11:31:10 -0700342extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
343 struct ceph_file_layout *layout,
344 struct ceph_vino vino,
Alex Elderacead002013-03-14 14:09:05 -0500345 u64 offset, u64 *len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800346 unsigned int which, int num_ops,
347 int opcode, int flags,
Sage Weilf24e9982009-10-06 11:31:10 -0700348 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500349 u32 truncate_seq, u64 truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -0600350 bool use_mempool);
Sage Weilf24e9982009-10-06 11:31:10 -0700351
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400352extern void ceph_osdc_get_request(struct ceph_osd_request *req);
353extern void ceph_osdc_put_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700354
355extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
356 struct ceph_osd_request *req,
357 bool nofail);
Ilya Dryomovc9f9b932014-06-19 11:38:13 +0400358extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700359extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
360 struct ceph_osd_request *req);
361extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
362
Josh Durgindd935f42013-08-28 21:43:09 -0700363extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
364
Sage Weilf24e9982009-10-06 11:31:10 -0700365extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
366 struct ceph_vino vino,
367 struct ceph_file_layout *layout,
368 u64 off, u64 *plen,
369 u32 truncate_seq, u64 truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800370 struct page **pages, int nr_pages,
371 int page_align);
Sage Weilf24e9982009-10-06 11:31:10 -0700372
373extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
374 struct ceph_vino vino,
375 struct ceph_file_layout *layout,
376 struct ceph_snap_context *sc,
377 u64 off, u64 len,
378 u32 truncate_seq, u64 truncate_size,
379 struct timespec *mtime,
Alex Elder24808822013-02-15 11:42:29 -0600380 struct page **pages, int nr_pages);
Sage Weilf24e9982009-10-06 11:31:10 -0700381
Ilya Dryomov922dab62016-05-26 01:15:02 +0200382/* watch/notify */
383struct ceph_osd_linger_request *
384ceph_osdc_watch(struct ceph_osd_client *osdc,
385 struct ceph_object_id *oid,
386 struct ceph_object_locator *oloc,
387 rados_watchcb2_t wcb,
388 rados_watcherrcb_t errcb,
389 void *data);
390int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
391 struct ceph_osd_linger_request *lreq);
392
393int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
394 struct ceph_object_id *oid,
395 struct ceph_object_locator *oloc,
396 u64 notify_id,
397 u64 cookie,
398 void *payload,
399 size_t payload_len);
Sage Weilf24e9982009-10-06 11:31:10 -0700400#endif
401