Blame view

fs/dlm/requestqueue.h 882 Bytes
e7fd41792   David Teigland   [DLM] The core of...
1
2
3
  /******************************************************************************
  *******************************************************************************
  **
c36258b59   David Teigland   [DLM] block dlm_r...
4
  **  Copyright (C) 2005-2007 Red Hat, Inc.  All rights reserved.
e7fd41792   David Teigland   [DLM] The core of...
5
6
7
8
9
10
11
12
13
14
  **
  **  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 __REQUESTQUEUE_DOT_H__
  #define __REQUESTQUEUE_DOT_H__
8b0d8e03f   Al Viro   dlm: use proper C...
15
  void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms);
e7fd41792   David Teigland   [DLM] The core of...
16
17
18
19
20
  int dlm_process_requestqueue(struct dlm_ls *ls);
  void dlm_wait_requestqueue(struct dlm_ls *ls);
  void dlm_purge_requestqueue(struct dlm_ls *ls);
  
  #endif