Commit Graph

91 Commits

Author SHA1 Message Date
Jan Sonntag
fa1cf540e8 Fix broken links and emails 2020-10-14 19:40:15 +02:00
0xAX
af1a757457
Merge pull request #722 from initBasti/fix_broken_links
Fix broken git hub links
2020-10-11 13:29:17 +06:00
iAnatoly
3eb70a8670 clock_getress is added to vDSO for x86 as of Jun 22, 2019: f66501dc53 2020-08-25 15:07:09 -07:00
Sebastian Fricke
f1b388dbdb Fix broken git hub links
Replace the following dead github links, with equivalent working ones.

s/ 16f73eb02d | https://github.com/torvalds/linux
s/ 16f73eb02d/ | https://github.com/torvalds/linux
s/ 16f73eb02d/Documentation/security/credentials.txt | https://github.com/torvalds/linux/blob/master/Documentation/security/credentials.rst
s/ 16f73eb02d/Documentation/workqueue.txt | 6f0d349d92/Documentation/core-api/workqueue.rst
s/ 16f73eb02d/arch/x86/entry_entry_64.S | https://github.com/torvalds/linux/blob/master/arch/x86/entry/entry_64.S
s/ 16f73eb02d/arch/x86/include/asm/calling.h | https://github.com/torvalds/linux/blob/master/arch/x86/entry/calling.h
s/ 16f73eb02d/arch/x86/include/asm/pgalloc. | https://github.com/torvalds/linux/blob/master/arch/x86/include/asm/pgalloc.h
s/ 16f73eb02d/arch/x86/include/bitops.h | https://github.com/torvalds/linux/blob/master/arch/x86/include/asm/bitops.h
s/ 16f73eb02d/arch/x86/include/irqflags.h | https://github.com/torvalds/linux/blob/master/arch/x86/include/asm/irqflags.h
s/ 16f73eb02d/arch/x86/include/uapi/asm/msr-index.h | https://github.com/torvalds/linux/blob/master/arch/x86/include/asm/msr-index.h
s/ 16f73eb02d/arch/x86/kernel.setup.c | https://github.com/torvalds/linux/blob/master/arch/x86/kernel/setup.c
s/ 16f73eb02d/arch/x86/kernel/entry_64.S | https://github.com/torvalds/linux/blob/master/arch/x86/entry/entry_64.S
s/ 16f73eb02d/arch/x86/kernel/vsyscall_64.c | https://github.com/torvalds/linux/blob/master/arch/x86/entry/vsyscall/vsyscall_64.c
s/ 16f73eb02d/arch/x86/kernel/vsyscall_emu_64.S | https://github.com/torvalds/linux/blob/master/arch/x86/entry/vsyscall/vsyscall_emu_64.S
s/ 16f73eb02d/blob/arch/x86/kernel/cpu/common.c | https://github.com/torvalds/linux/blob/master/arch/x86/kernel/cpu/common.c
s/ 16f73eb02d/drivers/clocksource_acpi_pm.c | https://github.com/torvalds/linux/blob/master/drivers/clocksource/acpi_pm.c
s/ 16f73eb02d/drivers/i2c/i2c-core.c | https://github.com/torvalds/linux/blob/master/drivers/i2c/i2c-core-base.c
s/ 16f73eb02d/include/asm-generic-sections.h | https://github.com/torvalds/linux/blob/master/include/asm-generic/sections.h
s/ 16f73eb02d/include/context_tracking.h | https://github.com/torvalds/linux/blob/master/include/linux/context_tracking.h
s/ 16f73eb02d/include/mm_types.h | https://github.com/torvalds/linux/blob/master/include/linux/mm_types.h
s/ 16f73eb02d/kernel/apic/io_apic.c | https://github.com/torvalds/linux/blob/master/arch/x86/kernel/apic/io_apic.c
s/ 16f73eb02d/kernel/apic/vector.c | https://github.com/torvalds/linux/blob/master/arch/x86/kernel/apic/vector.c
s/ 16f73eb02d/kernel/cgroup.c | https://github.com/torvalds/linux/blob/master/kernel/cgroup/cgroup.c
s/ 16f73eb02d/kernel/cpuset.c | https://github.com/torvalds/linux/blob/master/kernel/cgroup/cpuset.c
s/ 16f73eb02d/kernel/irqinit.c | https://github.com/torvalds/linux/blob/master/arch/x86/kernel/irqinit.c
s/ 16f73eb02d/kernel/locking/lockdep_insides.h | https://github.com/torvalds/linux/blob/master/kernel/locking/lockdep_internals.h
s/ 16f73eb02d/kernel/tick-common.c | https://github.com/torvalds/linux/blob/master/kernel/time/tick-common.c
s/ 16f73eb02d/kernel/time/tich-sched.c | https://github.com/torvalds/linux/blob/master/kernel/time/tick-sched.c
s/ 16f73eb02d/linux/binfmts.h | https://github.com/torvalds/linux/blob/master/include/linux/binfmts.h
s/ 16f73eb02d/locking/rwsem-xadd.c | https://github.com/torvalds/linux/blob/master/kernel/locking/rwsem.c
s/ 16f73eb02d/mm/block.c | https://github.com/torvalds/linux/blob/master/mm/memblock.c
s/ 16f73eb02d/sched/idle.c | https://github.com/torvalds/linux/blob/master/kernel/sched/idle.c
s/ 16f73eb02d/sound/isa/sscape | https://github.com/torvalds/linux/blob/master/sound/isa/sscape.c

