-
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: 71078 b: refs/heads/master c: 717d50e h: refs/heads/master v: v3
- Loading branch information
Andreas Dilger
authored and
Theodore Ts'o
committed
Oct 17, 2007
1 parent
495d036
commit 494cefb
Showing
8 changed files
with
336 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4074fe3736b1a43431dff870bf9055ac5dcf3f03 | ||
refs/heads/master: 717d50e4971b81b96c0199c91cdf0039a8cb181a |
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,27 @@ | ||
/* | ||
* linux/fs/ext4/group.h | ||
* | ||
* Copyright (C) 2007 Cluster File Systems, Inc | ||
* | ||
* Author: Andreas Dilger <adilger@clusterfs.com> | ||
*/ | ||
|
||
#ifndef _LINUX_EXT4_GROUP_H | ||
#define _LINUX_EXT4_GROUP_H | ||
|
||
extern __le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 group, | ||
struct ext4_group_desc *gdp); | ||
extern int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 group, | ||
struct ext4_group_desc *gdp); | ||
struct buffer_head *read_block_bitmap(struct super_block *sb, | ||
unsigned int block_group); | ||
extern unsigned ext4_init_block_bitmap(struct super_block *sb, | ||
struct buffer_head *bh, int group, | ||
struct ext4_group_desc *desc); | ||
#define ext4_free_blocks_after_init(sb, group, desc) \ | ||
ext4_init_block_bitmap(sb, NULL, group, desc) | ||
extern unsigned ext4_init_inode_bitmap(struct super_block *sb, | ||
struct buffer_head *bh, int group, | ||
struct ext4_group_desc *desc); | ||
extern void mark_bitmap_end(int start_bit, int end_bit, char *bitmap); | ||
#endif /* _LINUX_EXT4_GROUP_H */ |
Oops, something went wrong.