]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
rx: Remove rx_waitingForPacket
authorChas Williams (CONTRACTOR) <chas@cmf.nrl.navy.mil>
Thu, 3 Apr 2014 18:12:38 +0000 (14:12 -0400)
committerStephan Wiesand <stephan.wiesand@desy.de>
Thu, 26 Jun 2014 09:50:25 +0000 (05:50 -0400)
Commit f43c2f4412d670ce1131dc429cb43302352df3e4 introduced
rx_waitingForPacket.  Given its current usage, I can't see any
functionality.

It looks like this might have been the result of merging a renamed
rx_waitForPacket from another development branch?

Reviewed-on: http://gerrit.openafs.org/10981
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Jeffrey Altman <jaltman@your-file-system.com>
(cherry picked from commit be236140f72fc51e111898abc896f93cc505fac7)

Change-Id: Ib1be9031bc217183f1997b6d79455e1693fa7c21
Reviewed-on: http://gerrit.openafs.org/11219
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Perry Ruiter <pruiter@sinenomine.net>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
src/rx/rx.c

index 58105277f9286bb3d6feb28339557cbd6eb0ad20..0f4fe2edcb07044adcd7ce5f26c78353c15e120b 100644 (file)
@@ -403,7 +403,6 @@ static int rxdb_fileID = RXDB_FILE_RX;
 #define CLEAR_CALL_QUEUE_LOCK(C)
 #endif /* RX_ENABLE_LOCKS */
 struct rx_serverQueueEntry *rx_waitForPacket = 0;
-struct rx_serverQueueEntry *rx_waitingForPacket = 0;
 
 /* ------------Exported Interfaces------------- */
 
@@ -2076,8 +2075,6 @@ rx_GetCall(int tno, struct rx_service *cur_service, osi_socket * socketp)
            queue_Append(&rx_idleServerQueue, sq);
 #ifndef AFS_AIX41_ENV
            rx_waitForPacket = sq;
-#else
-           rx_waitingForPacket = sq;
 #endif /* AFS_AIX41_ENV */
            do {
                CV_WAIT(&sq->cv, &rx_serverPool_lock);