]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - lib/idr.c
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[net-next-2.6.git] / lib / idr.c
index 1cac726c44bc17cc6fa1a7b5ab6358279a0c9a5d..5ee8b1a57370824b7f32feebdafe63e95df3d00d 100644 (file)
--- a/lib/idr.c
+++ b/lib/idr.c
@@ -156,10 +156,12 @@ static int sub_alloc(struct idr *idp, int *starting_id, struct idr_layer **pa)
                        id = (id | ((1 << (IDR_BITS * l)) - 1)) + 1;
 
                        /* if already at the top layer, we need to grow */
-                       if (!(p = pa[l])) {
+                       if (id >= 1 << (idp->layers * IDR_BITS)) {
                                *starting_id = id;
                                return IDR_NEED_TO_GROW;
                        }
+                       p = pa[l];
+                       BUG_ON(!p);
 
                        /* If we need to go up one layer, continue the
                         * loop; otherwise, restart from the top.
@@ -621,7 +623,7 @@ void *idr_get_next(struct idr *idp, int *nextidp)
        }
        return NULL;
 }
-
+EXPORT_SYMBOL(idr_get_next);
 
 
 /**