mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 16:14:38 +00:00
Kernel/FileSystem: Rename block_size -> logical_block_size
Since this is the block size that file system drivers *should* set, let's name it the logical block size, just like most file systems such as ext2 already do anyways.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
d1e6e6110d
commit
c8d7bcede6
@@ -24,7 +24,7 @@ ErrorOr<NonnullRefPtr<FileSystem>> ISO9660FS::try_create(OpenFileDescription& de
|
||||
ISO9660FS::ISO9660FS(OpenFileDescription& description)
|
||||
: BlockBasedFileSystem(description)
|
||||
{
|
||||
set_block_size(logical_sector_size);
|
||||
set_logical_block_size(logical_sector_size);
|
||||
m_device_block_size = logical_sector_size;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user