From 8fb7655375af0a3d1656954f83ef9b8a236cf8f8 Mon Sep 17 00:00:00 2001 From: leonidk Date: Wed, 2 Jul 2008 17:17:49 +0000 Subject: [PATCH] [IBAL] This patch renames 'que' to 'queue'. Signed-off-by: Fab Tillier git-svn-id: svn://openib.tc.cornell.edu/gen1@1327 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86 --- trunk/core/al/al_cq.h | 2 +- trunk/core/al/kernel/al_ndi_cq.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/trunk/core/al/al_cq.h b/trunk/core/al/al_cq.h index b80b137c..39a4b24c 100644 --- a/trunk/core/al/al_cq.h +++ b/trunk/core/al/al_cq.h @@ -69,7 +69,7 @@ typedef struct _ndi_cq_csq { IO_CSQ csq; ib_cq_t* h_cq; - LIST_ENTRY que; + LIST_ENTRY queue; } ndi_cq_csq_t; #endif diff --git a/trunk/core/al/kernel/al_ndi_cq.c b/trunk/core/al/kernel/al_ndi_cq.c index afb5fc69..5ae46422 100644 --- a/trunk/core/al/kernel/al_ndi_cq.c +++ b/trunk/core/al/kernel/al_ndi_cq.c @@ -147,7 +147,7 @@ static VOID __ndi_insert_irp( ndi_cq_csq_t *p_ndi_csq = (ndi_cq_csq_t*)Csq; AL_ENTER( AL_DBG_NDI ); - InsertTailList( &p_ndi_csq->que, &Irp->Tail.Overlay.ListEntry ); + InsertTailList( &p_ndi_csq->queue, &Irp->Tail.Overlay.ListEntry ); AL_EXIT( AL_DBG_NDI ); } @@ -176,7 +176,7 @@ static PIRP __ndi_peek_next_irp( AL_ENTER( AL_DBG_NDI ); - listHead = &p_ndi_csq->que; + listHead = &p_ndi_csq->queue; // // If the IRP is NULL, we will start peeking from the listhead, else @@ -279,8 +279,8 @@ ndi_cq_init( if ( !NT_SUCCESS( status ) ) goto exit; - InitializeListHead( &h_cq->compl.que ); - InitializeListHead( &h_cq->error.que ); + InitializeListHead( &h_cq->compl.queue ); + InitializeListHead( &h_cq->error.queue ); h_cq->compl.h_cq = h_cq; h_cq->error.h_cq = h_cq; status = STATUS_SUCCESS; -- 2.46.0