Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ Checks: >
-llvm-header-guard,
-bugprone-reserved-identifier,
-bugprone-easily-swappable-parameters,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
-llvmlibc-*
---

Binary file modified assets/Limine/EFI/Boot/bootx64.efi
Binary file not shown.
Binary file modified assets/Limine/Limine/limine-bios-cd.bin
Binary file not shown.
Binary file modified assets/Limine/Limine/limine-bios.sys
Binary file not shown.
Binary file modified assets/Limine/Limine/limine-uefi-cd.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion fs/vfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ vfs_node_t vfs_node_alloc(vfs_node_t parent, const char *name)
node->root = parent ? parent->root : node;
node->dev = parent ? parent->dev : 0;
node->refcount = 0;
node->blksz = PAGE_SIZE;
node->blksz = PAGE_4K_SIZE;
node->mode = 0777;
node->linkto = NULL;

Expand Down
4 changes: 2 additions & 2 deletions include/interrupt.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
#include "stdint.h"

#if defined(__clang__)
# define INTERRUPT_BEGIN \
_Pragma("clang diagnostic push") _Pragma("clang diagnostic ignored \"-Winterrupt-service-routine\"") \
# define INTERRUPT_BEGIN \
_Pragma("clang diagnostic push") _Pragma("clang diagnostic ignored \"-Wexcessive-regsave\"") \
__attribute__((interrupt, target("general-regs-only")))
# define INTERRUPT_END _Pragma("clang diagnostic pop")
#elif defined(__GNUC__)
Expand Down
Loading