mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:12:43 +00:00 
			
		
		
		
	Kernel: Rename VFS => VirtualFileSystem
This commit is contained in:
		
							parent
							
								
									d53d9d3677
								
							
						
					
					
						commit
						0d39bd04d3
					
				
					 38 changed files with 124 additions and 124 deletions
				
			
		|  | @ -237,7 +237,7 @@ KResultOr<size_t> FileDescription::get_dir_entries(UserOrKernelBuffer& output_bu | |||
|         return true; | ||||
|     }; | ||||
| 
 | ||||
|     KResult result = VFS::the().traverse_directory_inode(*m_inode, [&flush_stream_to_output_buffer, &stream, this](auto& entry) { | ||||
|     KResult result = VirtualFileSystem::the().traverse_directory_inode(*m_inode, [&flush_stream_to_output_buffer, &stream, this](auto& entry) { | ||||
|         size_t serialized_size = sizeof(ino_t) + sizeof(u8) + sizeof(size_t) + sizeof(char) * entry.name.length(); | ||||
|         if (serialized_size > stream.remaining()) { | ||||
|             if (!flush_stream_to_output_buffer()) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling