From be236140f72fc51e111898abc896f93cc505fac7 Mon Sep 17 00:00:00 2001 From: "Chas Williams (CONTRACTOR)" Date: Thu, 3 Apr 2014 14:12:38 -0400 Subject: [PATCH] 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 --- src/rx/rx.c | 3 --- 1 file changed, 3 deletions(-) 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); -- 2.39.5