Displaying 1 result from an estimated 1 matches for "ocfs2_h".
Did you mean:
ocfs2_i
2010 Nov 23
0
[PATCH v3 13/22] ocfs2: use little-endian bitops
...e ocfs2_test_bit(nr, addr) \
+ test_le_bit(nr, (unsigned long *)(addr))
+#define ocfs2_find_next_zero_bit(addr, size, off) \
+ find_next_zero_le_bit((unsigned long *)(addr), size, off)
+#define ocfs2_find_next_bit(addr, size, off) \
+ find_next_le_bit((unsigned long *)(addr), size, off)
#endif /* OCFS2_H */
--
1.7.3.2