From f495cc1e93710c233292a503720ec235a61b685c Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 18 Mar 2020 17:32:50 +0100 Subject: Applied official linux kernel code style guidelines Due to my change to vim and the clang-format plugin this was needed! --- src/kernel/fs/marfs/marfs.h | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'src/kernel/fs/marfs/marfs.h') diff --git a/src/kernel/fs/marfs/marfs.h b/src/kernel/fs/marfs/marfs.h index 67b693c..f2dfa1c 100644 --- a/src/kernel/fs/marfs/marfs.h +++ b/src/kernel/fs/marfs/marfs.h @@ -4,29 +4,29 @@ #include struct marfs_superblock { - uint64_t signature; - uint32_t n_inodes; - uint32_t n_chunks; - uint32_t n_first_unallocated_inode; - uint32_t s_first_inode; - uint32_t s_first_chunk; + uint64_t signature; + uint32_t n_inodes; + uint32_t n_chunks; + uint32_t n_first_unallocated_inode; + uint32_t s_first_inode; + uint32_t s_first_chunk; } __attribute__((packed)); struct marfs_inode { - uint64_t size; - uint32_t creation_time; - uint32_t last_mod_time; - uint32_t last_access_time; - uint32_t n_blocks; - uint32_t DBPs[10]; - uint32_t ext_1; - uint32_t ext_2; - uint32_t ext_3; - uint32_t ext_4; - uint32_t uid; - uint8_t is_app; - uint8_t is_dir; - uint8_t is_used; + uint64_t size; + uint32_t creation_time; + uint32_t last_mod_time; + uint32_t last_access_time; + uint32_t n_blocks; + uint32_t DBPs[10]; + uint32_t ext_1; + uint32_t ext_2; + uint32_t ext_3; + uint32_t ext_4; + uint32_t uid; + uint8_t is_app; + uint8_t is_dir; + uint8_t is_used; } __attribute__((packed)); struct ata_interface *interface; -- cgit v1.2.3