summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2019-08-29Kernel: Add LogStream operator<< for RangeAndreas Kling
2019-08-29Kernel: Fixed FDC motor_enable()Jesse Buhagiar
2019-08-29Kernel: Implement is_zero for RoutingDecisionConrad Pankoff
2019-08-29Kernel: Take a copy of MACAddress in RoutingDecisionConrad Pankoff
2019-08-29Kernel: Use a public member for NetworkAdapter on_receiveConrad Pankoff
2019-08-29Kernel: Add simple ARP routing layerConrad Pankoff
2019-08-29Kernel: Remove IP configuration from LoopbackAdapterConrad Pankoff
2019-08-29Kernel: Remove now-unused singleton methods from our network devicesConrad Pankoff
2019-08-29Kernel: Remove specific devices from network codeConrad Pankoff
2019-08-29Kernel: Add const to packet data in send_raw callConrad Pankoff
2019-08-29Kernel: Add on_receive callback to NetworkAdapterConrad Pankoff
2019-08-29Kernel: Show netmask/gateway in ProcFS when availableConrad Pankoff
2019-08-29Kernel: Add netmask and gateway to NetworkAdapterConrad Pankoff
2019-08-29Kernel: Run NetworkTask in init stage 2 to allow use of locksConrad Pankoff
2019-08-29Kernel: Ask for all relevant IRQs in rtl8139 driverConrad Pankoff
2019-08-29Kernel: Ignore IPv6 packets; log unknown Ethernet payload typesConrad Pankoff
2019-08-29Kernel/AK: Add is_zero helpers for IP and MAC addressesConrad Pankoff
2019-08-29Kernel: Always format MACAddress with two-byte hex digits in to_stringConrad Pankoff
2019-08-29Kernel: Add list-compatible constructor for MACAddressConrad Pankoff
2019-08-27ProcFS: Port JSON generation to streaming serializersSergey Bugaev
2019-08-26Revert "Kernel: Avoid a memcpy() of the whole block when paging in from inode"Andreas Kling
2019-08-26Kernel: Never forcibly page in entire executablesAndreas Kling
2019-08-26Kernel: Display virtual addresses as V%p instead of L%xAndreas Kling
2019-08-26LibThread: Introduce a new threading librarySergey Bugaev
2019-08-25FileSystem: Add FIXME about resolve_path bugRok Povsic
2019-08-25Kernel: Add realpath syscallRok Povsic
2019-08-25Kernel: Avoid a memcpy() of the whole block when paging in from inodeAndreas Kling
2019-08-25Ext2FS: Avoid a String allocation in lookup()Andreas Kling
2019-08-25Kernel: Don't create a String every time we look up a Custody by nameAndreas Kling
2019-08-24TmpFS: Notify any associated InodeVMObject on inode changesAndreas Kling
2019-08-24TmpFS: Fix two bugs that broke GCC inside SerenityAndreas Kling
2019-08-24Kernel: Fix oversized InodeVMObject after inode size changesAndreas Kling
2019-08-24KBuffer: capacity() should return internal capacity, not internal sizeAndreas Kling
2019-08-23Kernel: Give each TTY 1 KB of input bufferAndreas Kling
2019-08-23Kernel: Implement kill(0, signal)Andreas Kling
2019-08-23Kernel: Use IteratorDecision in Process::for_each_in_pgrp()Andreas Kling
2019-08-22Kernel: Make Lock::lock() assert early that we're not in the schedulerAndreas Kling
2019-08-21Kernel: Remove over-eager const from rtl8139 driver link_up functionConrad Pankoff
2019-08-21Kernel: Implement rtl8139 network interface driverConrad Pankoff
2019-08-21Kernel: Implement link status in /proc/net/adaptersConrad Pankoff
2019-08-21Kernel: Move DiskDevice::block_size() up to BlockDeviceAndreas Kling
2019-08-19Kernel: Put debug spam about already-paged-in inode pages behind #ifdefAndreas Kling
2019-08-18ProcFS: Expose info about devices in /proc/devicesSergey Bugaev
2019-08-18Kernel: Move device lookup to Device class itselfSergey Bugaev
2019-08-18Inspector: Add a GUI tool for viewing a remote process's CObject graphAndreas Kling
2019-08-18Kernel: Implement generic VGA device using multiboot infoConrad Pankoff
2019-08-18Kernel: Implement generic framebuffer ioctls in BXVGAConrad Pankoff
2019-08-18Kernel: Add framebuffer ioctls; wrap raw ioctls with a C APIConrad Pankoff
2019-08-18LibC: Move duplicated winsize struct definition into ioctl_numbers.hConrad Pankoff
2019-08-18Kernel: Disable VGA console in graphical modeConrad Pankoff