Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 294653
b: refs/heads/master
c: 7ca58ba
h: refs/heads/master
i:
  294651: f5a162d
v: v3
  • Loading branch information
Artem Bityutskiy committed Feb 29, 2012
1 parent ab4a9ed commit ae6dbab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 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: c43be1085f8480ab36d5c8c76a08e67bdf6d2e18
refs/heads/master: 7ca58bad6904c721678cf2171dc78b97cc03d500
11 changes: 4 additions & 7 deletions trunk/fs/ubifs/ubifs.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,6 @@
#define INUM_WARN_WATERMARK 0xFFF00000
#define INUM_WATERMARK 0xFFFFFF00

/* Largest key size supported in this implementation */
#define CUR_MAX_KEY_LEN UBIFS_SK_LEN

/* Maximum number of entries in each LPT (LEB category) heap */
#define LPT_HEAP_SZ 256

Expand Down Expand Up @@ -277,10 +274,10 @@ struct ubifs_old_idx {

/* The below union makes it easier to deal with keys */
union ubifs_key {
uint8_t u8[CUR_MAX_KEY_LEN];
uint32_t u32[CUR_MAX_KEY_LEN/4];
uint64_t u64[CUR_MAX_KEY_LEN/8];
__le32 j32[CUR_MAX_KEY_LEN/4];
uint8_t u8[UBIFS_SK_LEN];
uint32_t u32[UBIFS_SK_LEN/4];
uint64_t u64[UBIFS_SK_LEN/8];
__le32 j32[UBIFS_SK_LEN/4];
};

/**
Expand Down

0 comments on commit ae6dbab

Please sign in to comment.