xref: /openbmc/linux/fs/ocfs2/dlm/dlmconvert.h (revision 9d4fa1a1)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /* -*- mode: c; c-basic-offset: 8; -*-
3  * vim: noexpandtab sw=8 ts=8 sts=0:
4  *
5  * dlmconvert.h
6  *
7  * Copyright (C) 2004 Oracle.  All rights reserved.
8  */
9 
10 #ifndef DLMCONVERT_H
11 #define DLMCONVERT_H
12 
13 enum dlm_status dlmconvert_master(struct dlm_ctxt *dlm,
14 				  struct dlm_lock_resource *res,
15 				  struct dlm_lock *lock, int flags, int type);
16 enum dlm_status dlmconvert_remote(struct dlm_ctxt *dlm,
17 				  struct dlm_lock_resource *res,
18 				  struct dlm_lock *lock, int flags, int type);
19 
20 #endif
21