Blame view

fs/dlm/lowcomms.h 1.09 KB
e7fd41792   David Teigland   [DLM] The core of...
1
2
3
4
  /******************************************************************************
  *******************************************************************************
  **
  **  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved.
391fbdc5d   Christine Caulfield   dlm: connect to n...
5
  **  Copyright (C) 2004-2009 Red Hat, Inc.  All rights reserved.
e7fd41792   David Teigland   [DLM] The core of...
6
7
8
9
10
11
12
13
14
15
  **
  **  This copyrighted material is made available to anyone wishing to use,
  **  modify, copy, or redistribute it subject to the terms and conditions
  **  of the GNU General Public License v.2.
  **
  *******************************************************************************
  ******************************************************************************/
  
  #ifndef __LOWCOMMS_DOT_H__
  #define __LOWCOMMS_DOT_H__
e7fd41792   David Teigland   [DLM] The core of...
16
17
  int dlm_lowcomms_start(void);
  void dlm_lowcomms_stop(void);
36b71a8bf   David Teigland   dlm: fix deadlock...
18
  void dlm_lowcomms_exit(void);
1c032c031   David Teigland   [DLM] PATCH 2/3 d...
19
  int dlm_lowcomms_close(int nodeid);
38d6fd26e   Al Viro   [PATCH] dlm gfp_t...
20
  void *dlm_lowcomms_get_buffer(int nodeid, int len, gfp_t allocation, char **ppc);
e7fd41792   David Teigland   [DLM] The core of...
21
  void dlm_lowcomms_commit_buffer(void *mh);
391fbdc5d   Christine Caulfield   dlm: connect to n...
22
  int dlm_lowcomms_connect_node(int nodeid);
36b71a8bf   David Teigland   dlm: fix deadlock...
23
  int dlm_lowcomms_addr(int nodeid, struct sockaddr_storage *addr, int len);
e7fd41792   David Teigland   [DLM] The core of...
24
25
  
  #endif				/* __LOWCOMMS_DOT_H__ */