From 1db0961121bdb8145fe368fdca0205ddef354729 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Thu, 10 Oct 2024 11:20:20 -0400 Subject: [PATCH] kernel/vm: Remove an obsolete comment. page_num_t is typedef'd to phys_addr_t, so it's 64-bits on 32-bit platforms with PAE. In fact it's been so since the introduction of phys_addr_t, so this comment was obsolete from the start... --- headers/private/kernel/vm/vm_types.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/headers/private/kernel/vm/vm_types.h b/headers/private/kernel/vm/vm_types.h index 138f8a144b..f37f191855 100644 --- a/headers/private/kernel/vm/vm_types.h +++ b/headers/private/kernel/vm/vm_types.h @@ -123,8 +123,6 @@ private: public: page_num_t cache_offset; // in page size units - // TODO: Only 32 bit on 32 bit platforms! - // Introduce a new 64 bit type page_off_t! SplayTreeLink cache_link; vm_page* cache_next;