Explore AI that moves inference closer to the data — from the edge to the device itself.
Can this image classifier maintain its intelligence while becoming small enough for the edge?
Can this image classifier maintain its intelligence while becoming small enough for the edge?
Explore the ideas, systems and connections that shape technology — choose any node to begin your journey.
Deploying neural networks and intelligent decision loops on raw silicon targets.
Understanding block translation layers, allocation strategies, and logical-to-physical address mapping.
When you browse your storage, you see files organized neatly into folders:
A user or an application interacts with a file as a single, continuous stream of bytes. You open the file, write some text, read it back, and close it.
But this continuity is a software abstraction. The underlying physical storage device has no concept of a "file," a "name," or a "directory." It does not know where notes.txt begins or ends.
Instead, storage devices operate purely in terms of fixed-size data blocks.
The key realization is simple:
When a file is written to storage, the filesystem must divide the continuous file bytes into discrete, block-sized chunks.
Suppose notes.txt is exactly 10 KB in size, and the filesystem organizes storage into 4 KB blocks. The filesystem splits the file as follows:
* Block 1: Bytes 0 to 4,095 (4 KB) → Storage Block 120 * Block 2: Bytes 4,096 to 8,191 (4 KB) → Storage Block 121 * Block 3: Bytes 8,192 to 10,239 (2 KB used) → Storage Block 122
Notice that the final block (Block 122) contains only 2 KB of file content, but it still consumes a full 4 KB block on disk. The remaining 2 KB of that block cannot be allocated to another file, resulting in internal fragmentation.
This block-based translation is handled entirely by the operating system's filesystem driver.
Because the filesystem maps logical segments to storage blocks through an index, a file's blocks do not need to sit next to each other on the physical drive.
A file could easily be scattered across the storage medium:
This establishes an important separation of concerns:
1. Logical File Order: A continuous byte sequence starting at 0 and running to 10,239. 2. Physical Block Locations: Scattered blocks (120, 121, 245) residing wherever space was available when the write occurred.
The storage hardware does not know these blocks are related; it simply reads and writes individual blocks as commanded.
How does the filesystem keep track of which blocks belong to which files? Historically, three classic allocation strategies were designed to solve this mapping problem:
Modern operating system filesystems rarely implement these classic models in their raw textbook form. Instead, they use advanced adaptations:
* Extents: Rather than indexing every block individually, modern filesystems allocate ranges of consecutive blocks. An extent is simply a (Start Block, Run Length) pair. For example: "Start at Block 120 and read the next 8 blocks."
* B-Trees / Extent Trees: Large files index their extents inside tree structures, allowing quick lookups and scaling to petabytes of data.
The fundamental goal, however, remains the same: translating a single logical file stream into a set of mapped storage block addresses.
Use the simulator below to visualize how the filesystem translates a 10 KB file into logical blocks, maps them to physical sectors, and services a read request from the middle of the file:
While the filesystem maps files to "Storage Blocks," it is important to realize that these storage blocks are still logical representations.
On modern Solid State Drives (SSDs) and NVMe drives, there is another translation layer inside the device itself. When the filesystem requests Logical Block Address (LBA) 120, the SSD controller's Flash Translation Layer (FTL) intercepts the request and maps it to a physical flash memory cell.
The SSD controller does this to balance wear across its silicon gates, handle bad blocks, and optimize write performance. The operating system filesystem manages logical block layouts, while the storage drive controller manages the actual physical hardware mapping.
Most production operating systems rely heavily on extent-based allocation instead of raw block mapping:
* Linux (ext4): Uses extent trees to store metadata. A single extent can represent up to 128 MB of contiguous space on a 4 KB block filesystem, reducing metadata overhead significantly. * Windows (NTFS): Refers to extents as data runs. The MFT record describes files as a series of runs mapping logical clusters to physical storage clusters. * macOS (APFS): Employs dynamic extent allocation paired with copy-on-write clones, letting multiple directory entries reference the same extents until a write is made.
In the Memory Management branch, we saw how memory becomes fragmented as pages are allocated and freed. The same phenomenon occurs in storage.
When a file's blocks are scattered far apart on physical storage, the file is fragmented: * On Hard Disk Drives (HDDs): Fragmentation is highly destructive to performance. The mechanical drive head must physically rotate and seek to jump between distant sectors, causing noticeable delays. * On Solid State Drives (SSDs): There are no moving heads, so mechanical seek delays do not apply. However, extreme fragmentation still imposes CPU overhead on the filesystem driver (which must manage massive mapping tables) and limits the drive controller's ability to run parallel block operations.
We now know that a file is a logical object whose data is mapped onto storage blocks.
But those blocks do not exist in isolation.
What exactly is the layer between the filesystem and the storage device — and how do partitions, volumes and filesystems turn a raw device into something the OS can actually use?
PrajnaEdge is a technology company exploring the space between understanding technology, experimenting with ideas, and turning them into things that can be experienced.
PrajnaEdge began with Embedded Systems — exploring the foundations that connect hardware, software and intelligent computation.
The first technology universe is built around that foundation. The journey will expand as new ideas, experiments and products emerge.
PrajnaEdge is a technology company created by Devaharsha Meesarapu.
I am the engineer behind the design, development, and content of PrajnaEdge. I build low-level systems where code directly controls hardware, bridging the gap between register-level silicon behavior and intelligent edge decision loops.
I am an Embedded Firmware Engineer focused on developing software for resource-constrained systems. My experience spans bare-metal firmware, device drivers, microcontroller peripherals, and communication protocols, working across the boundary between hardware and software.
My work has involved microcontroller-based systems, real-time behaviour, hardware interfaces, and communication technologies such as CAN, CAN FD, UART, SPI, and I²C. I am particularly interested in understanding systems from the lowest level upward—from registers and peripherals to intelligent edge systems.
Engineering is not just about writing code; it is about managing constraints, timings, and physical hardware characteristics. True mastery of complex systems comes from understanding the interactions across different layers of the stack.
This conviction is why I built PrajnaEdge—to bridge the gap between conceptual theory and direct, register-level physical reality.
Software that runs directly on hardware without an operating system.
"Every embedded application begins long before main()."
An Operating System manages hardware and software resources so complex applications can work efficiently.
"When one loop is no longer enough to carry the burden."
PrajnaEdge is an independent education platform built to make knowledge freely accessible.
If you find PrajnaEdge useful, you can support its continued development.
Your support helps fund the time, tools, infrastructure, and experimentation that go into building and maintaining PrajnaEdge.
Product Terms & Licensing
PrajnaEdge is an interactive learning platform designed for systems engineers, developers, and technology enthusiasts. The educational materials, simulation blocks, and visual code tracers are provided for instruction and concept validation. We make no warranty regarding their completeness or applicability to real-world industrial systems.
The software, interactive widgets, diagrams, illustrations, custom SVG architectures, and textual documentation on this site are copyright © 2026 PrajnaEdge. All rights reserved. Reproduction, modifications, or scraping of this content without prior written permission is strictly prohibited.
PrajnaEdge is committed to learning privacy. We do not sell user data. Analytical event tracking is used solely to study click telemetry and help improve visual guides.