Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/fs/dlm/requestqueue.h
26278 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/******************************************************************************
3
*******************************************************************************
4
**
5
** Copyright (C) 2005-2007 Red Hat, Inc. All rights reserved.
6
**
7
**
8
*******************************************************************************
9
******************************************************************************/
10
11
#ifndef __REQUESTQUEUE_DOT_H__
12
#define __REQUESTQUEUE_DOT_H__
13
14
void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid,
15
const struct dlm_message *ms);
16
int dlm_process_requestqueue(struct dlm_ls *ls);
17
void dlm_wait_requestqueue(struct dlm_ls *ls);
18
void dlm_purge_requestqueue(struct dlm_ls *ls);
19
20
#endif
21
22
23