-
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.
yaml --- r: 165104 b: refs/heads/master c: 8dec98e h: refs/heads/master v: v3
- Loading branch information
Tao Ma
authored and
Joel Becker
committed
Sep 23, 2009
1 parent
40e7d1b
commit 22909a7
Showing
5 changed files
with
128 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: a433848132d8cdfb8173745b922ddb919de11527 | ||
refs/heads/master: 8dec98edfe9684ce00b580a09dde3dcd21ee785b |
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
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,36 @@ | ||
/* -*- mode: c; c-basic-offset: 8; -*- | ||
* vim: noexpandtab sw=8 ts=8 sts=0: | ||
* | ||
* refcounttree.h | ||
* | ||
* Copyright (C) 2009 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 version 2 as published by the Free Software Foundation. | ||
* | ||
* 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. | ||
*/ | ||
#ifndef OCFS2_REFCOUNTTREE_H | ||
#define OCFS2_REFCOUNTTREE_H | ||
|
||
struct ocfs2_refcount_tree { | ||
struct rb_node rf_node; | ||
u64 rf_blkno; | ||
u32 rf_generation; | ||
struct rw_semaphore rf_sem; | ||
struct ocfs2_lock_res rf_lockres; | ||
struct kref rf_getcnt; | ||
int rf_removed; | ||
|
||
/* the following 4 fields are used by caching_info. */ | ||
struct ocfs2_caching_info rf_ci; | ||
spinlock_t rf_lock; | ||
struct mutex rf_io_mutex; | ||
struct super_block *rf_sb; | ||
}; | ||
|
||
#endif /* OCFS2_REFCOUNTTREE_H */ |