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