From 1861926bac7dcace59f1d5f82a8634d159877197 Mon Sep 17 00:00:00 2001 From: Hudd Date: Mon, 19 Jan 2015 05:27:55 +0000 Subject: [PATCH 1/2] Fix typos --- linux-bootstrap-2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-bootstrap-2.md b/linux-bootstrap-2.md index 6d7022b..29d7a48 100644 --- a/linux-bootstrap-2.md +++ b/linux-bootstrap-2.md @@ -92,11 +92,11 @@ Don't worry, i know that it looks little scary after real mode, but it's easy. L | 15 1 1 1 1 | Code | Execute/Read, conforming, accessed ``` -As we can see first bit is 0 for data segment and 1 for code segment. Next three bits `EWA` are expansion direction (expand-dow segment will grow down, more about it you can read [here](http://www.sudleyplace.com/dpmione/expanddown.html)), write enable and accessed for data segments. `CRA` bits are conforming (A transfer of execution into a more-privileged conforming segment allows execution to continue at the current privilege level), read enable and accessed. +As we can see first bit is 0 for data segment and 1 for code segment. Next three bits `EWA` are expansion direction (expand-down segment will grow down, more about it you can read [here](http://www.sudleyplace.com/dpmione/expanddown.html)), write enable and accessed for data segments. `CRA` bits are conforming (A transfer of execution into a more-privileged conforming segment allows execution to continue at the current privilege level), read enable and accessed. 4. DPL (descriptor privilege level) defines the privilege level of the segment. I can be 0-3 where 0 is the most privileged. -5. P flag - indicates is segment presented in memory or not. +5. P flag - indicates if segment is presented in memory or not. 6. AVL flag - Available and reserved bits. From 111058234d50c42f6aa810eb697657d5e0636fb2 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 19 Jan 2015 14:38:56 +0100 Subject: [PATCH 2/2] Fix the little typo Yes, it made me feel unconfortable... By the way, I wrote some little articles but more about how to do some linux kernel stuff [here](https://github.com/GuillaumeGomez/howto-linux-kernel). Maybe you're interested to add them ? Anyway, it was very interesting to read. Nice job ! --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d73c189..bb68e4f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Series of posts about linux kernel. **Contributions**: Feel free to create issues or create pull-requests if you find issues or my English is poor. -**Please read [CONTRIBUTING.md](https://github.com/0xAX/linux-insides/blob/master/CONTRIBUTING.md) before you pushed your chanages.** +**Please read [CONTRIBUTING.md](https://github.com/0xAX/linux-insides/blob/master/CONTRIBUTING.md) before you pushed your changes.** Author ---------------