X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=fs%2Fubifs%2Fubifs.h;h=b2babce4d70f21845778dbb82a0b2b83fbb97d75;hb=3dc06c1baf2b28e5365a1159755eac2e95142601;hp=d133c276fe05d526c647756c704ef37a8438612e;hpb=617677295b53a40d0e54aac4cbbc216ffbc755dd;p=karo-tx-linux.git diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h index d133c276fe05..b2babce4d70f 100644 --- a/fs/ubifs/ubifs.h +++ b/fs/ubifs/ubifs.h @@ -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; }; /**