1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-11-13 19:28:57 +00:00
Commit Graph

1698 Commits

Author SHA1 Message Date
0xAX
dfae85322d
Merge pull request #710 from initBasti/fix-typo
Word order & word choice improvements
2020-04-22 14:41:52 +06:00
Sebastian Fricke
8976544271 remove accidental corruptions 2020-04-18 11:51:40 +02:00
Sebastian Fricke
991f171c6d Initialization/linux-initialization-8.md: Fix grammatical errors & improve wording
s/as if a single task/as if they were a single task/
s/The least unit which scheduler operates is an individual task or thread. But a process is not only one type of entities of which the scheduller may operate./
The smallest unit that the scheduler works with is an individual task or thread. However, a process is not the only type of entity that the scheduler can operate with./
s/these options provides support/these options provide support/
s/The first one option provides support for group scheduling with `completely fair scheduler` policies and the second with `real-time` policies respectively./
The first option provides support for group scheduling with the `completely fair scheduler` policies and the second with the `real-time` policies respectively./
s/It means that it supports/That means it supports/
2020-04-18 07:11:09 +02:00
Sebastian Fricke
caa200e708 Interrupts/linux-interrupts-2.md: Improve wording
s/more about its implementation you can read/you can read more about its implementation/
s/For now we come to/For now, we have reached/
s/Of course you already can know that we will/You probably already know, that we will/
2020-04-18 06:29:10 +02:00
Sebastian Fricke
74a281cccc SyncPrim/linux-sync-1 improve wording
Improve wording of multiple sentences in the introduction.
Correct grammar mistakes.
No semantic changes.
2020-04-17 07:05:09 +02:00
Sebastian Fricke
a40a3d1be3 Fix typo at the description of IDT entries
s/special mechanism in the x86_64, will see it later;/
  special mechanism in the x86_64, which is described below;/
2020-04-15 07:27:23 +02:00
Sebastian Fricke
781a2d12f1 Missing commas
Commas after the words: Finally, Also at the beginning of sentences
and before a which within a sentence.
2020-04-15 06:40:41 +02:00
Sebastian Fricke
f294553e43 Fix typo in Interrupts-1
s/..allows the interrupted program to be resume/
  ..allows the interrupted program to resume/
2020-04-15 06:31:54 +02:00
0xAX
9e1318f3ec
Merge pull request #705 from manbing/master
Cgroups/linux-cgroups-1.md: Fix typo
2020-04-05 23:27:17 +06:00
0xAX
39b3353715
Merge pull request #707 from initBasti/linux-interrupts-1-fix
Linux interrupts 1 fix
2020-04-05 23:27:00 +06:00
Sebastian Fricke
4a7f812014 Update irq_stack initialization II
Replace the removed initialization within setup_percpu.c with the
initialization for X86_64 defined within irq_64.c
Change the description accordingly.
2020-04-05 09:54:15 +02:00
Sebastian Fricke
c96791d527 Update irq_stack initialization
Replace irq_stack_union with fixed_percpu_data
Update to the current system map
Update description of initialization process
Replace DECLARE macros with the current implementation
2020-04-05 07:10:37 +02:00
Sebastian Fricke
64a9777ca7 Replace deprecated initial_gs initialization
Within /arch/x86/kernel/head_64.S the implementation of the
initialization was changed.
Update the passage accordingly.
b1bd27b9ad (diff-a136f03867893e5d01eeadaba59c2dff)

Also fix a typo from a previous commit.
2020-04-04 09:09:02 +02:00
Sebastian Fricke
7a3f099c76 Replace irq_stack_union with new implementation
The irq_stack is no longer within a irq_stack_union
but separated into the irq_stack struct and the fixed_percpu_data struct
This change was made with the following series of commits:
e6401c1309 (diff-7db868ab08485b2578c9f97e45fb7d00)
2020-04-04 09:03:02 +02:00
Sebastian Fricke
e3711a1ac3 Add correct location & link to the definition
Add link to the github file location and the path
within the source directory to gate_struct definiton
2020-04-01 07:34:48 +02:00
Sebastian Fricke
1bf6ed1ec9 replace gate_struct64 with unified gate_struct
As described in this:
https://lore.kernel.org/lkml/20170828064957.861974317@linutronix.de/
mail from the lkml.
And changed within this commit:
64b163fab6 (diff-35bcd00365a749ba6cfa246a7dc86a68)

The gate_struct was unified for 32 and 64bit machines.
Replaced gate_struct64 definition with that of gate_struct.
2020-04-01 07:21:50 +02:00
Sebastian Fricke
73fd0ad5e1 add Sebastian Fricke to the contributer list 2020-03-27 07:01:38 +01:00
Sebastian Fricke
db72e924c1 correct the source code file as reference
the function void set_system_intr_gate doesn't exists anymore
the function set_intr_gate is now located in arch/x86/kernel/idt.c
2020-03-27 06:55:13 +01:00
Manbing
659a9be536 Cgroups/linux-cgroups-1.md: Fix typo
Modify "cp_cgrp_subsys" to "cpu_cgrp_subsys".

