/******************************************************************************1*******************************************************************************2**3** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.4** Copyright (C) 2004-2009 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 __LOWCOMMS_DOT_H__14#define __LOWCOMMS_DOT_H__1516int dlm_lowcomms_start(void);17void dlm_lowcomms_stop(void);18int dlm_lowcomms_close(int nodeid);19void *dlm_lowcomms_get_buffer(int nodeid, int len, gfp_t allocation, char **ppc);20void dlm_lowcomms_commit_buffer(void *mh);21int dlm_lowcomms_connect_node(int nodeid);2223#endif /* __LOWCOMMS_DOT_H__ */24252627