From: Chas Williams (CONTRACTOR) Date: Thu, 3 Apr 2014 18:12:38 +0000 (-0400) Subject: rx: Remove rx_waitingForPacket X-Git-Tag: upstream/1.6.10_pre1^2~96 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=c9d4ab575e5596560fae656d76fcc101e2b7c118;p=packages%2Fo%2Fopenafs.git rx: Remove rx_waitingForPacket 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 Reviewed-by: Jeffrey Altman (cherry picked from commit be236140f72fc51e111898abc896f93cc505fac7) Change-Id: Ib1be9031bc217183f1997b6d79455e1693fa7c21 Reviewed-on: http://gerrit.openafs.org/11219 Tested-by: BuildBot Reviewed-by: Perry Ruiter Reviewed-by: Benjamin Kaduk Reviewed-by: Stephan Wiesand --- diff --git a/src/rx/rx.c b/src/rx/rx.c index 58105277f..0f4fe2edc 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -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);