Whamcloud - gitweb
LU-7931 tests: setup/cleanup after every test script
[fs/lustre-release.git] / lustre / include / lustre_lfsck.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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2013, 2014, Intel Corporation.
24  */
25 /*
26  * lustre/include/lustre_lfsck.h
27  *
28  * Lustre LFSCK exported functions.
29  *
30  * Author: Fan, Yong <fan.yong@intel.com>
31  */
32
33 #ifndef _LUSTRE_LFSCK_H
34 # define _LUSTRE_LFSCK_H
35
36 #include <lustre/lustre_lfsck_user.h>
37 #include <lustre_dlm.h>
38 #include <lu_object.h>
39 #include <dt_object.h>
40
41 struct lfsck_start_param {
42         struct lfsck_start      *lsp_start;
43         __u32                    lsp_index;
44         unsigned int             lsp_index_valid:1;
45 };
46
47 /* For LE_PAIRS_VERIFY returned status */
48 enum lfsck_pv_status {
49         LPVS_INIT               = 0,
50         LPVS_INCONSISTENT       = 1,
51         LPVS_INCONSISTENT_TOFIX = 2,
52 };
53
54 typedef int (*lfsck_out_notify)(const struct lu_env *env, void *data,
55                                 enum lfsck_events event);
56
57 int lfsck_register_namespace(const struct lu_env *env, struct dt_device *key,
58                              struct ldlm_namespace *ns);
59 int lfsck_register(const struct lu_env *env, struct dt_device *key,
60                    struct dt_device *next, struct obd_device *obd,
61                    lfsck_out_notify notify, void *notify_data, bool master);
62 void lfsck_degister(const struct lu_env *env, struct dt_device *key);
63
64 int lfsck_add_target(const struct lu_env *env, struct dt_device *key,
65                      struct dt_device *tgt, struct obd_export *exp,
66                      __u32 index, bool for_ost);
67 void lfsck_del_target(const struct lu_env *env, struct dt_device *key,
68                       struct dt_device *tgt, __u32 index, bool for_ost);
69
70 int lfsck_start(const struct lu_env *env, struct dt_device *key,
71                 struct lfsck_start_param *lsp);
72 int lfsck_stop(const struct lu_env *env, struct dt_device *key,
73                struct lfsck_stop *stop);
74 int lfsck_in_notify(const struct lu_env *env, struct dt_device *key,
75                     struct lfsck_request *lr, struct thandle *th);
76 int lfsck_query(const struct lu_env *env, struct dt_device *key,
77                 struct lfsck_request *req, struct lfsck_reply *rep,
78                 struct lfsck_query *que);
79
80 int lfsck_get_speed(struct seq_file *m, struct dt_device *key);
81 int lfsck_set_speed(struct dt_device *key, __u32 val);
82 int lfsck_get_windows(struct seq_file *m, struct dt_device *key);
83 int lfsck_set_windows(struct dt_device *key, int val);
84
85 int lfsck_dump(struct seq_file *m, struct dt_device *key, enum lfsck_type type);
86
87 static inline void lfsck_pack_rfa(struct lfsck_request *lr,
88                                   const struct lu_fid *fid,
89                                   __u32 event, __u16 com)
90 {
91         memset(lr, 0, sizeof(*lr));
92         lr->lr_fid = *fid;
93         lr->lr_event = event;
94         lr->lr_active = com;
95 }
96
97 #endif /* _LUSTRE_LFSCK_H */