Whamcloud - gitweb
LU-2675 cleanup: remove unused mkdirdeep.c and lltrace.h
[fs/lustre-release.git] / libcfs / include / libcfs / list.h
index 7b9f9cc..be06e74 100644 (file)
@@ -1,3 +1,25 @@
+/*
+ * GPL HEADER START
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 only,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License version 2 for more details.  A copy is
+ * included in the COPYING file that accompanied this code.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * GPL HEADER END
+ */
+
 #ifndef __LIBCFS_LIST_H__
 #define __LIBCFS_LIST_H__
 
@@ -35,6 +57,8 @@ typedef struct list_head cfs_list_t;
         list_for_each_entry(pos, head, member)
 #define cfs_list_for_each_entry_reverse(pos, head, member) \
         list_for_each_entry_reverse(pos, head, member)
+#define cfs_list_for_each_entry_safe_reverse(pos, n, head, member) \
+       list_for_each_entry_safe_reverse(pos, n, head, member)
 #define cfs_list_for_each_entry_safe(pos, n, head, member) \
         list_for_each_entry_safe(pos, n, head, member)
 #ifdef list_for_each_entry_safe_from
@@ -525,6 +549,16 @@ static inline void cfs_hlist_add_after(cfs_hlist_node_t *n,
             prefetch(pos->member.next))
 #endif /* cfs_list_for_each_entry */
 
+#ifndef cfs_list_for_each_entry_rcu
+#define cfs_list_for_each_entry_rcu(pos, head, member) \
+       list_for_each_entry(pos, head, member)
+#endif
+
+#ifndef cfs_list_for_each_entry_rcu
+#define cfs_list_for_each_entry_rcu(pos, head, member) \
+       list_for_each_entry(pos, head, member)
+#endif
+
 #ifndef cfs_list_for_each_entry_reverse
 /**
  * Iterate backwards over a list of given type.