Signed-off-by: Manbing <manbing3@gmail.com>
2020-03-12 09:04:39 +08:00
0xAX
9fa85802fe
Merge pull request #703 from sodrooome/master
Fix syntax highlighting in clocksource framework
2020-03-01 13:57:25 +06:00
Ryan Febriansyah
2e52bcc4e9
Update linux-timers-2.md 2020-03-01 10:11:26 +07:00
0xAX
053f4b50ac
Merge pull request #702 from bmeneguele/initcalls-fix
concepts/initcalls: typos and new content
2020-02-22 14:25:46 +06:00
Bruno Meneguele
cdbc603fbd concepts/initcalls: add module_init macro information
While reading about initcalls around the web and kernel source code I found
that the information of what happens to __init functions not explicitly set to
any initcall list pretty useful. With this patch such information is added.

Signed-off-by: Bruno Meneguele <bmeneguele@gmail.com>
2020-02-21 17:03:12 -03:00
Bruno Meneguele
cbc004adde concepts/initcalls: rewording and typo corrections
This patch handle different typos present in the initcall section of the book.
It also reword some paragraphs in order to get it clearer to the reader.
Some example codes were also added in order to help the reader to understand
smaller concepts, like the way initcalls callbacks are named in the object
file.

Signed-off-by: Bruno Meneguele <bmeneguele@gmail.com>
2020-02-21 16:12:43 -03:00
0xAX
8c4053c6c6
Merge pull request #694 from proninyaroslav/patch-1
Fix image in the README file
2019-11-24 19:09:06 +06:00
proninyaroslav
e68003af8e Add assets 2019-11-10 19:23:13 +03:00
Yaroslav Pronin
98a02f269b
Fix image path 2019-11-10 16:20:02 +00:00
0xAX
37a77fede0
Merge pull request #692 from darkstar/fixes
Some small spelling fixes
2019-11-01 23:36:52 +06:00
0xAX
7730b08da7
Merge pull request #693 from darkstar/fix_images
Fix (almost) all images by storing them locally
2019-11-01 23:36:25 +06:00
Michael D
e67179a2f6 ...and the last images fixed
Patch 7: SysCall/, Theory/ and Timers/
2019-10-10 20:11:49 +02:00
Michael D
fd8281da5c Image salvaging continuing
Patch 6: MM/
2019-10-10 20:08:12 +02:00
Michael D
639a7b59c3 More image fixes
Patch 5: Misc/

Note that one image, the "busybox menu", was not saved to
the wayback machine and has been lost.
2019-10-10 20:03:54 +02:00
Michael D
a047b17551 More recovered images
Patch 4: Interrupts/
2019-10-10 19:57:27 +02:00
Michael D
99e156101a More image file salvaging
Patch 3: Initialization/
2019-10-10 19:54:55 +02:00
Michael D
a82aca5a4a Some more images recovered from waybackmachine
Patch 2: Cgroups/
2019-10-10 19:50:47 +02:00
Michael D
84a7575f2f Salvage images from archive.org and add them to git
Patch 1: Booting/
2019-10-10 19:47:21 +02:00
Michael D
747f10af14 Some small spelling fixes 2019-10-10 19:30:08 +02:00
0xAX
cadd5c3576
Merge pull request #690 from sjp38/sync2_fix_1
Sync2 fix 1
2019-10-07 23:58:06 +06:00
0xAX
5303f8b91a
Merge branch 'master' into sync2_fix_1 2019-10-07 23:57:59 +06:00
0xAX
aa355fadeb
Merge pull request #691 from srvk-99/master
Update linux-misc-2.md
2019-10-07 23:57:06 +06:00
0xAX
67c7258b28
Merge pull request #688 from md1512/corrected-escaping-2
Corrected escaping on two URLs revision 2
2019-10-07 23:56:51 +06:00
0xAX
720e7534ad
Merge pull request #683 from gwelymernans/cleanups
Cleanup some of the grammar to flow better
2019-10-07 23:56:20 +06:00
Sourav Karjee
bd2d5e7ef1
Update linux-misc-2.md 2019-10-02 00:19:01 +05:30
SeongJae Park
75a611e28d SyncPrim/linux-sync-2.md: Fix a dot into semicolon
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
2019-10-01 19:38:35 +02:00
SeongJae Park
7fe8bc397a SyncPrim/linux-sync-2.md: Fix missed description about spinlock api
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
2019-10-01 19:38:35 +02:00
Stefan20162016
501ffa504d added link to minimal bootloader with comments 2019-10-01 19:38:35 +02:00
Marco Torsello
82aaf56611 Corrected escaping on two URLs
Corrected escaping on two Wikipedia URLs
2019-09-26 00:44:00 +02:00
0xAX
5afe86aeeb
Merge pull request #685 from Stefan20162016/add-link-to-linux-bootstrap-1
added link to minimal bootloader with comments
2019-08-26 14:15:22 +06:00
0xAX
057f65636d
Merge pull request #684 from josh-byster/patch-2
Minor clarity edit in sentence
2019-08-26 14:14:48 +06:00
Stefan20162016
60c19f7c02 added link to minimal bootloader with comments 2019-08-21 23:17:32 +02:00