2019-05-28 16:57:20 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2006-01-18 09:30:29 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*******************************************************************************
|
|
|
|
**
|
2010-02-24 17:08:18 +00:00
|
|
|
** Copyright (C) 2005-2010 Red Hat, Inc. All rights reserved.
|
2006-01-18 09:30:29 +00:00
|
|
|
**
|
|
|
|
**
|
|
|
|
*******************************************************************************
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASTD_DOT_H__
|
|
|
|
#define __ASTD_DOT_H__
|
|
|
|
|
2024-06-03 21:55:56 +00:00
|
|
|
bool dlm_may_skip_callback(struct dlm_lkb *lkb, uint32_t flags, int mode,
|
|
|
|
int status, uint32_t sbflags, int *copy_lvb);
|
|
|
|
int dlm_get_cb(struct dlm_lkb *lkb, uint32_t flags, int mode,
|
|
|
|
int status, uint32_t sbflags,
|
|
|
|
struct dlm_callback **cb);
|
2011-04-05 18:16:24 +00:00
|
|
|
void dlm_add_cb(struct dlm_lkb *lkb, uint32_t flags, int mode, int status,
|
|
|
|
uint32_t sbflags);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2011-04-05 18:16:24 +00:00
|
|
|
int dlm_callback_start(struct dlm_ls *ls);
|
|
|
|
void dlm_callback_stop(struct dlm_ls *ls);
|
|
|
|
void dlm_callback_suspend(struct dlm_ls *ls);
|
|
|
|
void dlm_callback_resume(struct dlm_ls *ls);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-04-05 18:16:24 +00:00
|
|
|
|