~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to fs/ext2/ext2.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
extern void ext2_set_link(struct inode *, struct ext2_dir_entry_2 *, struct page *, struct inode *, int);
111
111
 
112
112
/* ialloc.c */
113
 
extern struct inode * ext2_new_inode (struct inode *, int);
 
113
extern struct inode * ext2_new_inode (struct inode *, int, const struct qstr *);
114
114
extern void ext2_free_inode (struct inode *);
115
115
extern unsigned long ext2_count_free_inodes (struct super_block *);
116
116
extern void ext2_check_inodes_bitmap (struct super_block *);
174
174
        return group_no * (ext2_fsblk_t)EXT2_BLOCKS_PER_GROUP(sb) +
175
175
                le32_to_cpu(EXT2_SB(sb)->s_es->s_first_data_block);
176
176
}
 
177
 
 
178
#define ext2_set_bit    __test_and_set_bit_le
 
179
#define ext2_clear_bit  __test_and_clear_bit_le
 
180
#define ext2_test_bit   test_bit_le
 
181
#define ext2_find_first_zero_bit        find_first_zero_bit_le
 
182
#define ext2_find_next_zero_bit         find_next_zero_bit_le