docs: kref: Clarify the use of two kref_put() in example code
authorManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Thu, 13 Feb 2020 12:53:11 +0000 (18:23 +0530)
committerJonathan Corbet <corbet@lwn.net>
Tue, 25 Feb 2020 10:39:10 +0000 (03:39 -0700)
Eventhough the current documentation explains that the reference count
gets incremented by both kref_init() and kref_get(), it is often
misunderstood that only one instance of kref_put() is needed in the
example code. So let's clarify that a bit.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Documentation/kref.txt

index 3af3841..c61eea6 100644 (file)
@@ -128,6 +128,10 @@ since we already have a valid pointer that we own a refcount for.  The
 put needs no lock because nothing tries to get the data without
 already holding a pointer.
 
+In the above example, kref_put() will be called 2 times in both success
+and error paths. This is necessary because the reference count got
+incremented 2 times by kref_init() and kref_get().
+
 Note that the "before" in rule 1 is very important.  You should never
 do something like::