-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch creates the debugfs directories that will hold the files to be used to dump the dlm state. Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com> Signed-off-by: Joel Becker <joel.becker@oracle.com> Signed-off-by: Mark Fasheh <mfasheh@suse.com>
- Loading branch information
Sunil Mushran
authored and
Mark Fasheh
committed
Apr 18, 2008
1 parent
29576f8
commit 6325b4a
Showing
4 changed files
with
125 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* -*- mode: c; c-basic-offset: 8; -*- | ||
* vim: noexpandtab sw=8 ts=8 sts=0: | ||
* | ||
* dlmdebug.h | ||
* | ||
* Copyright (C) 2008 Oracle. All rights reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2 of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public | ||
* License along with this program; if not, write to the | ||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
* Boston, MA 021110-1307, USA. | ||
* | ||
*/ | ||
|
||
#ifndef DLMDEBUG_H | ||
#define DLMDEBUG_H | ||
|
||
#ifdef CONFIG_DEBUG_FS | ||
|
||
int dlm_create_debugfs_subroot(struct dlm_ctxt *dlm); | ||
void dlm_destroy_debugfs_subroot(struct dlm_ctxt *dlm); | ||
|
||
int dlm_create_debugfs_root(void); | ||
void dlm_destroy_debugfs_root(void); | ||
|
||
#else | ||
|
||
static int dlm_create_debugfs_subroot(struct dlm_ctxt *dlm) | ||
{ | ||
return 0; | ||
} | ||
static void dlm_destroy_debugfs_subroot(struct dlm_ctxt *dlm) | ||
{ | ||
} | ||
static int dlm_create_debugfs_root(void) | ||
{ | ||
return 0; | ||
} | ||
static void dlm_destroy_debugfs_root(void) | ||
{ | ||
} | ||
|
||
#endif /* CONFIG_DEBUG_FS */ | ||
#endif /* DLMDEBUG_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters