Re: [edk2] Assertion in Linked list - help

2015-06-23 Thread Saiprasad Chavali
getting corrupted? Sai From: Andrew Fish [mailto:af...@apple.com] Sent: Tuesday, June 23, 2015 1:41 PM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2] Assertion in Linked list - help On Jun 23, 2015, at 1:11 PM, Saiprasad Chavali mailto:s...@marvell.com>> wrote: Hi Andrew,

Re: [edk2] Assertion in Linked list - help

2015-06-23 Thread Andrew Fish
> On Jun 23, 2015, at 1:11 PM, Saiprasad Chavali wrote: > > Hi Andrew, > > On the same lines of linked list, what I observed is the assignment of the > List head pointer (function parameter) to the local variable/temporary is not > working . > So the do/while loop goes on until the “count” e

Re: [edk2] Assertion in Linked list - help

2015-06-23 Thread Saiprasad Chavali
, what could be the cause. For my debugging I have removed the global optimization flags (Gy, Gl)? Thanks Sai From: Saiprasad Chavali Sent: Friday, June 19, 2015 6:22 PM To: edk2-devel@lists.sourceforge.net Subject: RE: [edk2] Assertion in Linked list - help Hi Andrew, The List Head pointer that

Re: [edk2] Assertion in Linked list - help

2015-06-19 Thread Saiprasad Chavali
: Saiprasad Chavali [mailto:s...@marvell.com] Sent: Friday, June 19, 2015 5:18 PM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2] Assertion in Linked list - help Thanks Andrew, I haven’t changed the default PCD value. Let me check the cases you have mentioned. Even if it is repeated calls, I

Re: [edk2] Assertion in Linked list - help

2015-06-19 Thread Saiprasad Chavali
, before I hit this assertion. Sai From: Andrew Fish [mailto:af...@apple.com] Sent: Friday, June 19, 2015 5:01 PM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2] Assertion in Linked list - help On Jun 19, 2015, at 4:41 PM, Saiprasad Chavali mailto:s...@marvell.com>> wrote: Hi, I am

Re: [edk2] Assertion in Linked list - help

2015-06-19 Thread Andrew Fish
> > From: Andrew Fish [mailto:af...@apple.com <mailto:af...@apple.com>] > Sent: Friday, June 19, 2015 4:29 PM > To: edk2-devel@lists.sourceforge.net <mailto:edk2-devel@lists.sourceforge.net> > Subject: Re: [edk2] Assertion in Linked list - help > > > On Jun 19, 2

Re: [edk2] Assertion in Linked list - help

2015-06-19 Thread Saiprasad Chavali
to insertion/remove? Is not happening sequentially? Thanks Sai From: Andrew Fish [mailto:af...@apple.com] Sent: Friday, June 19, 2015 4:29 PM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2] Assertion in Linked list - help On Jun 19, 2015, at 4:18 PM, Saiprasad Chavali mailto:s

Re: [edk2] Assertion in Linked list - help

2015-06-19 Thread Andrew Fish
> On Jun 19, 2015, at 4:18 PM, Saiprasad Chavali wrote: > > Hi, > > I hit the Assertion (ASSERT (Count < PcdGet32 (PcdMaximumLinkedListLength))), > “Linked list is too long” inside the “InternalBaseLibIsNodeInList” of baselib > “linkedlist.c”. > > Almost all the Linked list API, calls this

[edk2] Assertion in Linked list - help

2015-06-19 Thread Saiprasad Chavali
Hi, I hit the Assertion (ASSERT (Count < PcdGet32 (PcdMaximumLinkedListLength))), "Linked list is too long" inside the "InternalBaseLibIsNodeInList" of baselib "linkedlist.c". Almost all the Linked list API, calls this function. There is not one particular API that throws this error when Invok