* [PATCH 2/5] Documentation: update URL for Michael K. Johnson's articles
2016-03-19 12:51 [PATCH 1/5] Documentation: add Linux Kernel Development book Luis de Bethencourt
@ 2016-03-19 12:51 ` Luis de Bethencourt
2016-03-19 13:00 ` Luis de Bethencourt
2016-03-31 6:50 ` Jonathan Corbet
2016-03-19 12:51 ` [PATCH 3/5] Documentation: update URL of Analysis of the Ext2fs structure Luis de Bethencourt
` (3 subsequent siblings)
4 siblings, 2 replies; 12+ messages in thread
From: Luis de Bethencourt @ 2016-03-19 12:51 UTC (permalink / raw)
To: linux-kernel; +Cc: corbet, linux-doc, Luis de Bethencourt
The URL for "Writing Linux Device Drivers" hasn't been available in some
time. Updating it to the URL of Michael K. Johnson's "Linux Kernel Hackers'
Guide"
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
---
Documentation/kernel-docs.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/kernel-docs.txt b/Documentation/kernel-docs.txt
index b250360..9a1b0d3 100644
--- a/Documentation/kernel-docs.txt
+++ b/Documentation/kernel-docs.txt
@@ -196,7 +196,7 @@
* Title: "Writing Linux Device Drivers"
Author: Michael K. Johnson.
- URL: http://users.evitech.fi/~tk/rtos/writing_linux_device_d.html
+ URL: http://www.tldp.org/LDP/khg/HyperNews/get/khg.html
Keywords: files, VFS, file operations, kernel interface, character
vs block devices, I/O access, hardware interrupts, DMA, access to
user memory, memory allocation, timers.
--
2.5.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH 2/5] Documentation: update URL for Michael K. Johnson's articles
2016-03-19 12:51 ` [PATCH 2/5] Documentation: update URL for Michael K. Johnson's articles Luis de Bethencourt
@ 2016-03-19 13:00 ` Luis de Bethencourt
2016-03-31 6:50 ` Jonathan Corbet
1 sibling, 0 replies; 12+ messages in thread
From: Luis de Bethencourt @ 2016-03-19 13:00 UTC (permalink / raw)
To: linux-kernel; +Cc: corbet, linux-doc
On 19/03/16 12:51, Luis de Bethencourt wrote:
> The URL for "Writing Linux Device Drivers" hasn't been available in some
> time. Updating it to the URL of Michael K. Johnson's "Linux Kernel Hackers'
> Guide"
>
> Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
> ---
> Documentation/kernel-docs.txt | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/kernel-docs.txt b/Documentation/kernel-docs.txt
> index b250360..9a1b0d3 100644
> --- a/Documentation/kernel-docs.txt
> +++ b/Documentation/kernel-docs.txt
> @@ -196,7 +196,7 @@
>
> * Title: "Writing Linux Device Drivers"
> Author: Michael K. Johnson.
> - URL: http://users.evitech.fi/~tk/rtos/writing_linux_device_d.html
> + URL: http://www.tldp.org/LDP/khg/HyperNews/get/khg.html
> Keywords: files, VFS, file operations, kernel interface, character
> vs block devices, I/O access, hardware interrupts, DMA, access to
> user memory, memory allocation, timers.
>
Hi,
I separated the docs URL updates into individual commits so they can easily
be cherry-picked. I am happy to squash them all into one if you think it is
better.
Thanks :)
Luis
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/5] Documentation: update URL for Michael K. Johnson's articles
2016-03-19 12:51 ` [PATCH 2/5] Documentation: update URL for Michael K. Johnson's articles Luis de Bethencourt
2016-03-19 13:00 ` Luis de Bethencourt
@ 2016-03-31 6:50 ` Jonathan Corbet
1 sibling, 0 replies; 12+ messages in thread
From: Jonathan Corbet @ 2016-03-31 6:50 UTC (permalink / raw)
To: Luis de Bethencourt; +Cc: linux-kernel, linux-doc
On Sat, 19 Mar 2016 12:51:21 +0000
Luis de Bethencourt <luisbg@osg.samsung.com> wrote:
> The URL for "Writing Linux Device Drivers" hasn't been available in some
> time. Updating it to the URL of Michael K. Johnson's "Linux Kernel Hackers'
> Guide"
But that's a different work, I don't think it makes sense to just
substitute in the URL. It would be better, I think, to turn this into an
entry for the KHG if we really want that.
Thanks,
jon
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 3/5] Documentation: update URL of Analysis of the Ext2fs structure
2016-03-19 12:51 [PATCH 1/5] Documentation: add Linux Kernel Development book Luis de Bethencourt
2016-03-19 12:51 ` [PATCH 2/5] Documentation: update URL for Michael K. Johnson's articles Luis de Bethencourt
@ 2016-03-19 12:51 ` Luis de Bethencourt
2016-03-31 6:51 ` Jonathan Corbet
2016-03-19 12:51 ` [PATCH 4/5] Documentation: update URLs for Richard Gooch's articles Luis de Bethencourt
` (2 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Luis de Bethencourt @ 2016-03-19 12:51 UTC (permalink / raw)
To: linux-kernel; +Cc: corbet, linux-doc, Luis de Bethencourt
The current URL has been down for some time, updating it to a working one.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
---
Documentation/kernel-docs.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/kernel-docs.txt b/Documentation/kernel-docs.txt
index 9a1b0d3..488bda7 100644
--- a/Documentation/kernel-docs.txt
+++ b/Documentation/kernel-docs.txt
@@ -250,7 +250,7 @@
* Title: "Analysis of the Ext2fs structure"
Author: Louis-Dominique Dubeau.
- URL: http://www.nondot.org/sabre/os/files/FileSystems/ext2fs/
+ URL: http://teaching.csse.uwa.edu.au/units/CITS2002/fs-ext2/
Keywords: ext2, filesystem, ext2fs.
Description: Description of ext2's blocks, directories, inodes,
bitmaps, invariants...
--
2.5.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH 4/5] Documentation: update URLs for Richard Gooch's articles
2016-03-19 12:51 [PATCH 1/5] Documentation: add Linux Kernel Development book Luis de Bethencourt
2016-03-19 12:51 ` [PATCH 2/5] Documentation: update URL for Michael K. Johnson's articles Luis de Bethencourt
2016-03-19 12:51 ` [PATCH 3/5] Documentation: update URL of Analysis of the Ext2fs structure Luis de Bethencourt
@ 2016-03-19 12:51 ` Luis de Bethencourt
2016-03-31 6:51 ` Jonathan Corbet
2016-03-19 12:51 ` [PATCH 5/5] Documentation: update URL for Porting Linux 2.0 Drivers to 2.2 Luis de Bethencourt
2016-03-31 6:49 ` [PATCH 1/5] Documentation: add Linux Kernel Development book Jonathan Corbet
4 siblings, 1 reply; 12+ messages in thread
From: Luis de Bethencourt @ 2016-03-19 12:51 UTC (permalink / raw)
To: linux-kernel; +Cc: corbet, linux-doc, Luis de Bethencourt
Current URL for "Kernel API changes from 2.0 to 2.2" hasn't been available
for some time, updating. The second article about changes from 2.2 to 2.4
is missing a URL, adding it.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
---
Documentation/kernel-docs.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/kernel-docs.txt b/Documentation/kernel-docs.txt
index 488bda7..04f6d73 100644
--- a/Documentation/kernel-docs.txt
+++ b/Documentation/kernel-docs.txt
@@ -266,14 +266,14 @@
* Title: "Kernel API changes from 2.0 to 2.2"
Author: Richard Gooch.
- URL:
- http://www.linuxhq.com/guides/LKMPG/node28.html
+ URL: http://www.safe-mbox.com/~rgooch/linux/docs/porting-to-2.2.html
Keywords: 2.2, changes.
Description: Kernel functions/structures/variables which changed
from 2.0.x to 2.2.x.
* Title: "Kernel API changes from 2.2 to 2.4"
Author: Richard Gooch.
+ URL: http://www.safe-mbox.com/~rgooch/linux/docs/porting-to-2.4.html
Keywords: 2.4, changes.
Description: Kernel functions/structures/variables which changed
from 2.2.x to 2.4.x.
--
2.5.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH 5/5] Documentation: update URL for Porting Linux 2.0 Drivers to 2.2
2016-03-19 12:51 [PATCH 1/5] Documentation: add Linux Kernel Development book Luis de Bethencourt
` (2 preceding siblings ...)
2016-03-19 12:51 ` [PATCH 4/5] Documentation: update URLs for Richard Gooch's articles Luis de Bethencourt
@ 2016-03-19 12:51 ` Luis de Bethencourt
2016-03-31 6:52 ` Jonathan Corbet
2016-03-31 6:49 ` [PATCH 1/5] Documentation: add Linux Kernel Development book Jonathan Corbet
4 siblings, 1 reply; 12+ messages in thread
From: Luis de Bethencourt @ 2016-03-19 12:51 UTC (permalink / raw)
To: linux-kernel; +Cc: corbet, linux-doc, Luis de Bethencourt
The URL format of Linux Magazine articles has changed. Updating the URL
of the "Porting Linux 2.0 Drivers to Linux 2.2" article by Alan Cox.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
---
Documentation/kernel-docs.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/kernel-docs.txt b/Documentation/kernel-docs.txt
index 04f6d73..bfca1ed 100644
--- a/Documentation/kernel-docs.txt
+++ b/Documentation/kernel-docs.txt
@@ -376,7 +376,7 @@
* Title: "Porting Linux 2.0 Drivers To Linux 2.2: Changes and New
Features "
Author: Alan Cox.
- URL: http://www.linux-mag.com/1999-05/gear_01.html
+ URL: http://www.linux-mag.com/id/216/
Keywords: ports, porting.
Description: Article from Linux Magazine on porting from 2.0 to
2.2 kernels.
--
2.5.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH 1/5] Documentation: add Linux Kernel Development book
2016-03-19 12:51 [PATCH 1/5] Documentation: add Linux Kernel Development book Luis de Bethencourt
` (3 preceding siblings ...)
2016-03-19 12:51 ` [PATCH 5/5] Documentation: update URL for Porting Linux 2.0 Drivers to 2.2 Luis de Bethencourt
@ 2016-03-31 6:49 ` Jonathan Corbet
4 siblings, 0 replies; 12+ messages in thread
From: Jonathan Corbet @ 2016-03-31 6:49 UTC (permalink / raw)
To: Luis de Bethencourt; +Cc: linux-kernel, linux-doc
On Sat, 19 Mar 2016 12:51:20 +0000
Luis de Bethencourt <luisbg@osg.samsung.com> wrote:
> The Linux Kernel Development book by Robert Love has been recommended to me
> by multiple kernel hackers. Worth having in the list of books in
> kernel-docs.txt for newbies looking for good learning resources.
Applied to the docs tree, thanks.
jon
^ permalink raw reply [flat|nested] 12+ messages in thread