[Pvfs2-cvs] commit by nlmills in pvfs2/src/common/quicklist: .cvsignore quicklist.h

CVS commit program cvs at parl.clemson.edu
Fri May 21 13:34:07 EDT 2010


Update of /projects/cvsroot/pvfs2/src/common/quicklist
In directory parlweb1:/tmp/cvs-serv1309/src/common/quicklist

Modified Files:
      Tag: cu-security-branch
	quicklist.h 
Added Files:
      Tag: cu-security-branch
	.cvsignore 
Log Message:
revert cu-security-branch to before the attempted merge with Orange-Branch



Index: quicklist.h
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/common/quicklist/quicklist.h,v
diff -p -u -r1.5.20.2 -r1.5.20.3
--- quicklist.h	2 Sep 2009 20:16:02 -0000	1.5.20.2
+++ quicklist.h	21 May 2010 17:34:07 -0000	1.5.20.3
@@ -120,23 +120,6 @@ static __inline__ int qlist_empty(struct
 }
 
 /**
- * qlist_pop - pop the first item off the list and return it
- * @head: qlist to modify
- */
-static __inline__ struct qlist_head* qlist_pop(struct qlist_head *head)
-{
-    struct qlist_head *item = NULL;
-
-    if (!qlist_empty(head))
-    {
-        item = head->next;
-        qlist_del(item);
-    }
-
-    return item;
-}
-
-/**
  * qlist_splice - join two qlists
  * @qlist: the new qlist to add.
  * @head: the place to add it in the first qlist.



More information about the Pvfs2-cvs mailing list