|
@@ -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.
|