diff options
Diffstat (limited to 'include/linux/idr.h')
| -rw-r--r-- | include/linux/idr.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/idr.h b/include/linux/idr.h index 43b87b1c77a..7b1c5c6f9a0 100644 --- a/include/linux/idr.h +++ b/include/linux/idr.h @@ -28,6 +28,7 @@  #define IDR_MASK ((1 << IDR_BITS)-1)  struct idr_layer { +	int			prefix;	/* the ID prefix of this idr_layer */  	DECLARE_BITMAP(bitmap, IDR_SIZE); /* A zero bit means "space here" */  	struct idr_layer __rcu	*ary[1<<IDR_BITS];  	int			count;	/* When zero, we can release it */  |