Blame view

fs/dlm/lowcomms.h 973 Bytes
2522fe45a   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-only */
e7fd41792   David Teigland   [DLM] The core of...
2
3
4
5
  /******************************************************************************
  *******************************************************************************
  **
  **  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved.
391fbdc5d   Christine Caulfield   dlm: connect to n...
6
  **  Copyright (C) 2004-2009 Red Hat, Inc.  All rights reserved.
e7fd41792   David Teigland   [DLM] The core of...
7
  **
e7fd41792   David Teigland   [DLM] The core of...
8
9
10
11
12
13
  **
  *******************************************************************************
  ******************************************************************************/
  
  #ifndef __LOWCOMMS_DOT_H__
  #define __LOWCOMMS_DOT_H__
e7fd41792   David Teigland   [DLM] The core of...
14
15
  int dlm_lowcomms_start(void);
  void dlm_lowcomms_stop(void);
36b71a8bf   David Teigland   dlm: fix deadlock...
16
  void dlm_lowcomms_exit(void);
1c032c031   David Teigland   [DLM] PATCH 2/3 d...
17
  int dlm_lowcomms_close(int nodeid);
38d6fd26e   Al Viro   [PATCH] dlm gfp_t...
18
  void *dlm_lowcomms_get_buffer(int nodeid, int len, gfp_t allocation, char **ppc);
e7fd41792   David Teigland   [DLM] The core of...
19
  void dlm_lowcomms_commit_buffer(void *mh);
391fbdc5d   Christine Caulfield   dlm: connect to n...
20
  int dlm_lowcomms_connect_node(int nodeid);
36b71a8bf   David Teigland   dlm: fix deadlock...
21
  int dlm_lowcomms_addr(int nodeid, struct sockaddr_storage *addr, int len);
e7fd41792   David Teigland   [DLM] The core of...
22
23
  
  #endif				/* __LOWCOMMS_DOT_H__ */