Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250419
b: refs/heads/master
c: cc64f77
h: refs/heads/master
i:
  250417: 2b5808b
  250415: 3b0f4bf
v: v3
  • Loading branch information
Artem Bityutskiy authored and Artem Bityutskiy committed May 13, 2011
1 parent a347d41 commit 30f9317
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c43615702f9c5957981693a4d966ed81d8fc1ecc
refs/heads/master: cc64f774b4acd4954abe54f5919f50d78aba1e5f
28 changes: 14 additions & 14 deletions trunk/fs/ubifs/ubifs-media.h
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ struct ubifs_ch {
__u8 node_type;
__u8 group_type;
__u8 padding[2];
} __attribute__ ((packed));
} __packed;

/**
* union ubifs_dev_desc - device node descriptor.
Expand All @@ -448,7 +448,7 @@ struct ubifs_ch {
union ubifs_dev_desc {
__le32 new;
__le64 huge;
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_ino_node - inode node.
Expand Down Expand Up @@ -509,7 +509,7 @@ struct ubifs_ino_node {
__le16 compr_type;
__u8 padding2[26]; /* Watch 'zero_ino_node_unused()' if changing! */
__u8 data[];
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_dent_node - directory entry node.
Expand All @@ -534,7 +534,7 @@ struct ubifs_dent_node {
__le16 nlen;
__u8 padding2[4]; /* Watch 'zero_dent_node_unused()' if changing! */
__u8 name[];
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_data_node - data node.
Expand All @@ -555,7 +555,7 @@ struct ubifs_data_node {
__le16 compr_type;
__u8 padding[2]; /* Watch 'zero_data_node_unused()' if changing! */
__u8 data[];
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_trun_node - truncation node.
Expand All @@ -575,7 +575,7 @@ struct ubifs_trun_node {
__u8 padding[12]; /* Watch 'zero_trun_node_unused()' if changing! */
__le64 old_size;
__le64 new_size;
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_pad_node - padding node.
Expand All @@ -586,7 +586,7 @@ struct ubifs_trun_node {
struct ubifs_pad_node {
struct ubifs_ch ch;
__le32 pad_len;
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_sb_node - superblock node.
Expand Down Expand Up @@ -644,7 +644,7 @@ struct ubifs_sb_node {
__u8 uuid[16];
__le32 ro_compat_version;
__u8 padding2[3968];
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_mst_node - master node.
Expand Down Expand Up @@ -711,7 +711,7 @@ struct ubifs_mst_node {
__le32 idx_lebs;
__le32 leb_cnt;
__u8 padding[344];
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_ref_node - logical eraseblock reference node.
Expand All @@ -727,7 +727,7 @@ struct ubifs_ref_node {
__le32 offs;
__le32 jhead;
__u8 padding[28];
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_branch - key/reference/length branch
Expand All @@ -741,7 +741,7 @@ struct ubifs_branch {
__le32 offs;
__le32 len;
__u8 key[];
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_idx_node - indexing node.
Expand All @@ -755,7 +755,7 @@ struct ubifs_idx_node {
__le16 child_cnt;
__le16 level;
__u8 branches[];
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_cs_node - commit start node.
Expand All @@ -765,7 +765,7 @@ struct ubifs_idx_node {
struct ubifs_cs_node {
struct ubifs_ch ch;
__le64 cmt_no;
} __attribute__ ((packed));
} __packed;

/**
* struct ubifs_orph_node - orphan node.
Expand All @@ -777,6 +777,6 @@ struct ubifs_orph_node {
struct ubifs_ch ch;
__le64 cmt_no;
__le64 inos[];
} __attribute__ ((packed));
} __packed;

#endif /* __UBIFS_MEDIA_H__ */

0 comments on commit 30f9317

Please sign in to comment.