Skip to content

Commit f021bdf

Browse files
committedMay 9, 2016
Fix malformed links in SyncPrim 3 & 4 and Initialization 7.
'CPU mask' link in Initialization 7 is double-bracketed. 'Previous part' links in SyncPrim 3 & 4 have two opening brackets and one closing. 'Previous part' link in SyncPrim 4 points to current page, instead of previous. Append to contributors.
1 parent a11d585 commit f021bdf

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed
 

‎Initialization/linux-initialization-7.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ That's all, and now we can back to the `start_kernel` from the `setup_arch`.
334334
Back to the main.c
335335
================================================================================
336336

337-
As I wrote above, we have finished with the `setup_arch` function and now we can back to the `start_kernel` function from the [init/main.c](https://github.com/torvalds/linux/blob/master/init/main.c). As you may remember or saw yourself, `start_kernel` function as big as the `setup_arch`. So the couple of the next part will be dedicated to learning of this function. So, let's continue with it. After the `setup_arch` we can see the call of the `mm_init_cpumask` function. This function sets the [cpumask]((http://0xax.gitbooks.io/linux-insides/content/Concepts/cpumask.html)) pointer to the memory descriptor `cpumask`. We can look on its implementation:
337+
As I wrote above, we have finished with the `setup_arch` function and now we can back to the `start_kernel` function from the [init/main.c](https://github.com/torvalds/linux/blob/master/init/main.c). As you may remember or saw yourself, `start_kernel` function as big as the `setup_arch`. So the couple of the next part will be dedicated to learning of this function. So, let's continue with it. After the `setup_arch` we can see the call of the `mm_init_cpumask` function. This function sets the [cpumask](http://0xax.gitbooks.io/linux-insides/content/Concepts/cpumask.html) pointer to the memory descriptor `cpumask`. We can look on its implementation:
338338

339339
```C
340340
static inline void mm_init_cpumask(struct mm_struct *mm)

‎SyncPrim/sync-3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Synchronization primitives in the Linux kernel. Part 3.
44
Semaphores
55
--------------------------------------------------------------------------------
66

7-
This is the third part of the [chapter](https://0xax.gitbooks.io/linux-insides/content/SyncPrim/index.html) which describes synchronization primitives in the Linux kernel and in the previous part we saw special type of [spinlocks](https://en.wikipedia.org/wiki/Spinlock) - `queued spinlocks`. The previous [part]((https://0xax.gitbooks.io/linux-insides/content/SyncPrim/sync-2.html) was the last part which describes `spinlocks` related stuff. So we need to go ahead.
7+
This is the third part of the [chapter](https://0xax.gitbooks.io/linux-insides/content/SyncPrim/index.html) which describes synchronization primitives in the Linux kernel and in the previous part we saw special type of [spinlocks](https://en.wikipedia.org/wiki/Spinlock) - `queued spinlocks`. The previous [part](https://0xax.gitbooks.io/linux-insides/content/SyncPrim/sync-2.html) was the last part which describes `spinlocks` related stuff. So we need to go ahead.
88

99
The next [synchronization primitive](https://en.wikipedia.org/wiki/Synchronization_%28computer_science%29) after `spinlock` which we will see in this part is [semaphore](https://en.wikipedia.org/wiki/Semaphore_%28programming%29). Se will start from theoretical side and will learn what is it `semaphore` and only after this, we will see how it is implemented in the Linux kernel as we did in the previous part.
1010

‎SyncPrim/sync-4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ So, let's start.
1313
Concept of `mutex`
1414
--------------------------------------------------------------------------------
1515

16-
We already familiar with the [semaphore](https://en.wikipedia.org/wiki/Semaphore_%28programming%29) synchronization primitive from the previous [part]((https://0xax.gitbooks.io/linux-insides/content/SyncPrim/sync-4.html). It represented by the:
16+
We already familiar with the [semaphore](https://en.wikipedia.org/wiki/Semaphore_%28programming%29) synchronization primitive from the previous [part](https://0xax.gitbooks.io/linux-insides/content/SyncPrim/sync-3.html). It represented by the:
1717

1818
```C
1919
struct semaphore {

‎contributors.md

+1
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,4 @@ Thank you to all contributors:
8787
* [Jakub Wilk](https://github.com/jwilk)
8888
* [Justus Adam](https://github.com/JustusAdam)
8989
* [Roy Wellington Ⅳ](https://github.com/thanatos)
90+
* [Jonathan Rennison](https://github.com/JGRennison)

0 commit comments

Comments
 (0)
Please sign in to comment.