Whamcloud - gitweb
- make HEAD from b_post_cmd3
[fs/lustre-release.git] / lustre / include / linux / lustre_intent.h
index 3d8cb2c..84629e1 100644 (file)
@@ -4,14 +4,15 @@
 #include <linux/lustre_version.h>
 
 #ifndef LUSTRE_KERNEL_VERSION
-#define IT_OPEN     (1)
-#define IT_CREAT    (1<<1)
-#define IT_READDIR  (1<<2)
-#define IT_GETATTR  (1<<3)
-#define IT_LOOKUP   (1<<4)
-#define IT_UNLINK   (1<<5)
-#define IT_TRUNC    (1<<6)
-#define IT_GETXATTR (1<<7)
+
+#define IT_OPEN     (1 << 0)
+#define IT_CREAT    (1 << 1)
+#define IT_READDIR  (1 << 2)
+#define IT_GETATTR  (1 << 3)
+#define IT_LOOKUP   (1 << 4)
+#define IT_UNLINK   (1 << 5)
+#define IT_TRUNC    (1 << 6)
+#define IT_GETXATTR (1 << 7)
 
 struct lustre_intent_data {
         int       it_disposition;
@@ -30,6 +31,5 @@ struct lookup_intent {
         } d;
 };
 
-
 #endif
 #endif