[Ocfs2-tools-commits] jlbec commits r295 - branches/dlm-changes/libocfs2/include

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Wed Sep 29 19:40:10 CDT 2004


Author: jlbec
Date: 2004-09-29 19:40:08 -0500 (Wed, 29 Sep 2004)
New Revision: 295

Modified:
   branches/dlm-changes/libocfs2/include/bitops.h
Log:
whoops again

Modified: branches/dlm-changes/libocfs2/include/bitops.h
===================================================================
--- branches/dlm-changes/libocfs2/include/bitops.h	2004-09-30 00:38:55 UTC (rev 294)
+++ branches/dlm-changes/libocfs2/include/bitops.h	2004-09-30 00:40:08 UTC (rev 295)
@@ -192,7 +192,7 @@
  * convention.
  */
 
-_INLINE_ int ext2fs_set_bit(int nr,void * addr)
+static inline int ocfs2_set_bit(int nr,void * addr)
 {
 #if 1
 	int		mask;
@@ -220,7 +220,7 @@
 #endif
 }
 
-_INLINE_ int ext2fs_clear_bit(int nr, void * addr)
+static inline int ocfs2_clear_bit(int nr, void * addr)
 {
 #if 1
 	int		mask;
@@ -249,7 +249,7 @@
 #endif
 }
 
-_INLINE_ int ext2fs_test_bit(int nr, const void * addr)
+static inline int ocfs2_test_bit(int nr, const void * addr)
 {
 	int			mask;
 	const unsigned char	*ADDR = (const unsigned char *) addr;
@@ -313,7 +313,7 @@
 #ifndef _OCFS2_HAVE_ASM_BITOPS_
 extern int ocfs2_set_bit(int nr,void * addr);
 extern int ocfs2_clear_bit(int nr, void * addr);
-extern int ext2fs_test_bit(int nr, const void * addr);
+extern int ocfs2_test_bit(int nr, const void * addr);
 #endif
 
 



More information about the Ocfs2-tools-commits mailing list