Whamcloud - gitweb
LU-8648 all: remove all Sun license and URL references
[fs/lustre-release.git] / lustre / include / lu_target.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef _LUSTRE_LU_TARGET_H
34 #define _LUSTRE_LU_TARGET_H
35
36 #include <dt_object.h>
37 #include <lustre_export.h>
38 #include <lustre_update.h>
39 #include <lustre_disk.h>
40 #include <lustre_lfsck.h>
41
42 /* Each one represents a distribute transaction replay
43  * operation, and updates on each MDTs are linked to
44  * dtr_sub_list */
45 struct distribute_txn_replay_req {
46         /* update record, may be vmalloc'd */
47         struct llog_update_record *dtrq_lur;
48         int                     dtrq_lur_size;
49
50         /* linked to the distribute transaction replay
51          * list (tdtd_replay_list) */
52         struct list_head        dtrq_list;
53         __u64                   dtrq_master_transno;
54         __u64                   dtrq_batchid;
55         __u64                   dtrq_xid;
56
57         /* all of sub updates are linked here */
58         struct list_head        dtrq_sub_list;
59         spinlock_t              dtrq_sub_list_lock;
60
61         /* If the local update has been executed during replay */
62         __u32                   dtrq_local_update_executed:1;
63 };
64
65 /* Each one represents a sub replay item under a distribute
66  * transaction. A distribute transaction will be operated in
67  * two or more MDTs, and updates on each MDT will be represented
68  * by this structure */
69 struct distribute_txn_replay_req_sub {
70         __u32                   dtrqs_mdt_index;
71
72         /* All of cookies for the update will be linked here */
73         spinlock_t              dtrqs_cookie_list_lock;
74         struct list_head        dtrqs_cookie_list;
75         struct list_head        dtrqs_list;
76 };
77
78 struct target_distribute_txn_data;
79 typedef int (*distribute_txn_replay_handler_t)(struct lu_env *env,
80                                        struct target_distribute_txn_data *tdtd,
81                                        struct distribute_txn_replay_req *dtrq);
82 typedef char *(*target_show_update_logs_retrievers_t)(void *data, int *size,
83                                                       int *count);
84 struct target_distribute_txn_data {
85         /* Distribution ID is used to identify updates log on different
86          * MDTs for one operation */
87         spinlock_t              tdtd_batchid_lock;
88         __u64                   tdtd_batchid;
89         struct lu_target        *tdtd_lut;
90         struct dt_object        *tdtd_batchid_obj;
91         struct dt_device        *tdtd_dt;
92
93         /* Committed batchid for distribute transaction */
94         __u64                   tdtd_committed_batchid;
95
96         /* List for distribute transaction */
97         struct list_head        tdtd_list;
98
99         /* Threads to manage distribute transaction */
100         wait_queue_head_t       tdtd_commit_thread_waitq;
101         atomic_t                tdtd_refcount;
102
103         /* recovery update */
104         distribute_txn_replay_handler_t tdtd_replay_handler;
105         struct list_head                tdtd_replay_list;
106         struct list_head                tdtd_replay_finish_list;
107         spinlock_t                      tdtd_replay_list_lock;
108         /* last replay update transno */
109         __u32                           tdtd_replay_ready:1;
110
111         /* Manage the llog recovery threads */
112         atomic_t                tdtd_recovery_threads_count;
113         wait_queue_head_t       tdtd_recovery_threads_waitq;
114         target_show_update_logs_retrievers_t
115                                 tdtd_show_update_logs_retrievers;
116         void                    *tdtd_show_retrievers_cbdata;
117 };
118
119 struct lu_target {
120         struct obd_device       *lut_obd;
121         struct dt_device        *lut_bottom;
122
123         struct target_distribute_txn_data *lut_tdtd;
124         struct ptlrpc_thread    lut_tdtd_commit_thread;
125
126         /* supported opcodes and handlers for this target */
127         struct tgt_opc_slice    *lut_slice;
128         __u32                    lut_reply_fail_id;
129         __u32                    lut_request_fail_id;
130
131         /* sptlrpc rules */
132         rwlock_t                 lut_sptlrpc_lock;
133         struct sptlrpc_rule_set  lut_sptlrpc_rset;
134         spinlock_t               lut_flags_lock;
135         unsigned int             lut_syncjournal:1,
136                                  lut_sync_lock_cancel:2,
137                                  /* e.g. OST node */
138                                  lut_no_reconstruct:1;
139         /** last_rcvd file */
140         struct dt_object        *lut_last_rcvd;
141         /* transaction callbacks */
142         struct dt_txn_callback   lut_txn_cb;
143         /** server data in last_rcvd file */
144         struct lr_server_data    lut_lsd;
145         /** Server last transaction number */
146         __u64                    lut_last_transno;
147         /** Lock protecting last transaction number */
148         spinlock_t               lut_translock;
149         /** Lock protecting client bitmap */
150         spinlock_t               lut_client_bitmap_lock;
151         /** Bitmap of known clients */
152         unsigned long           *lut_client_bitmap;
153         /* Number of clients supporting multiple modify RPCs
154          * recorded in the bitmap */
155         atomic_t                 lut_num_clients;
156         /* Client generation to identify client slot reuse */
157         atomic_t                 lut_client_generation;
158         /** reply_data file */
159         struct dt_object        *lut_reply_data;
160         /** Bitmap of used slots in the reply data file */
161         unsigned long           **lut_reply_bitmap;
162         /** target sync count, used for debug & test */
163         atomic_t                 lut_sync_count;
164
165         /** cross MDT locks which should trigger Sync-on-Lock-Cancel */
166         spinlock_t               lut_slc_locks_guard;
167         struct list_head         lut_slc_locks;
168 };
169
170 /* number of slots in reply bitmap */
171 #define LUT_REPLY_SLOTS_PER_CHUNK (1<<20)
172 #define LUT_REPLY_SLOTS_MAX_CHUNKS 16
173
174 /**
175  * Target reply data
176  */
177 struct tg_reply_data {
178         /** chain of reply data anchored in tg_export_data */
179         struct list_head        trd_list;
180         /** copy of on-disk reply data */
181         struct lsd_reply_data   trd_reply;
182         /** versions for Version Based Recovery */
183         __u64                   trd_pre_versions[4];
184         /** slot index in reply_data file */
185         int                     trd_index;
186         /** tag the client used */
187         __u16                   trd_tag;
188 };
189
190 extern struct lu_context_key tgt_session_key;
191
192 struct tgt_session_info {
193         /*
194          * The following members will be filled explicitly
195          * with specific data in tgt_ses_init().
196          */
197         struct req_capsule      *tsi_pill;
198
199         /*
200          * Lock request for "habeo clavis" operations.
201          */
202         struct ldlm_request     *tsi_dlm_req;
203
204         /* although we have export in req, there are cases when it is not
205          * available, e.g. closing files upon export destroy */
206         struct obd_export       *tsi_exp;
207         const struct lu_env     *tsi_env;
208         struct lu_target        *tsi_tgt;
209
210         const struct mdt_body   *tsi_mdt_body;
211         struct ost_body         *tsi_ost_body;
212         struct lu_object        *tsi_corpus;
213
214         struct lu_fid            tsi_fid;
215         struct ldlm_res_id       tsi_resid;
216
217         /* object affected by VBR, for last_rcvd_update */
218         struct dt_object        *tsi_vbr_obj;
219         /* opdata for mdt_reint_open(), has the same value as
220          * ldlm_reply:lock_policy_res1.  The tgt_update_last_rcvd() stores
221          * this value onto disk for recovery when tgt_txn_stop_cb() is called.
222          */
223         __u64                    tsi_opdata;
224
225         /*
226          * Additional fail id that can be set by handler.
227          */
228         int                      tsi_reply_fail_id;
229         bool                     tsi_preprocessed;
230         /* request JobID */
231         char                    *tsi_jobid;
232
233         /* update replay */
234         __u64                   tsi_xid;
235         __u32                   tsi_result;
236         __u32                   tsi_client_gen;
237 };
238
239 static inline struct tgt_session_info *tgt_ses_info(const struct lu_env *env)
240 {
241         struct tgt_session_info *tsi;
242
243         LASSERT(env->le_ses != NULL);
244         tsi = lu_context_key_get(env->le_ses, &tgt_session_key);
245         LASSERT(tsi);
246         return tsi;
247 }
248
249 static inline void tgt_vbr_obj_set(const struct lu_env *env,
250                                    struct dt_object *obj)
251 {
252         struct tgt_session_info *tsi;
253
254         if (env->le_ses != NULL) {
255                 tsi = tgt_ses_info(env);
256                 tsi->tsi_vbr_obj = obj;
257         }
258 }
259
260 static inline void tgt_opdata_set(const struct lu_env *env, __u64 flags)
261 {
262         struct tgt_session_info *tsi;
263
264         if (env->le_ses != NULL) {
265                 tsi = tgt_ses_info(env);
266                 tsi->tsi_opdata |= flags;
267         }
268 }
269
270 static inline void tgt_opdata_clear(const struct lu_env *env, __u64 flags)
271 {
272         struct tgt_session_info *tsi;
273
274         if (env->le_ses != NULL) {
275                 tsi = tgt_ses_info(env);
276                 tsi->tsi_opdata &= ~flags;
277         }
278 }
279
280 /*
281  * Generic unified target support.
282  */
283 enum tgt_handler_flags {
284         /*
285          * struct *_body is passed in the incoming message, and object
286          * identified by this fid exists on disk.
287          *                            *
288          * "habeo corpus" == "I have a body"
289          */
290         HABEO_CORPUS = (1 << 0),
291         /*
292          * struct ldlm_request is passed in the incoming message.
293          *
294          * "habeo clavis" == "I have a key"
295          *                                     */
296         HABEO_CLAVIS = (1 << 1),
297         /*
298          * this request has fixed reply format, so that reply message can be
299          * packed by generic code.
300          *
301          * "habeo refero" == "I have a reply"
302          */
303         HABEO_REFERO = (1 << 2),
304         /*
305          * this request will modify something, so check whether the file system
306          * is readonly or not, then return -EROFS to client asap if necessary.
307          *
308          * "mutabor" == "I shall modify"
309          */
310         MUTABOR      = (1 << 3)
311 };
312
313 struct tgt_handler {
314         /* The name of this handler. */
315         const char              *th_name;
316         /* Fail id, check at the beginning */
317         int                      th_fail_id;
318         /* Operation code */
319         __u32                    th_opc;
320         /* Flags in enum tgt_handler_flags */
321         __u32                    th_flags;
322         /* Request version for this opcode */
323         int                      th_version;
324         /* Handler function */
325         int                     (*th_act)(struct tgt_session_info *tsi);
326         /* Handler function for high priority requests */
327         void                    (*th_hp)(struct tgt_session_info *tsi);
328         /* Request format for this request */
329         const struct req_format *th_fmt;
330 };
331
332 struct tgt_opc_slice {
333         __u32                    tos_opc_start; /* First op code */
334         __u32                    tos_opc_end; /* Last op code */
335         struct tgt_handler      *tos_hs; /* Registered handler */
336 };
337
338 static inline struct ptlrpc_request *tgt_ses_req(struct tgt_session_info *tsi)
339 {
340         return tsi->tsi_pill ? tsi->tsi_pill->rc_req : NULL;
341 }
342
343 static inline __u64 tgt_conn_flags(struct tgt_session_info *tsi)
344 {
345         LASSERT(tsi->tsi_exp);
346         return exp_connect_flags(tsi->tsi_exp);
347 }
348
349 static inline int req_is_replay(struct ptlrpc_request *req)
350 {
351         LASSERT(req->rq_reqmsg);
352         return !!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY);
353 }
354
355 static inline bool tgt_is_multimodrpcs_client(struct obd_export *exp)
356 {
357         return exp_connect_flags(exp) & OBD_CONNECT_MULTIMODRPCS;
358 }
359
360
361 /* target/tgt_handler.c */
362 int tgt_request_handle(struct ptlrpc_request *req);
363 char *tgt_name(struct lu_target *tgt);
364 void tgt_counter_incr(struct obd_export *exp, int opcode);
365 int tgt_connect_check_sptlrpc(struct ptlrpc_request *req,
366                               struct obd_export *exp);
367 int tgt_adapt_sptlrpc_conf(struct lu_target *tgt, int initial);
368 int tgt_connect(struct tgt_session_info *tsi);
369 int tgt_disconnect(struct tgt_session_info *uti);
370 int tgt_obd_ping(struct tgt_session_info *tsi);
371 int tgt_enqueue(struct tgt_session_info *tsi);
372 int tgt_convert(struct tgt_session_info *tsi);
373 int tgt_bl_callback(struct tgt_session_info *tsi);
374 int tgt_cp_callback(struct tgt_session_info *tsi);
375 int tgt_llog_open(struct tgt_session_info *tsi);
376 int tgt_llog_close(struct tgt_session_info *tsi);
377 int tgt_llog_destroy(struct tgt_session_info *tsi);
378 int tgt_llog_read_header(struct tgt_session_info *tsi);
379 int tgt_llog_next_block(struct tgt_session_info *tsi);
380 int tgt_llog_prev_block(struct tgt_session_info *tsi);
381 int tgt_sec_ctx_init(struct tgt_session_info *tsi);
382 int tgt_sec_ctx_init_cont(struct tgt_session_info *tsi);
383 int tgt_sec_ctx_fini(struct tgt_session_info *tsi);
384 int tgt_sendpage(struct tgt_session_info *tsi, struct lu_rdpg *rdpg, int nob);
385 int tgt_send_buffer(struct tgt_session_info *tsi, struct lu_rdbuf *rdbuf);
386 int tgt_validate_obdo(struct tgt_session_info *tsi, struct obdo *oa);
387 int tgt_sync(const struct lu_env *env, struct lu_target *tgt,
388              struct dt_object *obj, __u64 start, __u64 end);
389
390 int tgt_io_thread_init(struct ptlrpc_thread *thread);
391 void tgt_io_thread_done(struct ptlrpc_thread *thread);
392
393 int tgt_extent_lock(struct ldlm_namespace *ns, struct ldlm_res_id *res_id,
394                     __u64 start, __u64 end, struct lustre_handle *lh,
395                     int mode, __u64 *flags);
396 void tgt_extent_unlock(struct lustre_handle *lh, enum ldlm_mode mode);
397 int tgt_brw_lock(struct ldlm_namespace *ns, struct ldlm_res_id *res_id,
398                  struct obd_ioobj *obj, struct niobuf_remote *nb,
399                  struct lustre_handle *lh, enum ldlm_mode mode);
400 void tgt_brw_unlock(struct obd_ioobj *obj, struct niobuf_remote *niob,
401                     struct lustre_handle *lh, enum ldlm_mode mode);
402 int tgt_brw_read(struct tgt_session_info *tsi);
403 int tgt_brw_write(struct tgt_session_info *tsi);
404 int tgt_hpreq_handler(struct ptlrpc_request *req);
405 void tgt_register_lfsck_in_notify(int (*notify)(const struct lu_env *,
406                                                 struct dt_device *,
407                                                 struct lfsck_request *,
408                                                 struct thandle *));
409 void tgt_register_lfsck_query(int (*query)(const struct lu_env *,
410                                            struct dt_device *,
411                                            struct lfsck_request *,
412                                            struct lfsck_reply *,
413                                            struct lfsck_query *));
414 bool req_can_reconstruct(struct ptlrpc_request *req, struct tg_reply_data *trd);
415
416 extern struct tgt_handler tgt_sec_ctx_handlers[];
417 extern struct tgt_handler tgt_lfsck_handlers[];
418 extern struct tgt_handler tgt_obd_handlers[];
419 extern struct tgt_handler tgt_dlm_handlers[];
420 extern struct tgt_handler tgt_llog_handlers[];
421 extern struct tgt_handler tgt_out_handlers[];
422 extern struct tgt_handler fld_handlers[];
423 extern struct tgt_handler seq_handlers[];
424
425 typedef void (*tgt_cb_t)(struct lu_target *lut, __u64 transno,
426                          void *data, int err);
427 struct tgt_commit_cb {
428         tgt_cb_t  tgt_cb_func;
429         void     *tgt_cb_data;
430 };
431
432 int tgt_hpreq_handler(struct ptlrpc_request *req);
433
434 /* target/tgt_main.c */
435 void tgt_boot_epoch_update(struct lu_target *lut);
436 void tgt_save_slc_lock(struct lu_target *lut, struct ldlm_lock *lock,
437                        __u64 transno);
438 void tgt_discard_slc_lock(struct lu_target *lut, struct ldlm_lock *lock);
439 int tgt_last_commit_cb_add(struct thandle *th, struct lu_target *lut,
440                            struct obd_export *exp, __u64 transno);
441 int tgt_new_client_cb_add(struct thandle *th, struct obd_export *exp);
442 int tgt_init(const struct lu_env *env, struct lu_target *lut,
443              struct obd_device *obd, struct dt_device *dt,
444              struct tgt_opc_slice *slice,
445              int request_fail_id, int reply_fail_id);
446 void tgt_fini(const struct lu_env *env, struct lu_target *lut);
447 int tgt_client_alloc(struct obd_export *exp);
448 void tgt_client_free(struct obd_export *exp);
449 int tgt_client_del(const struct lu_env *env, struct obd_export *exp);
450 int tgt_client_add(const struct lu_env *env, struct obd_export *exp, int);
451 int tgt_client_new(const struct lu_env *env, struct obd_export *exp);
452 int tgt_client_data_read(const struct lu_env *env, struct lu_target *tg,
453                          struct lsd_client_data *lcd, loff_t *off, int index);
454 int tgt_client_data_write(const struct lu_env *env, struct lu_target *tg,
455                           struct lsd_client_data *lcd, loff_t *off, struct thandle *th);
456 int tgt_server_data_read(const struct lu_env *env, struct lu_target *tg);
457 int tgt_server_data_write(const struct lu_env *env, struct lu_target *tg,
458                           struct thandle *th);
459 int tgt_server_data_update(const struct lu_env *env, struct lu_target *tg,
460                            int sync);
461 int tgt_truncate_last_rcvd(const struct lu_env *env, struct lu_target *tg,
462                            loff_t off);
463 int tgt_reply_data_init(const struct lu_env *env, struct lu_target *tgt);
464 bool tgt_lookup_reply(struct ptlrpc_request *req, struct tg_reply_data *trd);
465 int tgt_add_reply_data(const struct lu_env *env, struct lu_target *tgt,
466                        struct tg_export_data *ted, struct tg_reply_data *trd,
467                        struct thandle *th, bool update_lrd_file);
468 struct tg_reply_data *tgt_lookup_reply_by_xid(struct tg_export_data *ted,
469                                                __u64 xid);
470
471 /* target/update_trans.c */
472 int distribute_txn_init(const struct lu_env *env,
473                         struct lu_target *lut,
474                         struct target_distribute_txn_data *tdtd,
475                         __u32 index);
476 void distribute_txn_fini(const struct lu_env *env,
477                          struct target_distribute_txn_data *tdtd);
478
479 /* target/update_recovery.c */
480 int insert_update_records_to_replay_list(struct target_distribute_txn_data *,
481                                          struct llog_update_record *,
482                                          struct llog_cookie *, __u32);
483 void dtrq_list_dump(struct target_distribute_txn_data *tdtd,
484                     unsigned int mask);
485 void dtrq_list_destroy(struct target_distribute_txn_data *tdtd);
486 int distribute_txn_replay_handle(struct lu_env *env,
487                            struct target_distribute_txn_data *tdtd,
488                            struct distribute_txn_replay_req *dtrq);
489 __u64 distribute_txn_get_next_transno(struct target_distribute_txn_data *tdtd);
490 struct distribute_txn_replay_req *
491 distribute_txn_get_next_req(struct target_distribute_txn_data *tdtd);
492 void dtrq_destroy(struct distribute_txn_replay_req *dtrq);
493 struct distribute_txn_replay_req_sub *
494 dtrq_sub_lookup(struct distribute_txn_replay_req *dtrq, __u32 mdt_index);
495 struct distribute_txn_replay_req *
496 distribute_txn_lookup_finish_list(struct target_distribute_txn_data *tdtd,
497                                   __u64 transno);
498 bool is_req_replayed_by_update(struct ptlrpc_request *req);
499 enum {
500         ESERIOUS = 0x0001000
501 };
502
503 static inline int err_serious(int rc)
504 {
505         LASSERT(rc < 0);
506         return -(-rc | ESERIOUS);
507 }
508
509 static inline int clear_serious(int rc)
510 {
511         if (rc < 0)
512                 rc = -(-rc & ~ESERIOUS);
513         return rc;
514 }
515
516 static inline int is_serious(int rc)
517 {
518         return (rc < 0 && -rc & ESERIOUS);
519 }
520
521 /*
522  * Unified target generic handers macros and generic functions.
523  */
524 #define TGT_RPC_HANDLER_HP(base, flags, opc, fn, hp, fmt, version)      \
525 [opc - base] = {                                                        \
526         .th_name        = #opc,                                         \
527         .th_fail_id     = OBD_FAIL_ ## opc ## _NET,                     \
528         .th_opc         = opc,                                          \
529         .th_flags       = flags,                                        \
530         .th_act         = fn,                                           \
531         .th_fmt         = fmt,                                          \
532         .th_version     = version,                                      \
533         .th_hp          = hp,                                           \
534 }
535 #define TGT_RPC_HANDLER(base, flags, opc, fn, fmt, version)             \
536         TGT_RPC_HANDLER_HP(base, flags, opc, fn, NULL, fmt, version)
537
538 /* MDT Request with a format known in advance */
539 #define TGT_MDT_HDL(flags, name, fn)                                    \
540         TGT_RPC_HANDLER(MDS_FIRST_OPC, flags, name, fn, &RQF_ ## name,  \
541                         LUSTRE_MDS_VERSION)
542 /* Request with a format we do not yet know */
543 #define TGT_MDT_HDL_VAR(flags, name, fn)                                \
544         TGT_RPC_HANDLER(MDS_FIRST_OPC, flags, name, fn, NULL,           \
545                         LUSTRE_MDS_VERSION)
546
547 /* OST Request with a format known in advance */
548 #define TGT_OST_HDL(flags, name, fn)                                    \
549         TGT_RPC_HANDLER(OST_FIRST_OPC, flags, name, fn, &RQF_ ## name,  \
550                         LUSTRE_OST_VERSION)
551 #define TGT_OST_HDL_HP(flags, name, fn, hp)                             \
552         TGT_RPC_HANDLER_HP(OST_FIRST_OPC, flags, name, fn, hp,          \
553                            &RQF_ ## name, LUSTRE_OST_VERSION)
554
555 /* MGS request with a format known in advance */
556 #define TGT_MGS_HDL(flags, name, fn)                                    \
557         TGT_RPC_HANDLER(MGS_FIRST_OPC, flags, name, fn, &RQF_ ## name,  \
558                         LUSTRE_MGS_VERSION)
559 #define TGT_MGS_HDL_VAR(flags, name, fn)                                \
560         TGT_RPC_HANDLER(MGS_FIRST_OPC, flags, name, fn, NULL,           \
561                         LUSTRE_MGS_VERSION)
562
563 /*
564  * OBD handler macros and generic functions.
565  */
566 #define TGT_OBD_HDL(flags, name, fn)                                    \
567         TGT_RPC_HANDLER(OBD_FIRST_OPC, flags, name, fn, &RQF_ ## name,  \
568                         LUSTRE_OBD_VERSION)
569 #define TGT_OBD_HDL_VAR(flags, name, fn)                                \
570         TGT_RPC_HANDLER(OBD_FIRST_OPC, flags, name, fn, NULL,           \
571                         LUSTRE_OBD_VERSION)
572
573 /*
574  * DLM handler macros and generic functions.
575  */
576 #define TGT_DLM_HDL_VAR(flags, name, fn)                                \
577         TGT_RPC_HANDLER(LDLM_FIRST_OPC, flags, name, fn, NULL,          \
578                         LUSTRE_DLM_VERSION)
579 #define TGT_DLM_HDL(flags, name, fn)                                    \
580         TGT_RPC_HANDLER(LDLM_FIRST_OPC, flags, name, fn, &RQF_ ## name, \
581                         LUSTRE_DLM_VERSION)
582
583 /*
584  * LLOG handler macros and generic functions.
585  */
586 #define TGT_LLOG_HDL_VAR(flags, name, fn)                               \
587         TGT_RPC_HANDLER(LLOG_FIRST_OPC, flags, name, fn, NULL,          \
588                         LUSTRE_LOG_VERSION)
589 #define TGT_LLOG_HDL(flags, name, fn)                                   \
590         TGT_RPC_HANDLER(LLOG_FIRST_OPC, flags, name, fn, &RQF_ ## name, \
591                         LUSTRE_LOG_VERSION)
592
593 /*
594  * Sec context handler macros and generic functions.
595  */
596 #define TGT_SEC_HDL_VAR(flags, name, fn)                                \
597         TGT_RPC_HANDLER(SEC_FIRST_OPC, flags, name, fn, NULL,           \
598                         LUSTRE_OBD_VERSION)
599
600 #define TGT_QUOTA_HDL(flags, name, fn)                                  \
601         TGT_RPC_HANDLER(QUOTA_DQACQ, flags, name, fn, &RQF_ ## name,    \
602                         LUSTRE_MDS_VERSION)
603
604 /* Sequence service handlers */
605 #define TGT_SEQ_HDL(flags, name, fn)                                    \
606         TGT_RPC_HANDLER(SEQ_QUERY, flags, name, fn, &RQF_ ## name,      \
607                         LUSTRE_MDS_VERSION)
608
609 /* FID Location Database handlers */
610 #define TGT_FLD_HDL_VAR(flags, name, fn)                                \
611         TGT_RPC_HANDLER(FLD_QUERY, flags, name, fn, NULL,               \
612                         LUSTRE_MDS_VERSION)
613
614 /* LFSCK handlers */
615 #define TGT_LFSCK_HDL(flags, name, fn)                                  \
616         TGT_RPC_HANDLER(LFSCK_FIRST_OPC, flags, name, fn,               \
617                         &RQF_ ## name, LUSTRE_OBD_VERSION)
618
619 /* Request with a format known in advance */
620 #define TGT_UPDATE_HDL(flags, name, fn)                                 \
621         TGT_RPC_HANDLER(OUT_UPDATE, flags, name, fn, &RQF_ ## name,     \
622                         LUSTRE_MDS_VERSION)
623
624 #endif /* __LUSTRE_LU_TARGET_H */