| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2026-09-03 | x86_64: replace unreachable builtin | Felix Morgner | 1 | -1/+2 | |
| 2026-09-03 | fs, devices: fix undefined behavior in registration | Felix Morgner | 3 | -14/+41 | |
| 2026-09-03 | Merge branch 'fmorgner/code-style-cleanup' into 'develop' | Felix Morgner | 60 | -162/+184 | |
| chore: clean up code according to style guide See merge request teachos/kernel!58 | |||||
| 2026-09-03 | chore: fix header guards | Felix Morgner | 37 | -72/+72 | |
| 2026-09-03 | chore: add missing explicit specifiers | Felix Morgner | 4 | -1/+11 | |
| 2026-09-03 | chore: fix message prefixes | Felix Morgner | 2 | -45/+43 | |
| 2026-09-03 | chore: add missing return types | Felix Morgner | 7 | -23/+29 | |
| 2026-09-03 | chore: add missing [[nodiscard]] attributes | Felix Morgner | 10 | -21/+29 | |
| 2026-09-02 | docs: add additional brief and guide drafts | Felix Morgner | 5 | -2/+1049 | |
| 2026-09-02 | docs: update thesis opportunities | Felix Morgner | 1 | -23/+56 | |
| 2026-09-01 | kernel: fix broken readme symlink | Felix Morgner | 1 | -1/+1 | |
| 2026-09-01 | docs: update facet dispatch brief | Felix Morgner | 1 | -4/+4 | |
| 2026-09-01 | chore: clean up facet ids | Felix Morgner | 15 | -51/+58 | |
| 2026-08-31 | docs: add brief regarding facet dispatching | Felix Morgner | 1 | -0/+430 | |
| 2026-08-31 | docs: update documentation structure | Felix Morgner | 6 | -4/+27 | |
| 2026-08-31 | ide: update toolchain | Felix Morgner | 2 | -6/+14 | |
| 2026-08-31 | chore: fix poetry configuration | Felix Morgner | 2 | -590/+496 | |
| 2026-08-31 | docs: prepare for pages deployment | Felix Morgner | 22 | -271/+122 | |
| 2026-08-31 | ide: switch to MS C/C++ Tools extension | Felix Morgner | 3 | -4/+6 | |
| 2026-08-31 | doc: fix x86_64 commit example | Felix Morgner | 1 | -1/+1 | |
| 2026-08-31 | doc: add additional contributor guidelines | Felix Morgner | 1 | -40/+117 | |
| 2026-08-31 | doc: replace codestyle with contributing | Felix Morgner | 2 | -491/+531 | |
| 2026-08-31 | chore: minor stylistic cleanups | Felix Morgner | 13 | -40/+44 | |
| 2026-08-30 | kapi/gdb: extend pretty printers | Felix Morgner | 5 | -0/+98 | |
| 2026-08-30 | kstd/gdb: add flat_map printer | Felix Morgner | 2 | -0/+52 | |
| 2026-08-30 | kstd/gdb: add error_code and result printers | Felix Morgner | 3 | -3/+124 | |
| 2026-08-30 | kstd/gdb: add pretty printers for units | Felix Morgner | 2 | -0/+36 | |
| 2026-08-30 | ide: load symbols as symbol file only | Felix Morgner | 1 | -1/+1 | |
| 2026-08-30 | doc: clean up and move code style docs | Felix Morgner | 1 | -149/+142 | |
| 2026-08-30 | ide: replace todo tree extension | Felix Morgner | 1 | -1/+1 | |
| 2026-08-29 | kstd: make UDL operators consteval | Felix Morgner | 1 | -8/+8 | |
| 2026-08-29 | chore: normalize panic messages | Felix Morgner | 40 | -112/+610 | |
| 2026-08-29 | chore: apply stylistic cleanups | Felix Morgner | 45 | -244/+252 | |
| 2026-08-29 | build: improve test failure reporting in CI | Felix Morgner | 1 | -0/+1 | |
| 2026-08-28 | kernel/vfs: implement read_directory fixups. | Felix Morgner | 6 | -2/+134 | |
| POSIX requires that the data returned by the readdir() function shows the inode number of the root of a mounted filesystem for its mount point. Additionally, the inode number of the '..' reference in the mounted filesystem must show the inode number of the mount point. We perform this fixup when computing the entries during read_directory on the fly. The implementation of the upward fixup will need to be revised once the kernel supports bind mounts. | |||||
| 2026-08-28 | kernel/fs: devfs: fix inode encoding | Felix Morgner | 1 | -2/+1 | |
| 2026-08-28 | Merge branch 'fmorgner/vfs-mount-initialization' into 'develop' | Felix Morgner | 14 | -130/+146 | |
| kernel/vfs: rework boot initialization See merge request teachos/kernel!57 | |||||
| 2026-08-28 | fixup! kernel/fs: ext2: fix block allocation on 1 KiB fs | Felix Morgner | 3 | -7/+12 | |
| 2026-08-28 | fixup! kernel/vfs: add identity based mount removal | Felix Morgner | 1 | -1/+1 | |
| 2026-08-28 | kernel/vfs: implement root swivel and mount move | Felix Morgner | 9 | -71/+92 | |
| Previously, the device filesystem (devfs) was simply grafted on each root filesystem during boot. This caused the existence of an unreachable, dead devfs mount after the VFS instance had been initialized. This changeset implements the ability to relocate an active mount from one mount point to another. That way, no second devfs mount needs to be created. Instead, the existing devfs mount is relocated to a mount point in the persistent root filesystem that get mounted during initialization. Secondly, this changeset also alters the VFS initialization flow, so that only one root mount exists after initialization finishes. | |||||
| 2026-08-28 | fixup! kernel/vfs: mount: resolve return type todo | Felix Morgner | 1 | -2/+2 | |
| 2026-08-28 | kernel/fs: ext2: fix block allocation on 1 KiB fs | Felix Morgner | 1 | -2/+2 | |
| When computing the actual block numbers for a filesystem, care must be taken to account for which block is the actual first data block. For 1 KiB block size filesystems, that block is actually block 1, not 0. This is because the first 1 KiB on any ext2 volume is reserved for bootloader data. Complicating matters, the bitmaps don't take this into account. They essentially reflect a logical view, describing which data blocks are already allocated. On a 1 KiB filesystem, this effectively means that bit 0 of the allocation bitmap references physical block 1. Luckily, we don't need to make that determination based on the block size at all. The superblock already carries the number of the first data block. That means one can simply add that number, which is 1 in the 1 KiB block size case and 0 otherwise, to the found block index. Interestingly, this was already caught by accident when locating the authoritative block group descriptor (BGD) table. A factor of two was multiplied into the calculation in the case of a 1 KiB block size. This factor arises because the primary BGD table follows the primary superblock. Since the superblock is located in physical block 0 in all cases except for a 1 KiB block size, the BGD table generally lands in block 1. This implies an offset of 1 block size from the volume start. In the 1 KiB case, the BGD table lands in block number 2, effectively at an offset of 2 blocks from the start of the volume. This changeset makes that calculation explicit in the BGD table locator code as well. This clarifies the previously obscure factor of 2. | |||||
| 2026-08-28 | kernel/vfs: add identity based mount removal | Felix Morgner | 2 | -1/+17 | |
| 2026-08-28 | kernel/vfs: mount: resolve return type todo | Felix Morgner | 4 | -47/+21 | |
| 2026-08-28 | kernel/vfs: replace owning_mount with driver_state | Felix Morgner | 23 | -239/+297 | |
| 2026-08-27 | kernel/fs: devfs: inject . and .. entries | Felix Morgner | 2 | -23/+69 | |
| 2026-08-27 | kernel: add 'ls' style demo | Felix Morgner | 1 | -21/+56 | |
| 2026-08-27 | kstd: units: improve formatter | Felix Morgner | 1 | -1/+4 | |
| 2026-08-27 | kernel/fs: devfs: implement basic stat | Felix Morgner | 2 | -1/+14 | |
| 2026-08-27 | kernel: add directory listing to demo. | Felix Morgner | 1 | -0/+26 | |
