32 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/******************************************************************************3*******************************************************************************4**5** Copyright (C) 2005-2011 Red Hat, Inc. All rights reserved.6**7**8*******************************************************************************9******************************************************************************/10 11#ifndef __MEMBER_DOT_H__12#define __MEMBER_DOT_H__13 14int dlm_ls_stop(struct dlm_ls *ls);15int dlm_ls_start(struct dlm_ls *ls);16void dlm_clear_members(struct dlm_ls *ls);17void dlm_clear_members_gone(struct dlm_ls *ls);18int dlm_recover_members(struct dlm_ls *ls, struct dlm_recover *rv,int *neg_out);19int dlm_is_removed(struct dlm_ls *ls, int nodeid);20int dlm_is_member(struct dlm_ls *ls, int nodeid);21int dlm_slots_version(const struct dlm_header *h);22void dlm_slot_save(struct dlm_ls *ls, struct dlm_rcom *rc,23 struct dlm_member *memb);24void dlm_slots_copy_out(struct dlm_ls *ls, struct dlm_rcom *rc);25int dlm_slots_copy_in(struct dlm_ls *ls);26int dlm_slots_assign(struct dlm_ls *ls, int *num_slots, int *slots_size,27 struct dlm_slot **slots_out, uint32_t *gen_out);28void dlm_lsop_recover_done(struct dlm_ls *ls);29 30#endif /* __MEMBER_DOT_H__ */31 32