]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - fs/ubifs/ubifs.h
Merge remote-tracking branch 'regulator/topic/gpio' into v3.9-rc8
[karo-tx-linux.git] / fs / ubifs / ubifs.h
index d133c276fe05d526c647756c704ef37a8438612e..b2babce4d70f21845778dbb82a0b2b83fbb97d75 100644 (file)
@@ -904,6 +904,8 @@ struct ubifs_budget_req {
  * @dnext: next orphan to delete
  * @inum: inode number
  * @new: %1 => added since the last commit, otherwise %0
+ * @cmt: %1 => commit pending, otherwise %0
+ * @del: %1 => delete pending, otherwise %0
  */
 struct ubifs_orphan {
        struct rb_node rb;
@@ -912,7 +914,9 @@ struct ubifs_orphan {
        struct ubifs_orphan *cnext;
        struct ubifs_orphan *dnext;
        ino_t inum;
-       int new;
+       unsigned new:1;
+       unsigned cmt:1;
+       unsigned del:1;
 };
 
 /**