2019-05-28 19:57:20 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2006-01-18 12:30:29 +03:00
|
|
|
/******************************************************************************
|
|
|
|
*******************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
|
|
|
|
** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
|
|
|
|
**
|
|
|
|
**
|
|
|
|
*******************************************************************************
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __MIDCOMMS_DOT_H__
|
|
|
|
#define __MIDCOMMS_DOT_H__
|
|
|
|
|
2021-05-21 22:08:47 +03:00
|
|
|
struct midcomms_node;
|
|
|
|
|
2020-09-24 17:31:26 +03:00
|
|
|
int dlm_process_incoming_buffer(int nodeid, unsigned char *buf, int buflen);
|
2021-05-21 22:08:41 +03:00
|
|
|
struct dlm_mhandle *dlm_midcomms_get_mhandle(int nodeid, int len,
|
|
|
|
gfp_t allocation, char **ppc);
|
|
|
|
void dlm_midcomms_commit_mhandle(struct dlm_mhandle *mh);
|
|
|
|
int dlm_midcomms_close(int nodeid);
|
|
|
|
int dlm_midcomms_start(void);
|
|
|
|
void dlm_midcomms_shutdown(void);
|
|
|
|
void dlm_midcomms_add_member(int nodeid);
|
|
|
|
void dlm_midcomms_remove_member(int nodeid);
|
2021-05-21 22:08:46 +03:00
|
|
|
void dlm_midcomms_unack_msg_resend(int nodeid);
|
2021-05-21 22:08:47 +03:00
|
|
|
const char *dlm_midcomms_state(struct midcomms_node *node);
|
|
|
|
unsigned long dlm_midcomms_flags(struct midcomms_node *node);
|
|
|
|
int dlm_midcomms_send_queue_cnt(struct midcomms_node *node);
|
|
|
|
uint32_t dlm_midcomms_version(struct midcomms_node *node);
|
2006-01-18 12:30:29 +03:00
|
|
|
|
|
|
|
#endif /* __MIDCOMMS_DOT_H__ */
|
|
|
|
|