mballoc.h (0b88641f1bafdbd087d5e63987a30cc0eadd63b9) | mballoc.h (9f6200bbfc962d8f926278cf5d5ddb90a228c322) |
---|---|
1/* 2 * fs/ext4/mballoc.h 3 * 4 * Written by: Alex Tomas <alex@clusterfs.com> 5 * 6 */ 7#ifndef _EXT4_MBALLOC_H 8#define _EXT4_MBALLOC_H --- 243 unchanged lines hidden (view full) --- 252 return; 253} 254#else 255static void ext4_mb_store_history(struct ext4_allocation_context *ac); 256#endif 257 258#define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1) 259 | 1/* 2 * fs/ext4/mballoc.h 3 * 4 * Written by: Alex Tomas <alex@clusterfs.com> 5 * 6 */ 7#ifndef _EXT4_MBALLOC_H 8#define _EXT4_MBALLOC_H --- 243 unchanged lines hidden (view full) --- 252 return; 253} 254#else 255static void ext4_mb_store_history(struct ext4_allocation_context *ac); 256#endif 257 258#define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1) 259 |
260static struct proc_dir_entry *proc_root_ext4; | |
261struct buffer_head *read_block_bitmap(struct super_block *, ext4_group_t); 262 263static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap, 264 ext4_group_t group); 265static void ext4_mb_poll_new_transaction(struct super_block *, handle_t *); 266static void ext4_mb_free_committed_blocks(struct super_block *); 267static void ext4_mb_return_to_preallocation(struct inode *inode, 268 struct ext4_buddy *e4b, sector_t block, --- 42 unchanged lines hidden --- | 260struct buffer_head *read_block_bitmap(struct super_block *, ext4_group_t); 261 262static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap, 263 ext4_group_t group); 264static void ext4_mb_poll_new_transaction(struct super_block *, handle_t *); 265static void ext4_mb_free_committed_blocks(struct super_block *); 266static void ext4_mb_return_to_preallocation(struct inode *inode, 267 struct ext4_buddy *e4b, sector_t block, --- 42 unchanged lines hidden --- |