xref: /openbmc/linux/fs/dlm/util.h (revision d40d48e1)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /******************************************************************************
3 *******************************************************************************
4 **
5 **  Copyright (C) 2005 Red Hat, Inc.  All rights reserved.
6 **
7 **
8 *******************************************************************************
9 ******************************************************************************/
10 
11 #ifndef __UTIL_DOT_H__
12 #define __UTIL_DOT_H__
13 
14 void dlm_message_out(struct dlm_message *ms);
15 void dlm_message_in(struct dlm_message *ms);
16 void dlm_rcom_out(struct dlm_rcom *rc);
17 void dlm_rcom_in(struct dlm_rcom *rc);
18 void header_out(struct dlm_header *hd);
19 void header_in(struct dlm_header *hd);
20 
21 #endif
22 
23