/* SPDX-License-Identifier: GPL-2.0-only */1/******************************************************************************2*******************************************************************************3**4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.5** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.6**7**8*******************************************************************************9******************************************************************************/1011#ifndef __RECOVERD_DOT_H__12#define __RECOVERD_DOT_H__1314void dlm_recoverd_stop(struct dlm_ls *ls);15int dlm_recoverd_start(struct dlm_ls *ls);16void dlm_recoverd_suspend(struct dlm_ls *ls);17void dlm_recoverd_resume(struct dlm_ls *ls);1819#endif /* __RECOVERD_DOT_H__ */20212223