Thomas Gleixner | 2522fe4 | 2019-05-28 09:57:20 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 2 | /****************************************************************************** |
| 3 | ******************************************************************************* |
| 4 | ** |
David Teigland | c36258b | 2007-09-27 15:53:38 -0500 | [diff] [blame] | 5 | ** Copyright (C) 2005-2007 Red Hat, Inc. All rights reserved. |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 6 | ** |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 7 | ** |
| 8 | ******************************************************************************* |
| 9 | ******************************************************************************/ |
| 10 | |
| 11 | #ifndef __REQUESTQUEUE_DOT_H__ |
| 12 | #define __REQUESTQUEUE_DOT_H__ |
| 13 | |
Al Viro | 8b0d8e0 | 2008-01-25 00:28:28 -0500 | [diff] [blame] | 14 | void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms); |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 15 | int dlm_process_requestqueue(struct dlm_ls *ls); |
| 16 | void dlm_wait_requestqueue(struct dlm_ls *ls); |
| 17 | void dlm_purge_requestqueue(struct dlm_ls *ls); |
| 18 | |
| 19 | #endif |
| 20 | |