Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /******************************************************************************
0003 *******************************************************************************
0004 **
0005 **  Copyright (C) 2005-2010 Red Hat, Inc.  All rights reserved.
0006 **
0007 **
0008 *******************************************************************************
0009 ******************************************************************************/
0010 
0011 #ifndef __ASTD_DOT_H__
0012 #define __ASTD_DOT_H__
0013 
0014 void dlm_del_ast(struct dlm_lkb *lkb);
0015 int dlm_add_lkb_callback(struct dlm_lkb *lkb, uint32_t flags, int mode,
0016                          int status, uint32_t sbflags, uint64_t seq);
0017 int dlm_rem_lkb_callback(struct dlm_ls *ls, struct dlm_lkb *lkb,
0018                          struct dlm_callback *cb, int *resid);
0019 void dlm_add_cb(struct dlm_lkb *lkb, uint32_t flags, int mode, int status,
0020                 uint32_t sbflags);
0021 
0022 void dlm_callback_work(struct work_struct *work);
0023 int dlm_callback_start(struct dlm_ls *ls);
0024 void dlm_callback_stop(struct dlm_ls *ls);
0025 void dlm_callback_suspend(struct dlm_ls *ls);
0026 void dlm_callback_resume(struct dlm_ls *ls);
0027 
0028 #endif
0029 
0030