diff options
author | Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> | 2020-02-13 15:53:11 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2020-02-25 13:39:10 +0300 |
commit | ef45e78fdc11ac1794940c2ff4a6bf3bc4c45372 (patch) | |
tree | 657c4f117352dfcbeb379b0529d76fa6b8398398 /Documentation/kref.txt | |
parent | 021622df556b7213cffec1c0713f093fc7d045e3 (diff) | |
download | linux-ef45e78fdc11ac1794940c2ff4a6bf3bc4c45372.tar.xz |
docs: kref: Clarify the use of two kref_put() in example code
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>
Diffstat (limited to 'Documentation/kref.txt')
-rw-r--r-- | Documentation/kref.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/kref.txt b/Documentation/kref.txt index 3af384156d7e..c61eea6f1bf2 100644 --- a/Documentation/kref.txt +++ b/Documentation/kref.txt @@ -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:: |