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