Skip to content

Commit 68b603b

Browse files
committed
Announce full-time hiring of Jérôme.
1 parent bc4a4dc commit 68b603b

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "Jérôme Gardou hired full-time to work on the memory manager"
3+
author: "Colin Finck"
4+
date: 2020-10-26
5+
---
6+
7+
I proudly announce that ReactOS Deutschland e.V. has hired Jérôme Gardou to work full-time on the ReactOS kernel's memory manager for the next 3 months.
8+
9+
Jérôme is a ReactOS veteran who has been contributing to the project since 2009.
10+
He has deep expertise into nearly all parts of ReactOS, ranging from various user-mode components (mostly related to low-level graphics) over their kernel-mode counterparts and down to bare-metal components like the kernel memory manager.
11+
12+
During the upcoming months, Jérôme is going to overhaul the `Mm` (Memory Manager) and `Cc` (Cache Controller) components of the kernel.
13+
Both of them are core parts of the operating system, which are involved in every memory request and file operation.
14+
Improving them is expected to have a substantial effect on the overall stability and performance of ReactOS.
15+
16+
Going into the nitty-gritty technical details, Jérôme first wants to make `Cc` a client of `Mm`.
17+
Instead of creating a cache entry for each file section (as ReactOS does right now), let's do it the other way round:
18+
Create an `Mm` section for each cached file and page it in when the filesystem driver requests it.
19+
This has several benefits:
20+
* We use less address space in `Cc`, as each file section will not create a cache entry anymore.
21+
* The ReactOS kernel's architecture gets closer to the Windows original, thereby improving compatibility and maintainability.
22+
* Simplified development in both `Mm` and `Cc`, as that step makes the kernel more modular.
23+
24+
The work will be followed by integrating file section creation into the code path of the "modern" ReactOS memory manager (internally known as `ARM3`), registering pages into process working sets, and finally implementing a thread for proper memory paging.
25+
For parts that are still unclear as of today, Jérôme plans to write additional kernel-mode tests.
26+
27+
This announcement comes just a few months after we [hired Victor Perevertkin](/project-news/victor-perevertkin-hired-full-time) to work full-time on the storage stack.
28+
He is still working for us and just about to finish [porting the Kernel-Mode Driver Framework (KMDF) to ReactOS](https://github.com/reactos/reactos/pull/3234), which will enable us to leverage many open-source storage drivers written for Windows.
29+
30+
With two full-time hirings, 2020 is definitely a landmark year for the ReactOS Project.
31+
Many thanks go out to our generous **donors** for making this possible!
32+
Your [continued donations](/donate) already enable us to finance two developers, and hopefully many more in the future.

0 commit comments

Comments
 (0)