Loading...
1/*
2 * Copyright (C) 2006-2010 Red Hat, Inc. All rights reserved.
3 *
4 * This copyrighted material is made available to anyone wishing to use,
5 * modify, copy, or redistribute it subject to the terms and conditions
6 * of the GNU General Public License v.2.
7 */
8
9#ifndef __USER_DOT_H__
10#define __USER_DOT_H__
11
12void dlm_user_add_ast(struct dlm_lkb *lkb, uint32_t flags, int mode,
13 int status, uint32_t sbflags, uint64_t seq);
14int dlm_user_init(void);
15void dlm_user_exit(void);
16int dlm_device_deregister(struct dlm_ls *ls);
17int dlm_user_daemon_available(void);
18
19#endif
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2006-2010 Red Hat, Inc. All rights reserved.
4 */
5
6#ifndef __USER_DOT_H__
7#define __USER_DOT_H__
8
9void dlm_user_add_ast(struct dlm_lkb *lkb, uint32_t flags, int mode,
10 int status, uint32_t sbflags);
11int dlm_user_init(void);
12void dlm_user_exit(void);
13int dlm_device_deregister(struct dlm_ls *ls);
14int dlm_user_daemon_available(void);
15
16#endif