Signed-off-by: Sebastian Fricke <sebastian.fricke.linux@gmail.com>
2020-06-18 17:22:10 +02:00
Sebastian Fricke
2cff4abf08 Gitbook Links: replace old links with new ones
The old links didn't point to valid locations.
Replace the old links with the new links and test those changes with a
small script: https://github.com/initBasti/markdown_link_check .

______________________________________________________________

In order to find and replace the links, I used the following commands:

grep -rwohP '.' -e "\(https\:\/\/0xax.gitbooks.io\/\S*\)" > links.txt
(Find all links recursivly in the project directories and print out the
 only the matches links)

Within links.txt:
Remove the '(' & ')' => :%s/\(//g  and :%s/\)//g
Remove duplicates => :sort u

Test if the links work with:
python3 md_link_check.py --pattern 0xax.gitbook --output-file bad.txt
(https://github.com/initBasti/markdown_link_check)

Create replace commands:
:%s/.*/grep -rl & '.' | xargs sed -i 's#&##g'
Enter replacement URL between the 2nd & 3rd '#'
Execute commands: :w !sh

Signed-off-by: Sebastian Fricke <sebastian.fricke.linux@gmail.com>
2020-05-31 17:23:17 +02:00
Michael D
e67179a2f6 ...and the last images fixed
Patch 7: SysCall/, Theory/ and Timers/
2019-10-10 20:11:49 +02:00
Bo YU
d71137fbf2 Syscall: fix syscall table entry for 86_64
Fix the maxium number of syscall table for 86_64
in kernel version: v5.0.0-rc7

Signed-off-by: Bo YU <tsu.yubo@gmail.com>
2019-02-24 21:45:00 +08:00
blameying
4594062472 fix file syscall3 vdso-image-32.c 2019-01-23 19:06:57 +08:00
Weikang Shi
b7e625efdd
typo
fix
2018-11-20 10:26:56 +08:00
Weber Zhang
61770a9e38
Fix up one mistake
`/proc/pid/systemcall` -> `/proc/${pid}/syscall`
2018-11-07 16:59:48 +08:00
proninyaroslav
163ba61dbe Replace invalid links to the images 2018-08-01 19:48:02 +03:00
Alexander Kuleshov
e896e56c86
s/http/https for linux-insides 2018-03-24 01:06:57 +06:00
Dongliang Mu
49c8951eb8 modify broken links related with Thoery, Data structure, Misc and so on 2018-03-22 19:50:44 -04:00
Dongliang Mu
4a57db7015 fix broken links 2018-03-22 01:28:16 -04:00
Dongliang Mu
4704d82b25 fix broken links related with 'sync, syscall, timer' 2018-03-22 00:48:13 -04:00
Dongliang Mu
72c71c2560 fix interrupts 2018-03-19 22:09:46 -04:00
Dongliang Mu
f159c63e0c Change mm to MM, interrupts to Interrupts 2018-03-16 16:03:40 -04:00
Joshua Murphy
6d69c2431b Refactored files for a unified naming convention, making an autoamted LaTeX build easier too 2018-02-14 10:03:16 -03:30
Miles Frain
081d4335ff syscalls-1: MSR_LSTAR clarification and minor edits 2018-02-01 00:04:29 -07:00
Dan Ungureanu
bb4c0ee9e3 Fix broken link. 2017-10-26 18:50:57 +03:00
Georgii Staroselskii
339539f9b7 syscall-3.md: fix typos
- delete a comma
- s/receiving/received
- s/Both function/Both functions
- s/vsyscal/vsyscall
2017-09-17 02:55:20 +03:00
Georgii Staroselskii
1389e484e0 syscalls-1.md: fix typos
s/does not enabled/is not enabled
s/empty string/an empty string
s/represent/represents
d/the/the our
s/call/calls
2017-09-16 20:39:45 +03:00
Radek Dostál
f71365fbbe Delete "and last"
This chapter is no longer last one from syscalls. Currently "Limits on
resources in Linux" is the last chapter.

Signed-off-by: Radek Dostál <rd@radekdostal.com>
2017-09-05 22:59:00 +02:00
Radek Dostál
b420e581fe Fix Wikipedia links containing ()
Based on: https://stackoverflow.com/questions/13824669/how-do-you-write-a-link-containing-a-closing-bracket-in-markdown-syntax

Signed-off-by: Radek Dostál <rd@radekdostal.com>
2017-09-05 22:48:58 +02:00
0xAX
974c45019d Merge branch 'master' into master 2017-09-02 23:58:13 +06:00
Cornelius Diekmann
a87d46fd66 Clarify: vDSO is linked automatically with glibc
Change is partly a verbatim copy of https://www.kernel.org/doc/Documentation/ABI/stable/vdso

Quote: "Programs that dynamically link to glibc will use the vDSO automatically. Otherwise, you can use the reference parser in tools/testing/selftests/vDSO/parse_vdso.c."

The old version of the book was slightly imprecise. It was unclear to me whether this is an optional or a default behavior.
2017-08-10 14:55:35 +02:00
Cornelius Diekmann
4b0704fecf Minor language improvement
There are multiple different system calls. Starting the introduction in plural gives a better bridge to the examples "like to read or to write to a file, to open a socket" ...
2017-08-10 14:15:14 +02:00
Chandan Rai
fc5cdbb0e7 corrected typos 2017-08-02 00:12:24 +05:30
Aaron Hill
17da4af718
Make all Github links reference a specific commit
Closes #480
2017-07-30 15:56:26 -04:00
int3rrupt
9979317453 Update sentence grammar
Remove "never" from end of sentence and change "can't exceed to "can never exceed"
2017-07-30 08:24:36 -07:00
Jakub Wilk
307605b854 SysCall/syscall-6: Fix typos 2017-07-30 14:14:45 +02:00
0xAX
6e6835c76b Update README.md 2017-07-30 13:49:13 +06:00
0xAX
8b4faeac4b Create syscall-6.md 2017-07-30 13:47:57 +06:00
Alexander Kuleshov
30600495c4
fix articles 2017-07-08 00:22:46 +06:00
Alexander Kuleshov
78bae37004 fix typos 2017-01-29 20:02:07 +06:00
Alexander Kuleshov
50d386c21e add syscall-5.md 2017-01-29 20:00:25 +06:00
proninyaroslav
90f50c2ac5 Change README links as relative 2017-01-07 10:53:22 +03:00
Alexander Kuleshov
f17d1f8d91 Merge branch 'fix-typo-syscall-2' of https://github.com/yunomae/linux-insides into yunomae-fix-typo-syscall-2 2016-10-29 23:36:46 +06:00
spacewander
f937425e1c update SysCall/syscall-3 and SysCall/syscall-4 2016-10-29 23:16:37 +06:00
Devon Harvey
4c398be16a Fix typo in syscall-1.md 2016-08-01 18:19:02 -04:00
Mack Stump
3fda046617 fix typos 2016-05-19 10:46:26 -04:00
Yoshihiro YUNOMAE
f057964f98 Fix typo 2016-05-03 16:33:09 +09:00
null
194d0c83e3 Fixing links in System Calls chapter to point to the right sub-pages 2016-04-06 16:43:53 -04:00
null
48dce4baf4 Fixing spelling mistake 2016-04-06 16:39:56 -04:00
Dmitriy Olshevskiy
76785c23b6 fix typos: misc and syscall chapters 2016-04-01 20:09:18 +03:00
spacewander
12a4961bd8 update Timers 2016-02-02 16:35:29 +08:00
spacewander
c417f5f37c update SysCall/syscall-1 and SysCall/syscall-2 2016-01-20 20:00:37 +08:00
0xAX
474ef13229 Update syscall-1.md 2015-10-25 18:38:39 +06:00
mudongliang
a591d092b9 modify 'internals' to 'insides' 2015-10-16 21:56:04 +08:00
mhudgins
0c540f47b0 minor syscall-1 grammar and sentence fixes 2015-10-13 14:25:26 -07:00