diff options
author | George Spelvin <linux@horizon.com> | 2013-03-27 09:08:33 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2013-03-28 12:10:24 -0400 |
commit | b949be5857a4033e00fed67b707774f52619ce60 (patch) | |
tree | 2463a095f1227887320872fe298a1a1f3c2250a9 /include/linux/idr.h | |
parent | 29177b896676496dbefa27bd35f19c64e47cf0d3 (diff) |
idr: document exit conditions on idr_for_each_entry better
And some manual common subexpression elimination which may help the
compiler produce smaller code.
Signed-off-by: George Spelvin <linux@horizon.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/idr.h')
-rw-r--r-- | include/linux/idr.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/linux/idr.h b/include/linux/idr.h index 2640c7e99e51..6ece0583362a 100644 --- a/include/linux/idr.h +++ b/include/linux/idr.h | |||
@@ -122,11 +122,13 @@ static inline void *idr_find(struct idr *idr, int id) | |||
122 | * @idp: idr handle | 122 | * @idp: idr handle |
123 | * @entry: the type * to use as cursor | 123 | * @entry: the type * to use as cursor |
124 | * @id: id entry's key | 124 | * @id: id entry's key |
125 | * | ||
126 | * @entry and @id do not need to be initialized before the loop, and | ||
127 | * after normal terminatinon @entry is left with the value NULL. This | ||
128 | * is convenient for a "not found" value. | ||
125 | */ | 129 | */ |
126 | #define idr_for_each_entry(idp, entry, id) \ | 130 | #define idr_for_each_entry(idp, entry, id) \ |
127 | for (id = 0, entry = (typeof(entry))idr_get_next((idp), &(id)); \ | 131 | for (id = 0; ((entry) = idr_get_next(idp, &(id))) != NULL; ++id) |
128 | entry != NULL; \ | ||
129 | ++id, entry = (typeof(entry))idr_get_next((idp), &(id))) | ||
130 | 132 | ||
131 | /* | 133 | /* |
132 | * Don't use the following functions. These exist only to suppress | 134 | * Don't use the following functions. These exist only to suppress |