index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
FileSystem
/
TmpFS.cpp
Age
Commit message (
Expand
)
Author
2021-06-24
Everywhere: Use nothrow new with `adopt_{ref,own}_if_nonnull`
Daniel Bertalan
2021-06-24
Kernel: Fix compiling TmpFSInode::write_bytes on x86_64
Gunnar Beutner
2021-06-16
Kernel: Remove various other uses of ssize_t
Gunnar Beutner
2021-06-01
Kernel: Move TmpFS towards OOM safety
Brian Gianforcaro
2021-05-12
Kernel: Implement multi-watch InodeWatcher :^)
sin-ack
2021-05-02
Kernel: Change Inode::{read/write}_bytes interface to KResultOr<ssize_t>
Brian Gianforcaro
2021-04-30
Kernel: Make Inode::set_{a,c,m}time return KResult
Andreas Kling
2021-04-25
Kernel: Remove the now defunct `LOCKER(..)` macro.
Brian Gianforcaro
2021-04-23
AK: Rename adopt() to adopt_ref()
Andreas Kling
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-03-04
Kernel: Stop trying to keep InodeVMObject in sync with disk changes
Andreas Kling
2021-03-02
Kernel: Make kgettimeofday use AK::Time
Ben Wiederhake
2021-03-02
Kernel: Remove duplicative kgettimeofday(timeval&) function
Ben Wiederhake
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-02-12
Kernel: Add distinct InodeIndex type
Andreas Kling
2021-01-20
Kernel+LibC: Turn errno codes into a strongly typed enum
Andreas Kling
2020-12-18
TmpFS: Use fallible KBuffer API
Andreas Kling
2020-11-14
TmpFS: Set the root inode's timestamp to the current time
Andreas Kling
2020-10-22
TmpFS: Don't allow file names longer than NAME_MAX
Andreas Kling
2020-10-03
Everywhere: Fix more typos
Linus Groh
2020-09-19
Kernel: Let InodeWatcher track child inode numbers instead of names
Andreas Kling
2020-09-13
Kernel: Make copy_to/from_user safe and remove unnecessary checks
Tom
2020-08-18
TmpFS: Stop using FS::DirectoryEntry in TmpFSInode
Andreas Kling
2020-08-18
TmpFS: Avoid unnecessary inode lookup in TmpFSInode::lookup()
Andreas Kling
2020-08-18
Kernel: Add DirectoryEntryView for VFS directory traversal
Andreas Kling
2020-08-05
Kernel: Make Inode::directory_entry_count errors observable.
Brian Gianforcaro
2020-07-04
Kernel: Add "child added" and "child removed" InodeWatcher events
Andreas Kling
2020-06-25
Kernel: Deemphasize inode identifiers
Sergey Bugaev
2020-06-17
Kernel: Use symbolic constants for file modes
Sergey Bugaev
2020-05-26
Kernel: Plumb KResult through FileDescription::read_entire_file() implementat...
Brian Gianforcaro
2020-04-18
Kernel: Use shared locking mode in some places
Sergey Bugaev
2020-04-05
AK: Stop allowing implicit downcast with RefPtr and NonnullRefPtr
Andreas Kling
2020-04-04
Kernel: Strip SUID+SGID bits from file when written to or chowned
Andreas Kling
2020-02-16
Kernel: Move all code into the Kernel namespace
Andreas Kling
2020-02-08
Kernel: Make File::truncate() take a u64
Andreas Kling
2020-02-08
Kernel: Simplify FS::create_inode() a little bit
Andreas Kling
2020-02-08
Kernel: Simplify FS::create_directory() a little bit
Andreas Kling
2020-02-01
Kernel: Make Inode::lookup() return a RefPtr<Inode>
Andreas Kling
2020-01-24
Meta: Claim copyright for files created by me
Sergey Bugaev
2020-01-19
TmpFS: Grow the underlying inode buffer with 2x factor when written to
Andreas Kling
2020-01-18
Meta: Add license header to source files
Andreas Kling
2020-01-10
TmpFS: Synthesize "." and ".." in traverse_as_directory()
Andreas Kling
2020-01-08
TmpFS: Reads past the end of a file should be zero-length
Andreas Kling
2020-01-07
TmpFS: Add ASSERT(offset >= 0) to read_bytes() and write_bytes()
Andreas Kling
2020-01-07
TmpFS: Add "." and ".." entries to all directories
Andreas Kling
2020-01-04
Kernel: The root inode of a TmpFS should have the sticky bit set
Andreas Kling
2020-01-03
Kernel: Allow passing initial UID and GID when creating new inodes
Andreas Kling
2019-08-24
TmpFS: Notify any associated InodeVMObject on inode changes
Andreas Kling
2019-08-24
TmpFS: Fix two bugs that broke GCC inside Serenity
Andreas Kling
2019-08-15
Kernel: Add TmpFS
Sergey Bugaev