idr: Add new function idr_is_empty() before-iov
authorAndreas Gruenbacher <agruen@linbit.com>
Mon, 8 Aug 2011 21:36:56 +0000 (23:36 +0200)
committerMaciej Wereski <m.wereski@partner.samsung.com>
Fri, 3 Apr 2015 09:44:54 +0000 (11:44 +0200)
Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
include/linux/idr.h
lib/idr.c

index 871a213..9c95d21 100644 (file)
@@ -85,6 +85,7 @@ void idr_remove(struct idr *idp, int id);
 void idr_free(struct idr *idp, int id);
 void idr_destroy(struct idr *idp);
 void idr_init(struct idr *idp);
+bool idr_is_empty(struct idr *idp);
 
 /**
  * idr_preload_end - end preload section started with idr_preload()
index dd06ccb..78713ff 100644 (file)
--- a/lib/idr.c
+++ b/lib/idr.c
@@ -872,6 +872,16 @@ void idr_init(struct idr *idp)
 }
 EXPORT_SYMBOL(idr_init);
 
+static int idr_has_entry(int id, void *p, void *data)
+{
+       return 1;
+}
+
+bool idr_is_empty(struct idr *idp)
+{
+       return !idr_for_each(idp, idr_has_entry, NULL);
+}
+EXPORT_SYMBOL(idr_is_empty);
 
 /**
  * DOC: IDA description