/******************************************************************************1*******************************************************************************2**3** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.4** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.5**6** This copyrighted material is made available to anyone wishing to use,7** modify, copy, or redistribute it subject to the terms and conditions8** of the GNU General Public License v.2.9**10*******************************************************************************11******************************************************************************/1213#ifndef __LOCKSPACE_DOT_H__14#define __LOCKSPACE_DOT_H__1516int dlm_lockspace_init(void);17void dlm_lockspace_exit(void);18struct dlm_ls *dlm_find_lockspace_global(uint32_t id);19struct dlm_ls *dlm_find_lockspace_local(void *id);20struct dlm_ls *dlm_find_lockspace_device(int minor);21void dlm_put_lockspace(struct dlm_ls *ls);22void dlm_stop_lockspaces(void);2324#endif /* __LOCKSPACE_DOT_H__ */25262728