From: Chas Williams (CONTRACTOR) Date: Thu, 3 Apr 2014 18:12:38 +0000 (-0400) Subject: rx: Remove rx_waitingForPacket X-Git-Tag: upstream/1.8.0_pre1^2~734 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=be236140f72fc51e111898abc896f93cc505fac7;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? Change-Id: I47fc7a2b25cbfcd59ea4ad1606b734bb9d4ceecc Reviewed-on: http://gerrit.openafs.org/10981 Tested-by: BuildBot Reviewed-by: Jeffrey Altman --- diff --git a/src/rx/rx.c b/src/rx/rx.c index 0c0576375..7a50472cc 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -437,7 +437,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------------- */ @@ -2128,8 +2127,6 @@ rx_GetCall(int tno, struct rx_service *cur_service, osi_socket * socketp) opr_queue_Append(&rx_idleServerQueue, &sq->entry); #ifndef AFS_AIX41_ENV rx_waitForPacket = sq; -#else - rx_waitingForPacket = sq; #endif /* AFS_AIX41_ENV */ do { CV_WAIT(&sq->cv, &rx_serverPool_lock);