Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- |
| 2 | * vim: noexpandtab sw=8 ts=8 sts=0: |
| 3 | * |
| 4 | * stackglue.h |
| 5 | * |
| 6 | * Glue to the underlying cluster stack. |
| 7 | * |
| 8 | * Copyright (C) 2007 Oracle. All rights reserved. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public |
| 12 | * License as published by the Free Software Foundation, version 2. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | */ |
| 19 | |
| 20 | |
| 21 | #ifndef STACKGLUE_H |
| 22 | #define STACKGLUE_H |
| 23 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 24 | #include <linux/types.h> |
| 25 | #include <linux/list.h> |
| 26 | #include <linux/dlmconstants.h> |
| 27 | |
| 28 | /* |
| 29 | * dlmconstants.h does not have a LOCAL flag. We hope to remove it |
| 30 | * some day, but right now we need it. Let's fake it. This value is larger |
| 31 | * than any flag in dlmconstants.h. |
| 32 | */ |
| 33 | #define DLM_LKF_LOCAL 0x00100000 |
| 34 | |
| 35 | #include "dlm/dlmapi.h" |
| 36 | |
Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 37 | struct ocfs2_locking_protocol { |
| 38 | void (*lp_lock_ast)(void *astarg); |
| 39 | void (*lp_blocking_ast)(void *astarg, int level); |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame^] | 40 | void (*lp_unlock_ast)(void *astarg, int error); |
Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 41 | }; |
| 42 | |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame^] | 43 | int ocfs2_dlm_lock(struct dlm_ctxt *dlm, |
Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 44 | int mode, |
| 45 | struct dlm_lockstatus *lksb, |
| 46 | u32 flags, |
| 47 | void *name, |
| 48 | unsigned int namelen, |
| 49 | void *astarg); |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame^] | 50 | int ocfs2_dlm_unlock(struct dlm_ctxt *dlm, |
Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 51 | struct dlm_lockstatus *lksb, |
| 52 | u32 flags, |
| 53 | void *astarg); |
| 54 | |
| 55 | void o2cb_get_stack(struct ocfs2_locking_protocol *proto); |
| 56 | void o2cb_put_stack(void); |
| 57 | |
| 58 | #endif /* STACKGLUE_H */ |