On Sat, Sep 04, 2010 at 02:52:01PM +0000, Pratyush Kshirsagar wrote:
> Hello Everyone!
>
> I upgraded the source on Sep 1 as Matt suggested and modified the code as
> Yonetani said. Still coming across the same problem.
Ah, I didn't know that the list was not terminated with a NULL. Just
replace the while() loop in vmap_resident_count() with the one taken
from other functions in the file, like this:
for (entry = v->header.next; entry != &v->header; entry = entry->next) {
:
}
and you're done.
Cheers.