|
@@ -836,13 +836,13 @@ static inline unsigned int ocfs2_clusters_to_megabytes(struct super_block *sb,
|
|
|
|
|
|
static inline void _ocfs2_set_bit(unsigned int bit, unsigned long *bitmap)
|
|
static inline void _ocfs2_set_bit(unsigned int bit, unsigned long *bitmap)
|
|
{
|
|
{
|
|
- __test_and_set_bit_le(bit, bitmap);
|
|
|
|
|
|
+ __set_bit_le(bit, bitmap);
|
|
}
|
|
}
|
|
#define ocfs2_set_bit(bit, addr) _ocfs2_set_bit((bit), (unsigned long *)(addr))
|
|
#define ocfs2_set_bit(bit, addr) _ocfs2_set_bit((bit), (unsigned long *)(addr))
|
|
|
|
|
|
static inline void _ocfs2_clear_bit(unsigned int bit, unsigned long *bitmap)
|
|
static inline void _ocfs2_clear_bit(unsigned int bit, unsigned long *bitmap)
|
|
{
|
|
{
|
|
- __test_and_clear_bit_le(bit, bitmap);
|
|
|
|
|
|
+ __clear_bit_le(bit, bitmap);
|
|
}
|
|
}
|
|
#define ocfs2_clear_bit(bit, addr) _ocfs2_clear_bit((bit), (unsigned long *)(addr))
|
|
#define ocfs2_clear_bit(bit, addr) _ocfs2_clear_bit((bit), (unsigned long *)(addr))
|
|
|
|
|