Commit 066a9be6 authored by Naohiro Aota's avatar Naohiro Aota Committed by Linus Torvalds

idr: fix idr_pre_get() locking description

Despite the idr_pre_get() kernel-doc, there are some cases where you can
call idr_pre_get() from within locked regions.  Add a description for such
cases.

See also: http://lkml.org/lkml/2010/9/16/462

[akpm@linux-foundation.org: cleanups, grammatical fixes]
Signed-off-by: default avatarNaohiro Aota <naota@elisp.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 66f1991b
...@@ -110,9 +110,10 @@ static void idr_mark_full(struct idr_layer **pa, int id) ...@@ -110,9 +110,10 @@ static void idr_mark_full(struct idr_layer **pa, int id)
* @idp: idr handle * @idp: idr handle
* @gfp_mask: memory allocation flags * @gfp_mask: memory allocation flags
* *
* This function should be called prior to locking and calling the * This function should be called prior to calling the idr_get_new* functions.
* idr_get_new* functions. It preallocates enough memory to satisfy * It preallocates enough memory to satisfy the worst possible allocation. The
* the worst possible allocation. * caller should pass in GFP_KERNEL if possible. This of course requires that
* no spinning locks be held.
* *
* If the system is REALLY out of memory this function returns 0, * If the system is REALLY out of memory this function returns 0,
* otherwise 1. * otherwise 1.
...@@ -290,9 +291,11 @@ static int idr_get_new_above_int(struct idr *idp, void *ptr, int starting_id) ...@@ -290,9 +291,11 @@ static int idr_get_new_above_int(struct idr *idp, void *ptr, int starting_id)
* This is the allocate id function. It should be called with any * This is the allocate id function. It should be called with any
* required locks. * required locks.
* *
* If memory is required, it will return -EAGAIN, you should unlock * If allocation from IDR's private freelist fails, idr_get_new_above() will
* and go back to the idr_pre_get() call. If the idr is full, it will * return -EAGAIN. The caller should retry the idr_pre_get() call to refill
* return -ENOSPC. * IDR's preallocation and then retry the idr_get_new_above() call.
*
* If the idr is full idr_get_new_above() will return -ENOSPC.
* *
* @id returns a value in the range @starting_id ... 0x7fffffff * @id returns a value in the range @starting_id ... 0x7fffffff
*/ */
...@@ -318,12 +321,11 @@ EXPORT_SYMBOL(idr_get_new_above); ...@@ -318,12 +321,11 @@ EXPORT_SYMBOL(idr_get_new_above);
* @ptr: pointer you want associated with the id * @ptr: pointer you want associated with the id
* @id: pointer to the allocated handle * @id: pointer to the allocated handle
* *
* This is the allocate id function. It should be called with any * If allocation from IDR's private freelist fails, idr_get_new_above() will
* required locks. * return -EAGAIN. The caller should retry the idr_pre_get() call to refill
* IDR's preallocation and then retry the idr_get_new_above() call.
* *
* If memory is required, it will return -EAGAIN, you should unlock * If the idr is full idr_get_new_above() will return -ENOSPC.
* and go back to the idr_pre_get() call. If the idr is full, it will
* return -ENOSPC.
* *
* @id returns a value in the range 0 ... 0x7fffffff * @id returns a value in the range 0 ... 0x7fffffff
*/ */
......
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