Commit ac987996 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] Missing end tags in kernel-locking kerneldoc

From: Rusty Russell <rusty@rustcorp.com.au>

From: Adam Kropelin <akropel1@rochester.rr.com>

The new-and-improved kernel-locking kerneldoc seems to be missing some end
tags which causes 'make foodocs' to die.  I'm not sure if it's because of
my not-bleeding-edge docbook utils or if it's a genuine error.  Since most
ending tags are present I tend to think it's an error.
parent f1af402d
...@@ -66,6 +66,7 @@ ...@@ -66,6 +66,7 @@
fundamentals of concurrency and locking for fundamentals of concurrency and locking for
<firstterm linkend="gloss-smp"><acronym>SMP</acronym></firstterm>. <firstterm linkend="gloss-smp"><acronym>SMP</acronym></firstterm>.
</para> </para>
</chapter>
<chapter id="races"> <chapter id="races">
<title>The Problem With Concurrency</title> <title>The Problem With Concurrency</title>
...@@ -193,6 +194,7 @@ ...@@ -193,6 +194,7 @@
And then there are the unfriendly primitives, but I'll pretend And then there are the unfriendly primitives, but I'll pretend
they don't exist. they don't exist.
</para> </para>
</sect1>
</chapter> </chapter>
<chapter id="locks"> <chapter id="locks">
...@@ -657,6 +659,7 @@ ...@@ -657,6 +659,7 @@
</TBODY> </TBODY>
</TGROUP> </TGROUP>
</TABLE> </TABLE>
</sect1>
</chapter> </chapter>
<chapter id="Examples"> <chapter id="Examples">
...@@ -1110,6 +1113,7 @@ used to protect the reference count itself. ...@@ -1110,6 +1113,7 @@ used to protect the reference count itself.
return obj; return obj;
} }
</programlisting> </programlisting>
</sect2>
</sect1> </sect1>
<sect1 id="examples-lock-per-obj"> <sect1 id="examples-lock-per-obj">
...@@ -1229,6 +1233,7 @@ which locks. This is extremely important, as it describes the runtime ...@@ -1229,6 +1233,7 @@ which locks. This is extremely important, as it describes the runtime
behavior of the code, and can be hard to gain from just reading. And behavior of the code, and can be hard to gain from just reading. And
as Alan Cox says, <quote>Lock data, not code</quote>. as Alan Cox says, <quote>Lock data, not code</quote>.
</para> </para>
</sect1>
</chapter> </chapter>
<chapter id="common-problems"> <chapter id="common-problems">
...@@ -1317,6 +1322,7 @@ as Alan Cox says, <quote>Lock data, not code</quote>. ...@@ -1317,6 +1322,7 @@ as Alan Cox says, <quote>Lock data, not code</quote>.
The two CPUs will spin forever, waiting for the other to give up The two CPUs will spin forever, waiting for the other to give up
their lock. It will look, smell, and feel like a crash. their lock. It will look, smell, and feel like a crash.
</para> </para>
</sect1>
<sect1 id="techs-deadlock-prevent"> <sect1 id="techs-deadlock-prevent">
<title>Preventing Deadlock</title> <title>Preventing Deadlock</title>
...@@ -1886,6 +1892,7 @@ machines due to caching. ...@@ -1886,6 +1892,7 @@ machines due to caching.
</para> </para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>
</sect1>
<sect1 id="dont-sleep"> <sect1 id="dont-sleep">
<title>Some Functions Which Don't Sleep</title> <title>Some Functions Which Don't Sleep</title>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment