aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mkfs_ext2.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-09-28 15:13:04 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-09-28 15:13:04 +0200
commitabfa3ec0598ff431407224c6b81682f7d0d35495 (patch)
treee5387999595e1f0c383c4aced38fe5a24dd90ef0 /util-linux/mkfs_ext2.c
parentaae428f0bf0fcd6cd0a2503b3a50de43785b8fd0 (diff)
downloadbusybox-abfa3ec0598ff431407224c6b81682f7d0d35495.tar.gz
move storage helpers to libbb.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mkfs_ext2.c')
-rw-r--r--util-linux/mkfs_ext2.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/util-linux/mkfs_ext2.c b/util-linux/mkfs_ext2.c
index f524bc239..bda168f1e 100644
--- a/util-linux/mkfs_ext2.c
+++ b/util-linux/mkfs_ext2.c
@@ -78,23 +78,6 @@
#define EXT2_FLAGS_SIGNED_HASH 0x0001
#define EXT2_FLAGS_UNSIGNED_HASH 0x0002
-// storage helpers
-char BUG_wrong_field_size(void);
-#define STORE_LE(field, value) \
-do { \
- if (sizeof(field) == 4) \
- field = SWAP_LE32((uint32_t)(value)); \
- else if (sizeof(field) == 2) \
- field = SWAP_LE16((uint16_t)(value)); \
- else if (sizeof(field) == 1) \
- field = (uint8_t)(value); \
- else \
- BUG_wrong_field_size(); \
-} while (0)
-
-#define FETCH_LE32(field) \
- (sizeof(field) == 4 ? SWAP_LE32(field) : BUG_wrong_field_size())
-
// All fields are little-endian
struct ext2_dir {
uint32_t inode1;