* [PATCH v2] docs: Add relevant kernel publications to list of books
@ 2023-02-22 18:34 Carlos Bilbao
2023-03-14 18:44 ` [PATCH v3] " Carlos Bilbao
2023-03-14 18:51 ` [PATCH v2] " Jonathan Corbet
0 siblings, 2 replies; 6+ messages in thread
From: Carlos Bilbao @ 2023-02-22 18:34 UTC (permalink / raw)
To: corbet; +Cc: kaiwan.billimoria, rlove, linux-doc, linux-kernel, Carlos Bilbao
For the list of kernel published books, include publication covering kernel
debugging from August, 2022 (ISBN 978-1801075039) and one from March, 2021
on the topic of char device drivers and kernel synchronization (ISBN
978-1801079518). Also add foundational book from Robert Love (ISBN
978-1449339531) and remove extra spaces.
Co-developed-by: Carlos Bilbao <carlos.bilbao@amd.com>
Signed-off-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
Signed-off-by: Carlos Bilbao <carlos.bilbao@amd.com>
---
Changes since v1:
- Fix name of author Kaiwan N Billimoria.
- Include other book, from 2021, also authored by Kaiwan.
- Include Kaiwan's SoB.
---
Documentation/process/kernel-docs.rst | 36 +++++++++++++++++++++++----
1 file changed, 31 insertions(+), 5 deletions(-)
diff --git a/Documentation/process/kernel-docs.rst b/Documentation/process/kernel-docs.rst
index 1c6e2ab92f4e..46f927aae6eb 100644
--- a/Documentation/process/kernel-docs.rst
+++ b/Documentation/process/kernel-docs.rst
@@ -75,13 +75,39 @@ On-line docs
Published books
---------------
+ * Title: **Linux Kernel Debugging: Leverage proven tools and advanced techniques to effectively debug Linux kernels and kernel modules**
+
+ :Author: Kaiwan N Billimoria
+ :Publisher: Packt Publishing Ltd
+ :Date: August, 2022
+ :Pages: 638
+ :ISBN: 978-1801075039
+ :Notes: Debugging book
+
* Title: **Linux Kernel Programming: A Comprehensive Guide to Kernel Internals, Writing Kernel Modules, and Kernel Synchronization**
- :Author: Kaiwan N. Billimoria
- :Publisher: Packt Publishing Ltd
- :Date: 2021
- :Pages: 754
- :ISBN: 978-1789953435
+ :Author: Kaiwan N Billimoria
+ :Publisher: Packt Publishing Ltd
+ :Date: March, 2021
+ :Pages: 754
+ :ISBN: 978-1789953435
+
+ * Title: **Linux Kernel Programming Part 2 - Char Device Drivers and Kernel Synchronization: Create user-kernel interfaces, work with peripheral I/O, and handle hardware interrupts**
+
+ :Author: Kaiwan N Billimoria
+ :Publisher: Packt Publishing Ltd
+ :Date: March, 2021
+ :Pages: 452
+ :ISBN: 978-1801079518
+
+ * Title: **Linux System Programming: Talking Directly to the Kernel and C Library**
+
+ :Author: Robert Love
+ :Publisher: O'Reilly Media
+ :Date: June, 2013
+ :Pages: 456
+ :ISBN: 978-1449339531
+ :Notes: Foundational book
* Title: **Linux Kernel Development, 3rd Edition**
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v3] docs: Add relevant kernel publications to list of books
2023-02-22 18:34 [PATCH v2] docs: Add relevant kernel publications to list of books Carlos Bilbao
@ 2023-03-14 18:44 ` Carlos Bilbao
2023-03-14 18:57 ` Jonathan Corbet
2023-03-14 18:51 ` [PATCH v2] " Jonathan Corbet
1 sibling, 1 reply; 6+ messages in thread
From: Carlos Bilbao @ 2023-03-14 18:44 UTC (permalink / raw)
To: corbet; +Cc: kaiwan.billimoria, rlove, linux-doc, linux-kernel
For the list of kernel published books, include publication covering kernel
debugging from August, 2022 (ISBN 978-1801075039) and one from March, 2021
on the topic of char device drivers and kernel synchronization (ISBN
978-1801079518). Also add foundational book from Robert Love (ISBN
978-1449339531) and remove extra spaces.
Co-developed-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
Signed-off-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
Signed-off-by: Carlos Bilbao <carlos.bilbao@amd.com>
---
Changes since v2:
- Fix SoB chain.
Changes since v1:
- Fix name of author Kaiwan N Billimoria.
- Include other book, from 2021, also authored by Kaiwan.
- Include Kaiwan's SoB.
---
Documentation/process/kernel-docs.rst | 36 +++++++++++++++++++++++----
1 file changed, 31 insertions(+), 5 deletions(-)
diff --git a/Documentation/process/kernel-docs.rst
b/Documentation/process/kernel-docs.rst
index 1c6e2ab92f4e..46f927aae6eb 100644
--- a/Documentation/process/kernel-docs.rst
+++ b/Documentation/process/kernel-docs.rst
@@ -75,13 +75,39 @@ On-line docs
Published books
---------------
+ * Title: **Linux Kernel Debugging: Leverage proven tools and advanced
techniques to effectively debug Linux kernels and kernel modules**
+
+ :Author: Kaiwan N Billimoria
+ :Publisher: Packt Publishing Ltd
+ :Date: August, 2022
+ :Pages: 638
+ :ISBN: 978-1801075039
+ :Notes: Debugging book
+
* Title: **Linux Kernel Programming: A Comprehensive Guide to Kernel
Internals, Writing Kernel Modules, and Kernel Synchronization**
- :Author: Kaiwan N. Billimoria
- :Publisher: Packt Publishing Ltd
- :Date: 2021
- :Pages: 754
- :ISBN: 978-1789953435
+ :Author: Kaiwan N Billimoria
+ :Publisher: Packt Publishing Ltd
+ :Date: March, 2021
+ :Pages: 754
+ :ISBN: 978-1789953435
+
+ * Title: **Linux Kernel Programming Part 2 - Char Device Drivers and
Kernel Synchronization: Create user-kernel interfaces, work with peripheral
I/O, and handle hardware interrupts**
+
+ :Author: Kaiwan N Billimoria
+ :Publisher: Packt Publishing Ltd
+ :Date: March, 2021
+ :Pages: 452
+ :ISBN: 978-1801079518
+
+ * Title: **Linux System Programming: Talking Directly to the Kernel
and C Library**
+
+ :Author: Robert Love
+ :Publisher: O'Reilly Media
+ :Date: June, 2013
+ :Pages: 456
+ :ISBN: 978-1449339531
+ :Notes: Foundational book
* Title: **Linux Kernel Development, 3rd Edition**
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] docs: Add relevant kernel publications to list of books
2023-02-22 18:34 [PATCH v2] docs: Add relevant kernel publications to list of books Carlos Bilbao
2023-03-14 18:44 ` [PATCH v3] " Carlos Bilbao
@ 2023-03-14 18:51 ` Jonathan Corbet
1 sibling, 0 replies; 6+ messages in thread
From: Jonathan Corbet @ 2023-03-14 18:51 UTC (permalink / raw)
To: Carlos Bilbao
Cc: kaiwan.billimoria, rlove, linux-doc, linux-kernel, Carlos Bilbao
Carlos Bilbao <carlos.bilbao@amd.com> writes:
> For the list of kernel published books, include publication covering kernel
> debugging from August, 2022 (ISBN 978-1801075039) and one from March, 2021
> on the topic of char device drivers and kernel synchronization (ISBN
> 978-1801079518). Also add foundational book from Robert Love (ISBN
> 978-1449339531) and remove extra spaces.
>
> Co-developed-by: Carlos Bilbao <carlos.bilbao@amd.com>
> Signed-off-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
> Signed-off-by: Carlos Bilbao <carlos.bilbao@amd.com>
>
> ---
>
> Changes since v1:
>
> - Fix name of author Kaiwan N Billimoria.
> - Include other book, from 2021, also authored by Kaiwan.
> - Include Kaiwan's SoB.
>
> ---
> Documentation/process/kernel-docs.rst | 36 +++++++++++++++++++++++----
> 1 file changed, 31 insertions(+), 5 deletions(-)
Applied, thanks.
jon
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3] docs: Add relevant kernel publications to list of books
2023-03-14 18:44 ` [PATCH v3] " Carlos Bilbao
@ 2023-03-14 18:57 ` Jonathan Corbet
2023-03-14 18:58 ` Carlos Bilbao
2023-03-15 1:47 ` Kaiwan N Billimoria
0 siblings, 2 replies; 6+ messages in thread
From: Jonathan Corbet @ 2023-03-14 18:57 UTC (permalink / raw)
To: Carlos Bilbao; +Cc: kaiwan.billimoria, rlove, linux-doc, linux-kernel
Carlos Bilbao <carlos.bilbao@amd.com> writes:
> For the list of kernel published books, include publication covering kernel
> debugging from August, 2022 (ISBN 978-1801075039) and one from March, 2021
> on the topic of char device drivers and kernel synchronization (ISBN
> 978-1801079518). Also add foundational book from Robert Love (ISBN
> 978-1449339531) and remove extra spaces.
>
> Co-developed-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
> Signed-off-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
> Signed-off-by: Carlos Bilbao <carlos.bilbao@amd.com>
>
> ---
> Changes since v2:
> - Fix SoB chain.
So this showed up approximately 4.23µs after I applied v2 ... I went
back in and tweaked the signoffs to match this version.
Thanks,
jon
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3] docs: Add relevant kernel publications to list of books
2023-03-14 18:57 ` Jonathan Corbet
@ 2023-03-14 18:58 ` Carlos Bilbao
2023-03-15 1:47 ` Kaiwan N Billimoria
1 sibling, 0 replies; 6+ messages in thread
From: Carlos Bilbao @ 2023-03-14 18:58 UTC (permalink / raw)
To: Jonathan Corbet; +Cc: kaiwan.billimoria, rlove, linux-doc, linux-kernel
On 3/14/23 13:57, Jonathan Corbet wrote:
> Carlos Bilbao <carlos.bilbao@amd.com> writes:
>
>> For the list of kernel published books, include publication covering kernel
>> debugging from August, 2022 (ISBN 978-1801075039) and one from March, 2021
>> on the topic of char device drivers and kernel synchronization (ISBN
>> 978-1801079518). Also add foundational book from Robert Love (ISBN
>> 978-1449339531) and remove extra spaces.
>>
>> Co-developed-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
>> Signed-off-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
>> Signed-off-by: Carlos Bilbao <carlos.bilbao@amd.com>
>>
>> ---
>> Changes since v2:
>> - Fix SoB chain.
>
> So this showed up approximately 4.23µs after I applied v2 ... I went
> back in and tweaked the signoffs to match this version.
Thank you Jon!
>
> Thanks,
>
> jon
Regards,
Carlos
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3] docs: Add relevant kernel publications to list of books
2023-03-14 18:57 ` Jonathan Corbet
2023-03-14 18:58 ` Carlos Bilbao
@ 2023-03-15 1:47 ` Kaiwan N Billimoria
1 sibling, 0 replies; 6+ messages in thread
From: Kaiwan N Billimoria @ 2023-03-15 1:47 UTC (permalink / raw)
To: Jonathan Corbet; +Cc: Carlos Bilbao, rlove, linux-doc, linux-kernel
On Wed, Mar 15, 2023 at 12:27 AM Jonathan Corbet <corbet@lwn.net> wrote:
>
> Carlos Bilbao <carlos.bilbao@amd.com> writes:
>
> > For the list of kernel published books, include publication covering kernel
> > debugging from August, 2022 (ISBN 978-1801075039) and one from March, 2021
> > on the topic of char device drivers and kernel synchronization (ISBN
> > 978-1801079518). Also add foundational book from Robert Love (ISBN
> > 978-1449339531) and remove extra spaces.
> >
> > Co-developed-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
> > Signed-off-by: Kaiwan N Billimoria <kaiwan.billimoria@gmail.com>
> > Signed-off-by: Carlos Bilbao <carlos.bilbao@amd.com>
> >
> > ---
> > Changes since v2:
> > - Fix SoB chain.
>
> So this showed up approximately 4.23µs after I applied v2 ... I went
> back in and tweaked the signoffs to match this version.
:-D
Thanks Jon, Carlos !
Regards,
Kaiwan.
>
> Thanks,
>
> jon
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-03-15 1:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-22 18:34 [PATCH v2] docs: Add relevant kernel publications to list of books Carlos Bilbao
2023-03-14 18:44 ` [PATCH v3] " Carlos Bilbao
2023-03-14 18:57 ` Jonathan Corbet
2023-03-14 18:58 ` Carlos Bilbao
2023-03-15 1:47 ` Kaiwan N Billimoria
2023-03-14 18:51 ` [PATCH v2] " Jonathan Corbet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®