/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 only, * as published by the Free Software Foundation. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License version 2 for more details. A copy is * included in the COPYING file that accompanied this code. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * GPL HEADER END */ /* * Copyright (c) 2013, 2014, Intel Corporation. */ /* * lustre/include/lustre_lfsck.h * * Lustre LFSCK exported functions. * * Author: Fan, Yong */ #ifndef _LUSTRE_LFSCK_H # define _LUSTRE_LFSCK_H #include #include #include #include struct lfsck_start_param { struct lfsck_start *lsp_start; __u32 lsp_index; unsigned int lsp_index_valid:1; }; /* For LE_PAIRS_VERIFY returned status */ enum lfsck_pv_status { LPVS_INIT = 0, LPVS_INCONSISTENT = 1, LPVS_INCONSISTENT_TOFIX = 2, }; typedef int (*lfsck_out_notify)(const struct lu_env *env, void *data, enum lfsck_events event); int lfsck_register_namespace(const struct lu_env *env, struct dt_device *key, struct ldlm_namespace *ns); int lfsck_register(const struct lu_env *env, struct dt_device *key, struct dt_device *next, struct obd_device *obd, lfsck_out_notify notify, void *notify_data, bool master); void lfsck_degister(const struct lu_env *env, struct dt_device *key); int lfsck_add_target(const struct lu_env *env, struct dt_device *key, struct dt_device *tgt, struct obd_export *exp, __u32 index, bool for_ost); void lfsck_del_target(const struct lu_env *env, struct dt_device *key, struct dt_device *tgt, __u32 index, bool for_ost); int lfsck_start(const struct lu_env *env, struct dt_device *key, struct lfsck_start_param *lsp); int lfsck_stop(const struct lu_env *env, struct dt_device *key, struct lfsck_stop *stop); int lfsck_in_notify(const struct lu_env *env, struct dt_device *key, struct lfsck_request *lr, struct thandle *th); int lfsck_query(const struct lu_env *env, struct dt_device *key, struct lfsck_request *req, struct lfsck_reply *rep, struct lfsck_query *que); int lfsck_get_speed(struct seq_file *m, struct dt_device *key); int lfsck_set_speed(struct dt_device *key, __u32 val); int lfsck_get_windows(struct seq_file *m, struct dt_device *key); int lfsck_set_windows(struct dt_device *key, int val); int lfsck_dump(struct seq_file *m, struct dt_device *key, enum lfsck_type type); static inline void lfsck_pack_rfa(struct lfsck_request *lr, const struct lu_fid *fid, __u32 event, __u16 com) { memset(lr, 0, sizeof(*lr)); lr->lr_fid = *fid; lr->lr_event = event; lr->lr_active = com; } static inline bool lovea_slot_is_dummy(const struct lov_ost_data_v1 *obj) { /* zero area does not care about the bytes-order. */ if (obj->l_ost_oi.oi.oi_id == 0 && obj->l_ost_oi.oi.oi_seq == 0 && obj->l_ost_idx == 0 && obj->l_ost_gen == 0) return true; return false; } #endif /* _LUSTRE_LFSCK_H */