[LogFS] Remove h_version field

Incompatible change: h_compr is moved up so the padding is all in one chunk.
This commit is contained in:
Joern Engel
2010-03-06 10:01:46 +01:00
parent 6a08ab846c
commit 9cf05b416d
2 changed files with 5 additions and 6 deletions

View File

@@ -422,7 +422,6 @@ SIZE_CHECK(logfs_segment_entry, 8);
* not including header
* @h_datalen: length of uncompressed data
* @h_type: JE type
* @h_version: unnormalized version of journal entry
* @h_compr: compression type
* @h_pad: reserved
*/
@@ -431,9 +430,8 @@ struct logfs_journal_header {
__be16 h_len;
__be16 h_datalen;
__be16 h_type;
__be16 h_version;
__u8 h_compr;
__u8 h_pad[3];
__u8 h_pad[5];
};
SIZE_CHECK(logfs_journal_header, 16);